:root {
  color-scheme: light;
  --ink: #151a1d;
  --paper: #f1eee8;
  --white: #ffffff;
  --navy: #172434;
  --navy-soft: #223348;
  --rust: #df5a33;
  --signal: #e9f34b;
  --line: rgba(21, 26, 29, 0.18);
  --muted: #626664;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--signal);
  color: var(--ink);
  text-decoration: none;
}

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

.masthead {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 6.75rem;
  grid-template-columns: auto auto minmax(0, 1fr);
  column-gap: clamp(1.75rem, 3vw, 3.75rem);
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.masthead--light {
  border-bottom-color: var(--line);
  background: rgba(241, 238, 232, 0.96);
  color: var(--ink);
}

.masthead--light .brand img {
  filter: invert(1);
}

.masthead--light .language {
  border-left-color: var(--line);
  color: var(--muted);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: clamp(8.8rem, 12vw, 11.5rem);
  height: auto;
}

.place {
  justify-self: start;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.45vw, 1.6rem);
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
}

.nav-dropdown__arrow {
  margin-left: 0.35rem;
  color: var(--signal);
  font-size: 0.78em;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  width: 21rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  background: rgba(241, 238, 232, 0.99);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.5rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu a {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.nav-submenu a:last-child {
  border-bottom: 0;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--white);
}

.nav-submenu strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.nav-submenu span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.desktop-nav > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a:focus-visible::after,
.nav-dropdown > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.mobile-menu {
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu nav {
  position: absolute;
  top: 5.4rem;
  right: 1.25rem;
  left: 1.25rem;
  display: grid;
  padding: 0.75rem 1.25rem;
  background: rgba(241, 238, 232, 0.99);
  border: 1px solid var(--line);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.mobile-menu nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu nav a.mobile-submenu {
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.mobile-menu nav a.mobile-submenu strong {
  color: var(--ink);
}

.workwear-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.workwear-hero__image {
  position: absolute;
  inset: 0 0 0 43%;
}

.workwear-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(23, 36, 52, 0.76) 16%, rgba(23, 36, 52, 0.08) 56%, rgba(23, 36, 52, 0.08) 100%);
}

.workwear-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.workwear-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-content: center;
  width: min(50rem, 52%);
  padding: 9.5rem clamp(1.25rem, 4vw, 4.5rem) 6.5rem;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--signal);
}

.workwear-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 7.2vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.workwear-hero h1 em {
  color: var(--signal);
  font-weight: 400;
}

.workwear-hero__intro {
  max-width: 38rem;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.button,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.8rem 1.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button::after,
.text-action::after {
  content: "↗";
  margin-left: 0.8rem;
  font-size: 1rem;
}

.text-action {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-marker {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2.5rem;
  z-index: 3;
  margin: 0;
  padding-left: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.25rem;
  height: 1px;
  background: var(--signal);
}

.workwear-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.workwear-switcher--two {
  grid-template-columns: repeat(2, 1fr);
}

.workwear-switcher a {
  position: relative;
  display: grid;
  min-height: 9.5rem;
  align-content: center;
  padding: 1.6rem clamp(1.25rem, 4vw, 4.5rem);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.workwear-switcher a:last-child {
  border-right: 0;
}

.workwear-switcher a:hover,
.workwear-switcher a:focus-visible,
.workwear-switcher a[aria-current="page"] {
  background: var(--signal);
}

.workwear-switcher span {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workwear-switcher strong {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.workwear-switcher small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keywear-production {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(20rem, 0.55fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
  background: var(--white);
}

.keywear-production__intro h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.keywear-production__intro h2 em {
  color: var(--rust);
  font-weight: 400;
}

.keywear-production__intro > p:last-child {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.keywear-production__image {
  align-self: start;
  margin: 0;
}

.keywear-production__image img {
  width: 100%;
  height: clamp(25rem, 42vw, 42rem);
  object-fit: cover;
  object-position: center 42%;
}

.keywear-production__image figcaption {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.production-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.production-steps article {
  min-height: 12rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.production-steps article:last-child {
  border-right: 0;
}

.production-steps span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.production-steps strong {
  display: block;
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.production-steps p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.workwear-hero--brands .workwear-hero__image img {
  object-position: center;
}

.workwear-hero--brands .workwear-hero__image::after {
  background: linear-gradient(90deg, var(--navy) 0%, rgba(23, 36, 52, 0.82) 18%, rgba(23, 36, 52, 0.14) 62%, rgba(23, 36, 52, 0.08) 100%);
}

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.route {
  min-height: 18rem;
  padding: clamp(2.2rem, 4vw, 4.2rem);
  border-right: 1px solid var(--line);
}

.route:last-child {
  border-right: 0;
}

.route span,
.category span {
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.route h2 {
  margin: 2.8rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.route p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
}

.route-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brands,
.categories,
.custom {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(28rem, 1.35fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-kicker {
  align-self: start;
  margin: 0;
}

.section-kicker::before {
  background: var(--rust);
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.section-head h2 em {
  color: var(--rust);
  font-weight: 400;
}

.section-copy {
  max-width: 42rem;
  margin: 1.75rem 0 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.brand-showcase {
  border-top: 1px solid var(--line);
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(34rem, 1.35fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2.4rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.brand-row__intro {
  max-width: 30rem;
}

.brand-logo {
  display: flex;
  height: 4rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.brand-logo img {
  width: auto;
  max-width: 13rem;
  max-height: 3.8rem;
  object-fit: contain;
}

.brand-logo--blaklader img {
  width: 9.6rem;
  max-height: 4.5rem;
}

.brand-logo--karlowsky img {
  width: 10.5rem;
}

.brand-row h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.brand-row p {
  margin: 0;
  color: var(--muted);
}

.official-link {
  display: inline-block;
  margin-top: 1.4rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.official-link::after {
  content: "↗";
  margin-left: 0.55rem;
  color: var(--rust);
}

.brand-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  min-width: 0;
}

.brand-products figure {
  position: relative;
  min-height: clamp(18rem, 25vw, 28rem);
  margin: 0;
  overflow: hidden;
  background: #ececea;
}

.brand-products img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.brand-products figure:hover img {
  transform: scale(1.02);
}

.brand-products figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.8rem 0.8rem 0.75rem;
  background: linear-gradient(0deg, rgba(10, 18, 28, 0.78), transparent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-row--portwest .brand-products figure:nth-child(1) img,
.brand-row--portwest .brand-products figure:nth-child(2) img,
.brand-row--blaklader .brand-products figure:nth-child(2) img,
.brand-row--blaklader .brand-products figure:nth-child(3) img,
.brand-row--karlowsky .brand-products figure:nth-child(2) img,
.brand-row--karlowsky .brand-products figure:nth-child(3) img {
  object-fit: contain;
}

.brand-row--blaklader .brand-products figure:first-child img {
  object-position: 52% center;
}

.brand-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.categories {
  background: var(--white);
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.8fr) minmax(32rem, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.category-gallery {
  position: sticky;
  top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
}

.category-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #e7e7e4;
}

.category-gallery figure:first-child {
  grid-row: 1 / 3;
}

.category-gallery img {
  height: 100%;
  object-fit: cover;
}

.category-gallery figure:first-child img {
  object-position: center 30%;
}

.category-gallery figure:nth-child(2) img {
  object-position: center 38%;
}

.category-gallery figure:nth-child(3) img {
  object-position: center 50%;
}

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

.category {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.category h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.category p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
}

.custom {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
  color: var(--white);
}

.custom::before {
  content: "KEYWEAR";
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(8rem, 21vw, 25rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.custom__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(28rem, 1.15fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.custom .section-kicker::before {
  background: var(--signal);
}

.custom h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.custom h2 em {
  color: var(--signal);
  font-weight: 400;
}

.custom__body {
  align-self: end;
}

.custom__body > p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.custom__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 2.5rem 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.custom__points p {
  min-height: 8rem;
  margin: 0;
  padding: 1.3rem;
  background: var(--navy-soft);
  font-size: 0.9rem;
}

.custom__points strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--signal);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.keywear-for {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.75rem 0 2.5rem;
}

.keywear-for strong {
  flex: 0 0 100%;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.keywear-for span {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
}

.production-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(20rem, 24vw, 27rem);
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-top: clamp(4rem, 7vw, 7rem);
}

.production-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.production-gallery figure.production-gallery__wide {
  grid-column: span 2;
}

.production-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.production-gallery figure:nth-child(2) img {
  object-position: center top;
}

.production-gallery figure:nth-child(3) img {
  object-position: center 46%;
}

.production-gallery figure:nth-child(4) img {
  object-position: center 34%;
}

.production-gallery figure:nth-child(8) img,
.production-gallery figure:nth-child(9) img {
  object-position: center top;
}

.production-gallery figure:hover img {
  transform: scale(1.018);
}

.production-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.28rem;
  padding: 4rem 1.2rem 1.15rem;
  background: linear-gradient(0deg, rgba(10, 18, 28, 0.9), transparent);
}

.production-gallery figcaption strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.production-gallery figcaption span,
.production-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.production-note {
  position: relative;
  z-index: 1;
  margin: 1.15rem 0 0;
  text-transform: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(18rem, 0.8fr);
  gap: 3rem;
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem) 3rem;
}

.contact h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.contact h2 em {
  color: var(--rust);
  font-weight: 400;
}

.contact__details {
  justify-self: end;
}

.contact__details p {
  max-width: 30rem;
  margin: 0 0 1.8rem;
  color: var(--muted);
}

.contact__details a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  text-decoration: none;
}

.contact__details a::after {
  content: "↗";
  margin-left: 0.8rem;
  color: var(--rust);
}

.footer {
  margin: 0 clamp(1.25rem, 4vw, 4.5rem);
  padding: 3.25rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding-bottom: 3rem;
}

.footer__identity strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 400;
}

.footer__identity address {
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.7;
}

.footer__identity address a {
  text-decoration: none;
}

.footer__nav,
.footer__contact {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer__nav span,
.footer__contact span {
  margin-bottom: 0.35rem;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__contact a {
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.footer__nav a:hover,
.footer__contact a:hover,
.footer__identity address a:hover {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

@media (max-width: 1700px) {
  .masthead {
    grid-template-columns: 1fr auto;
  }

  .place {
    display: none;
  }
}

@media (max-width: 1040px) {
  .masthead {
    min-height: 5.5rem;
    grid-template-columns: 1fr auto;
  }

  .place,
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .workwear-hero__content {
    width: 66%;
    padding-top: 8.5rem;
  }

  .workwear-hero__image {
    left: 38%;
  }

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

  .route {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route:last-child {
    border-bottom: 0;
  }

  .route h2 {
    margin-top: 1.8rem;
  }

  .brand-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brand-row__intro {
    max-width: 42rem;
  }

  .keywear-production {
    grid-template-columns: 1fr 0.7fr;
  }

  .production-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .production-steps article:nth-child(2) {
    border-right: 0;
  }

  .production-steps article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 8.8rem;
  }

  .workwear-hero {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .workwear-hero__image {
    position: relative;
    inset: auto;
    height: 56svh;
    min-height: 28rem;
  }

  .workwear-hero__image::after {
    background: linear-gradient(0deg, var(--navy) 0%, rgba(23, 36, 52, 0.08) 44%);
  }

  .workwear-hero__image img {
    object-position: 67% center;
  }

  .workwear-hero__content {
    width: 100%;
    min-height: auto;
    padding: 3.5rem 1.25rem 5rem;
  }

  .workwear-hero h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-marker {
    display: none;
  }

  .workwear-switcher {
    grid-template-columns: 1fr;
  }

  .workwear-switcher a {
    min-height: 7.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workwear-switcher a:last-child {
    border-bottom: 0;
  }

  .routes {
    display: block;
  }

  .section-head,
  .category-layout,
  .custom__grid,
  .keywear-production,
  .contact {
    grid-template-columns: 1fr;
  }

  .keywear-production__image {
    width: min(100%, 36rem);
  }

  .keywear-production__image img {
    height: 34rem;
  }

  .section-head {
    align-items: start;
  }

  .section-copy {
    margin-left: 0;
  }

  .brand-products {
    grid-template-columns: 1fr 1fr;
  }

  .brand-products figure {
    min-height: 23rem;
  }

  .brand-products figure:first-child {
    grid-column: 1 / 3;
  }

  .category-gallery {
    position: static;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 28rem 15rem;
  }

  .category-gallery figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .category {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

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

  .production-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 25rem;
  }

  .production-gallery figure.production-gallery__wide {
    grid-column: 1 / 3;
  }

  .contact__details {
    justify-self: start;
  }

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

  .footer__identity {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__identity {
    grid-column: auto;
  }

  .footer__bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .production-steps {
    grid-template-columns: 1fr;
  }

  .production-steps article,
  .production-steps article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .production-steps article:last-child {
    border-bottom: 0;
  }

  .production-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 27rem;
  }

  .production-gallery figure.production-gallery__wide {
    grid-column: auto;
  }

  .brand-products {
    grid-template-columns: 1fr;
  }

  .brand-products figure:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fashion-gallery img {
    transition: none;
  }
}

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

  .workwear-switcher a,
  .brand-products img,
  .production-gallery img {
    transition: none;
  }
}

/* Fashion and company pages */
.workwear-hero--fashion {
  background: #202422;
}

.workwear-hero--fashion .workwear-hero__image img {
  object-position: center 43%;
}

.workwear-hero--fashion .workwear-hero__image::after {
  background: linear-gradient(90deg, #202422 0%, rgba(32, 36, 34, 0.84) 19%, rgba(32, 36, 34, 0.16) 65%, rgba(32, 36, 34, 0.06) 100%);
}

.workwear-hero--company {
  background: #26303a;
}

.workwear-hero--company .workwear-hero__image img {
  object-position: center 36%;
}

.workwear-hero--company .workwear-hero__image::after {
  background: linear-gradient(90deg, #26303a 0%, rgba(38, 48, 58, 0.84) 20%, rgba(38, 48, 58, 0.16) 66%, rgba(38, 48, 58, 0.08) 100%);
}

.fashion-overview,
.fashion-streams,
.fashion-development,
.company-story,
.company-network,
.company-process,
.turkey-network {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
}

.fashion-overview,
.company-story {
  background: var(--white);
}

.fashion-intro-grid,
.company-intro-grid,
.turkey-network__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}

.fashion-intro-grid h2,
.company-intro-grid h2,
.turkey-network h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.fashion-intro-grid h2 em,
.company-intro-grid h2 em,
.turkey-network h2 em {
  color: var(--rust);
  font-weight: 400;
}

.fashion-intro-copy,
.company-intro-copy,
.turkey-network__copy {
  align-self: end;
}

.fashion-intro-copy > p,
.company-intro-copy > p,
.turkey-network__copy > p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.fashion-focus,
.network-roles,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.6rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.fashion-focus article,
.network-roles article,
.location-grid article {
  min-height: 11rem;
  padding: 1.4rem;
  background: var(--paper);
}

.fashion-focus span,
.network-roles span,
.location-grid span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fashion-focus h3,
.network-roles h3,
.location-grid h3 {
  margin: 2.2rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.fashion-focus p,
.network-roles p,
.location-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.compliance-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.35rem;
  border-left: 3px solid var(--rust);
  background: color-mix(in srgb, var(--rust) 7%, var(--paper));
}

.compliance-note strong {
  display: block;
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compliance-note p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.fashion-streams {
  display: grid;
  gap: clamp(5rem, 9vw, 9rem);
}

.fashion-stream {
  display: grid;
  grid-template-columns: minmax(28rem, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.fashion-stream:nth-child(even) .fashion-stream__visual {
  order: 2;
}

.fashion-stream__visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.7rem;
  min-height: 38rem;
}

.fashion-stream__visual figure {
  margin: 0;
  overflow: hidden;
  background: #e5e3dd;
}

.fashion-stream__visual figure:last-child {
  margin-top: 5rem;
}

.fashion-stream__visual img {
  height: 100%;
  object-fit: cover;
}

.fashion-stream__copy .section-kicker {
  margin-bottom: 1.6rem;
}

.fashion-stream__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.fashion-stream__copy h2 em {
  color: var(--rust);
  font-weight: 400;
}

.fashion-stream__copy > p {
  max-width: 38rem;
  margin: 1.7rem 0 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.product-list p {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 1.25rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.product-list strong {
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fashion-gallery {
  display: grid;
  grid-auto-rows: clamp(19rem, 25vw, 29rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: clamp(3rem, 6vw, 6rem);
}

.fashion-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-soft);
}

.fashion-gallery figure:nth-child(3),
.fashion-gallery figure:nth-child(6) {
  grid-column: span 2;
}

.fashion-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fashion-gallery figure:nth-child(6) img {
  object-position: center 38%;
}

.fashion-gallery figure:hover img {
  transform: scale(1.018);
}

.fashion-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3.5rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(10, 18, 28, 0.88), transparent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fashion-development,
.company-process {
  background: var(--navy);
  color: var(--white);
}

.fashion-development .section-kicker::before,
.company-process .section-kicker::before {
  background: var(--signal);
}

.fashion-development .section-head h2 em,
.company-process .section-head h2 em {
  color: var(--signal);
}

.fashion-development .section-copy,
.company-process .section-copy {
  color: rgba(255, 255, 255, 0.88);
}

.fashion-development .production-steps,
.company-process .production-steps {
  border-color: rgba(255, 255, 255, 0.2);
}

.fashion-development .production-steps article,
.company-process .production-steps article {
  border-color: rgba(255, 255, 255, 0.2);
}

.fashion-development .production-steps span,
.company-process .production-steps span {
  color: var(--signal);
}

.fashion-development .production-steps p,
.company-process .production-steps p {
  color: rgba(255, 255, 255, 0.85);
}

.turkey-network {
  background: #e7e2d9;
}

.turkey-network__media {
  margin: 0;
}

.turkey-network__media img {
  height: clamp(28rem, 44vw, 46rem);
  object-fit: cover;
  object-position: center 42%;
}

.turkey-network__media figcaption {
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-network {
  background: #e7e2d9;
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.location-grid article {
  min-height: 22rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--white);
}

.location-grid h3 {
  margin-top: 5rem;
}

.location-grid p {
  max-width: 33rem;
  font-size: 1rem;
}

.location-grid ul {
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.location-grid li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.location-grid li:last-child {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .fashion-stream {
    grid-template-columns: 1fr;
  }

  .fashion-stream:nth-child(even) .fashion-stream__visual {
    order: 0;
  }

  .fashion-stream__visual {
    min-height: 34rem;
  }

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

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

@media (max-width: 760px) {
  .fashion-intro-grid,
  .company-intro-grid,
  .turkey-network__grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .fashion-focus,
  .network-roles {
    grid-template-columns: 1fr;
  }

  .fashion-stream__visual {
    min-height: 30rem;
  }

  .fashion-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 25rem;
  }

  .fashion-gallery figure:nth-child(3),
  .fashion-gallery figure:nth-child(6) {
    grid-column: 1 / 3;
  }

  .product-list p {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (max-width: 520px) {
  .fashion-stream__visual,
  .fashion-gallery {
    grid-template-columns: 1fr;
  }

  .fashion-stream__visual {
    min-height: 54rem;
  }

  .fashion-stream__visual figure:last-child {
    margin-top: 0;
  }

  .fashion-gallery figure:nth-child(3),
  .fashion-gallery figure:nth-child(6) {
    grid-column: auto;
  }
}

/* Knit accessories */
.knit-accessories {
  display: grid;
  grid-template-columns: minmax(20rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
  background: #e7e2d9;
}

.knit-accessories__visual {
  margin: 0;
  overflow: hidden;
  background: #d8d5ce;
}

.knit-accessories__visual img {
  height: clamp(34rem, 54vw, 54rem);
  object-fit: cover;
}

.knit-accessories__copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.6vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.knit-accessories__copy h2 em {
  color: var(--rust);
  font-weight: 400;
}

.knit-accessories__copy > p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.knit-accessory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.knit-accessory-grid article {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #20262a;
  color: var(--white);
}

.knit-accessory-grid article::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 21, 0.08) 20%, rgba(13, 18, 21, 0.84) 100%);
}

.knit-accessory-grid article > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.knit-accessory-grid article:nth-child(2) > img {
  object-position: center 75%;
}

.knit-accessory-grid article:hover > img {
  transform: scale(1.025);
}

.knit-accessory-grid span {
  position: relative;
  z-index: 2;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.knit-accessory-grid article > div {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.3rem;
  left: 1.3rem;
}

.knit-accessory-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.knit-accessory-grid p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

/* Socks page */
.workwear-hero--socks .workwear-hero__image {
  left: 39%;
}

.workwear-hero--socks .workwear-hero__image img {
  object-position: center 62%;
}

.workwear-hero--socks .workwear-hero__image::after {
  background: linear-gradient(90deg, var(--navy) 0%, rgba(23, 36, 52, 0.86) 22%, rgba(23, 36, 52, 0.18) 67%, rgba(23, 36, 52, 0.05) 100%);
}

.workwear-hero--socks h1 {
  max-width: 9ch;
}

.sock-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--signal);
}

.sock-value-strip article {
  min-height: 11rem;
  padding: 1.7rem clamp(1.25rem, 3vw, 3rem);
  border-right: 1px solid rgba(21, 26, 29, 0.2);
}

.sock-value-strip article:last-child {
  border-right: 0;
}

.sock-value-strip strong {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.9vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sock-value-strip span {
  display: block;
  max-width: 14rem;
  margin-top: 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.sock-possibilities,
.sock-production {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
}

.sock-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sock-category-grid article {
  min-height: 22rem;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.sock-category-grid span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sock-category-grid h3 {
  max-width: 9ch;
  margin: 7rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.sock-category-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sock-development {
  display: grid;
  grid-template-columns: minmax(22rem, 0.95fr) minmax(22rem, 1.05fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4vw, 4.5rem);
  background: #e7e2d9;
}

.sock-development__visual {
  margin: 0;
}

.sock-development__visual img {
  height: clamp(35rem, 58vw, 62rem);
  object-fit: cover;
}

.sock-development__visual figcaption {
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sock-development__copy h2 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.7vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.sock-development__copy h2 em {
  color: var(--rust);
  font-weight: 400;
}

.sock-development__copy > p:not(.section-kicker) {
  max-width: 39rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.sock-production {
  background: var(--navy);
  color: var(--white);
}

.sock-production .section-kicker::before {
  background: var(--signal);
}

.sock-production .section-head h2 em {
  color: var(--signal);
}

.sock-production .section-copy,
.sock-production .production-steps p {
  color: rgba(255, 255, 255, 0.88);
}

.sock-production .production-steps {
  margin-top: clamp(3rem, 6vw, 6rem);
  border-color: rgba(255, 255, 255, 0.22);
}

.sock-production .production-steps article {
  border-color: rgba(255, 255, 255, 0.22);
}

.sock-production .production-steps span {
  color: var(--signal);
}

.sock-moq-note {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: start;
  margin-top: 2.8rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.sock-moq-note strong {
  color: var(--signal);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sock-moq-note p {
  max-width: 52rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1040px) {
  .knit-accessories,
  .sock-development {
    grid-template-columns: 1fr;
  }

  .knit-accessories__visual img,
  .sock-development__visual img {
    height: min(62rem, 110vw);
  }

  .sock-value-strip,
  .sock-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sock-value-strip article:nth-child(2),
  .sock-category-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .workwear-hero--socks .workwear-hero__image img {
    object-position: 58% center;
  }

  .sock-category-grid {
    grid-template-columns: 1fr;
  }

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

  .knit-accessory-grid article,
  .sock-category-grid article {
    min-height: auto;
  }

  .sock-category-grid h3 {
    margin-top: 3.5rem;
  }

  .sock-moq-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .sock-value-strip {
    grid-template-columns: 1fr;
  }

  .sock-value-strip article,
  .sock-value-strip article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 26, 29, 0.2);
  }

  .sock-value-strip article:last-child {
    border-bottom: 0;
  }

  .knit-accessories__visual img,
  .sock-development__visual img {
    height: 35rem;
  }

  .knit-accessory-grid {
    grid-template-columns: 1fr;
  }

}

/* Contact page */
.contact-hero {
  display: grid;
  min-height: 68svh;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  padding: clamp(9rem, 12vw, 12rem) clamp(1.25rem, 4vw, 4.5rem) clamp(3.5rem, 5vw, 5rem);
  background: var(--navy);
  color: var(--white);
}

.contact-hero__content {
  max-width: 52rem;
}

.contact-hero__content h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.contact-hero__content h1 em {
  color: var(--signal);
  font-weight: 400;
}

.contact-hero__content > p:last-child {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.contact-options {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-options a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.2rem 0.8rem;
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.contact-options a:last-child {
  border-bottom: 0;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  background: var(--signal);
  color: var(--ink);
}

.contact-options span {
  grid-row: 1 / 3;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-options a:hover span,
.contact-options a:focus-visible span {
  color: var(--rust);
}

.contact-options strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.contact-options small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options a:hover small,
.contact-options a:focus-visible small {
  color: rgba(21, 26, 29, 0.7);
}

.contact-page-main {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  padding: clamp(3.5rem, 6vw, 6.5rem) clamp(1.25rem, 4vw, 4.5rem);
}

.contact-page-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.contact-page-intro h2 em {
  color: var(--rust);
  font-weight: 400;
}

.contact-page-intro > p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-direct,
.contact-checklist {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.contact-direct > span,
.contact-checklist h3 {
  display: block;
  margin: 0 0 0.85rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  text-decoration: none;
}

.contact-direct__links {
  display: grid;
  gap: 0.35rem;
}

.contact-direct address {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.contact-direct .map-link {
  margin-top: 0.85rem;
  border-bottom: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct .map-link span {
  color: var(--rust);
}

.contact-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.contact-checklist li::before {
  content: "—";
  margin-right: 0.65rem;
  color: var(--rust);
}

.contact-form-panel {
  padding: clamp(2rem, 3.3vw, 3.8rem);
  background: var(--white);
}

.contact-form-panel h2 {
  max-width: 10ch;
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.project-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  padding: 2rem;
  border-left: 3px solid var(--rust);
  background: var(--paper);
}

.form-success strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

.form-success p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

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

.form-field > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--rust);
  box-shadow: 0 1px 0 var(--rust);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999b99;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 0.8rem;
}

.form-submit .button {
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.form-submit p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-submit p a {
  color: currentColor;
  text-underline-offset: 0.2em;
}

/* Privacy page */
.privacy-page {
  min-height: 100svh;
  padding: clamp(10rem, 14vw, 14rem) clamp(1.25rem, 4vw, 4.5rem) clamp(5rem, 9vw, 9rem);
  background: var(--paper);
}

.privacy-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(24rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.privacy-page__intro h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.privacy-page__intro h1 em {
  color: var(--rust);
  font-weight: 400;
}

.privacy-page__intro > div:last-child {
  align-self: end;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(3rem, 8vw, 9rem);
}

.privacy-content article {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 400;
}

.privacy-content p,
.privacy-content ul {
  margin: 0;
  color: var(--muted);
}

.privacy-content p + p,
.privacy-content p + ul {
  margin-top: 0.8rem;
}

.privacy-content a {
  color: var(--navy);
  text-underline-offset: 0.2em;
}

.privacy-content ul {
  padding-left: 1.2rem;
}

@media (max-width: 760px) {
  .privacy-page__intro,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .privacy-page__intro > div:last-child {
    align-self: start;
  }
}

@media (max-width: 1040px) {
  .contact-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .contact-options a:nth-child(2) {
    border-right: 0;
  }

  .contact-options a:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .contact-options a {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .contact-options a:nth-child(even) {
    border-right: 0;
  }

  .contact-options a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .contact-page-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding-top: 9rem;
  }

  .contact-hero__content h1 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options a,
  .contact-options a:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .contact-options a:last-child {
    border-bottom: 0;
  }

  .project-form {
    grid-template-columns: 1fr;
  }

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

  .contact-form-panel {
    margin: 0 -1.25rem;
  }
}
