/* ==========================================================================
   MARIA KULIEVA — Couture Minimal
   Black ground, white type, red as an accent and never as a wash.
   The clothes do the talking; the chrome stays out of the way.
   ========================================================================== */

:root {
  --black: #000;
  --ink: #fff;
  --red: #c8102e;

  --ink-70: rgba(255, 255, 255, 0.7);
  --ink-55: rgba(255, 255, 255, 0.55);
  --ink-38: rgba(255, 255, 255, 0.38);
  --rule: rgba(255, 255, 255, 0.14);
  --rule-soft: rgba(255, 255, 255, 0.08);
  --panel: #0a0a0a;

  --gutter: clamp(20px, 4vw, 56px);
  --band: clamp(96px, 14vh, 200px);
  --header-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.28, 1);
  --slow: 0.8s var(--ease);
  --med: 0.45s var(--ease);

  --font: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--med), opacity var(--med);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--red);
  color: var(--ink);
}

:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--black);
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.tracked {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.4;
}

.tracked--sm {
  font-size: 9px;
  letter-spacing: 0.34em;
}

.display {
  font-weight: 200;
  font-size: clamp(42px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.heading {
  font-weight: 200;
  font-size: clamp(30px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.subheading {
  font-weight: 250;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.lede {
  font-weight: 250;
  font-size: clamp(17px, 1.5vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 46ch;
}

.prose p {
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.72;
  max-width: 62ch;
  color: var(--ink-70);
}

.prose p + p {
  margin-top: 1.35em;
}

.pull {
  font-weight: 250;
  font-size: clamp(22px, 3vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.012em;
  max-width: 20ch;
}

.pull em {
  font-style: normal;
  color: var(--red);
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: 1180px;
  margin-inline: auto;
}

.band {
  padding-block: var(--band);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.label-row__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* Links that underline from the left on hover, slowly. */
.link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--slow);
}

.link:hover::after,
.link:focus-visible::after {
  transform: scaleX(1);
}

.link--on::after {
  transform: scaleX(1);
}

.link--on:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

/* --------------------------------------------------------------------------
   Figures
   -------------------------------------------------------------------------- */

.fig {
  position: relative;
  overflow: hidden;
  background: var(--panel) center / cover no-repeat;
}

.fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), opacity var(--slow);
}

.fig--zoom:hover img,
a:hover > .fig--zoom img {
  transform: scale(1.045);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: transform var(--slow), background-color var(--med), border-color var(--med);
  border-bottom: 1px solid transparent;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: opacity var(--med);
}

.header.is-solid {
  background: var(--black);
  border-bottom-color: var(--rule-soft);
}

.header.is-solid::before {
  opacity: 0;
}

.header.is-hidden {
  transform: translateY(-100%);
}

/* While the drawer is down, the bar behind the burger has to be opaque. */
body.is-locked .header {
  background: var(--black);
  transform: none;
}

body.is-locked .header::before {
  opacity: 0;
}

.header__bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  padding-inline: var(--gutter);
}

.header__nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
}

.header__nav--end {
  justify-content: flex-end;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
}

.header__brand svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header__wordmark {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__link {
  position: relative;
  padding-block: 4px;
  color: var(--ink);
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med);
}

.header__link:hover::after,
.header__link[aria-current='true']::after,
.header__link.is-open::after {
  transform: scaleX(1);
}

.header__burger {
  display: none;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang__sep {
  color: var(--ink-38);
}

.lang a[aria-current='true'] {
  color: var(--ink);
}

.lang a:not([aria-current='true']) {
  color: var(--ink-38);
}

.lang a:hover {
  color: var(--ink);
}

/* Mega panel -------------------------------------------------------------- */

.mega {
  position: absolute;
  inset: 100% 0 auto;
  background: var(--black);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--med), transform var(--med), visibility var(--med);
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mega__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 96px);
  padding: 48px var(--gutter) 56px;
  max-width: 1600px;
  margin-inline: auto;
}

.mega__col {
  min-width: 150px;
}

.mega__col h3 {
  margin-bottom: 20px;
  color: var(--ink-38);
}

.mega__col li + li {
  margin-top: 11px;
}

.mega__col a {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-70);
}

.mega__col a:hover {
  color: var(--ink);
}

.mega__flag {
  color: var(--red);
  font-size: 8px;
  vertical-align: 5px;
  margin-left: 6px;
}

.mega__feature {
  display: block;
  margin-left: auto;
  width: clamp(180px, 18vw, 260px);
  flex: none;
}

.mega__feature .fig {
  aspect-ratio: 4 / 5;
  margin-bottom: 14px;
}

/* Mobile drawer ----------------------------------------------------------- */

/* Sits below the header so the burger stays reachable as a close control. */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--black);
  padding: var(--header-h) var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}

.drawer.is-open {
  transform: none;
}

.drawer__group + .drawer__group {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-soft);
}

.drawer__group h3 {
  margin-bottom: 18px;
  color: var(--ink-38);
}

.drawer__group li + li {
  margin-top: 14px;
}

.drawer__group a {
  font-size: 22px;
  font-weight: 200;
  letter-spacing: -0.01em;
}

/* A section's own landing page reads as a heading, not as a sibling of its
   categories. */
.drawer__group a[data-heading] {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-55);
}

.drawer__group li:has(a[data-heading]) + li {
  margin-top: 10px;
}

.drawer__foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.hero .fig {
  position: absolute;
  inset: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.hero__meta {
  position: absolute;
  top: calc(var(--header-h) + 22px);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--ink-70);
}

.hero__body {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(84px, 11vh, 132px);
  z-index: 2;
}

.hero__title {
  max-width: 14ch;
}

.hero__cta {
  margin-top: clamp(20px, 3vh, 36px);
}

.hero__foot {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 26px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  color: var(--ink-55);
}

.cue {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cue__bar {
  width: 1px;
  height: 34px;
  background: var(--ink);
  transform-origin: top;
  animation: cue 2.6s var(--ease) infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: scaleY(0.25);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Manifesto band
   -------------------------------------------------------------------------- */

.manifesto {
  padding-block: clamp(110px, 18vh, 230px);
  text-align: center;
}

.manifesto q {
  quotes: none;
  display: block;
  margin-inline: auto;
  max-width: 22ch;
  font-weight: 200;
  font-size: clamp(27px, 4.6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.manifesto__attr {
  margin-top: clamp(28px, 4vw, 48px);
  color: var(--ink-38);
}

/* --------------------------------------------------------------------------
   Collection tiles
   -------------------------------------------------------------------------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule-soft);
}

.tiles--two {
  grid-template-columns: repeat(2, 1fr);
}

.tile {
  position: relative;
  display: block;
  background: var(--black);
}

.tile .fig {
  aspect-ratio: 3 / 4;
}

.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 48%);
  pointer-events: none;
  transition: opacity var(--slow);
}

.tile:hover::after {
  opacity: 0.75;
}

.tile__label {
  position: absolute;
  left: clamp(14px, 1.6vw, 24px);
  right: clamp(14px, 1.6vw, 24px);
  bottom: clamp(14px, 1.6vw, 24px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.tile__title {
  font-weight: 250;
  font-size: clamp(15px, 1.35vw, 21px);
  letter-spacing: -0.005em;
  line-height: 1.15;
}

.tile__season {
  color: var(--ink-55);
  white-space: nowrap;
}

.tile__badge {
  position: absolute;
  top: clamp(14px, 1.6vw, 24px);
  left: clamp(14px, 1.6vw, 24px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Split panels (shop)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule-soft);
}

.panel {
  position: relative;
  min-height: clamp(480px, 72vh, 760px);
  padding: clamp(28px, 3.4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--black);
}

.panel .fig {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.panel .fig img {
  opacity: 0.62;
  transition: transform 1.6s var(--ease), opacity var(--slow);
}

.panel:hover .fig img {
  transform: scale(1.04);
  opacity: 0.74;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.panel > * {
  position: relative;
  z-index: 2;
}

.panel__title {
  font-weight: 200;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.panel__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 22px;
}

.panel__cats a {
  color: var(--ink-70);
}

.panel__cats a:hover {
  color: var(--ink);
}

.panel__cats .flag {
  color: var(--red);
  font-size: 8px;
  vertical-align: 4px;
  margin-left: 5px;
}

/* --------------------------------------------------------------------------
   Editorial rows (about / home story blocks)
   -------------------------------------------------------------------------- */

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
}

.editorial--flip .editorial__media {
  order: 2;
}

.editorial__media .fig {
  aspect-ratio: 4 / 5;
}

.editorial__text .label-row {
  margin-bottom: clamp(24px, 3vw, 44px);
}

.editorial__pull {
  margin-top: clamp(28px, 4vw, 52px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--rule);
}

/* --------------------------------------------------------------------------
   Product grid
   -------------------------------------------------------------------------- */

.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 32px);
}

.card .fig {
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
}

.card__title {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.005em;
}

.card__meta {
  margin-top: 6px;
  display: flex;
  gap: 14px;
  color: var(--ink-55);
}

.card__price {
  color: var(--ink);
}

.empty {
  padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-55);
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */

.product {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}

.product__gallery {
  display: grid;
  gap: 2px;
}

.product__gallery .fig {
  aspect-ratio: 3 / 4;
}

.product__info {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.product__price {
  margin-top: 16px;
  font-weight: 250;
  font-size: clamp(20px, 1.8vw, 26px);
}

.spec {
  margin-top: clamp(28px, 3.4vw, 44px);
  border-top: 1px solid var(--rule);
}

.spec__row {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--rule-soft);
}

.spec__row dt {
  color: var(--ink-38);
}

.spec__row dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink-70);
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stock--order .dot {
  background: var(--ink-38);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--black);
  transition: background-color var(--med), color var(--med), border-color var(--med);
}

.btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink);
}

.btn--ghost {
  background: none;
  color: var(--ink);
  border-color: var(--rule);
}

.btn--ghost:hover {
  background: none;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-stack {
  margin-top: clamp(28px, 3.4vw, 44px);
  display: grid;
  gap: 10px;
}

.btn-note {
  margin-top: 16px;
  color: var(--ink-38);
  font-size: 12px;
  line-height: 1.6;
  max-width: 40ch;
}

.care {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--rule);
}

.care li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-70);
}

.care li + li {
  margin-top: 8px;
}

.care li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--ink-38);
}

/* --------------------------------------------------------------------------
   Page head (interior pages)
   -------------------------------------------------------------------------- */

.pagehead {
  padding-top: calc(var(--header-h) + clamp(56px, 12vh, 140px));
  padding-bottom: clamp(40px, 7vh, 88px);
}

.pagehead__crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 44px);
  color: var(--ink-38);
}

.pagehead__crumbs a:hover {
  color: var(--ink);
}

.pagehead .lede {
  margin-top: clamp(18px, 2.4vw, 28px);
  color: var(--ink-70);
}

/* Collection hero --------------------------------------------------------- */

.chero {
  position: relative;
  height: clamp(520px, 86svh, 1000px);
  overflow: hidden;
}

.chero .fig {
  position: absolute;
  inset: 0;
}

.chero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.75));
}

.chero__body {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(36px, 7vh, 88px);
  z-index: 2;
}

.chero__meta {
  margin-top: 18px;
  color: var(--ink-55);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}

.gallery .fig {
  aspect-ratio: 3 / 4;
}

.gallery > *:nth-child(6n + 1) {
  grid-column: span 7;
}

.gallery > *:nth-child(6n + 2) {
  grid-column: span 5;
}

.gallery > *:nth-child(6n + 3) {
  grid-column: span 5;
}

.gallery > *:nth-child(6n + 4) {
  grid-column: span 7;
}

.gallery > *:nth-child(6n + 5),
.gallery > *:nth-child(6n + 6) {
  grid-column: span 6;
}

/* --------------------------------------------------------------------------
   Newsletter + contact
   -------------------------------------------------------------------------- */

.signup {
  border-top: 1px solid var(--rule);
  padding-block: clamp(64px, 11vh, 140px);
}

.signup__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: end;
}

.field {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  transition: border-color var(--med);
}

.field:focus-within {
  border-bottom-color: var(--ink);
}

.field input,
.field textarea {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-38);
}

.field input:focus,
.field textarea:focus {
  outline: none;
}

.field button {
  padding: 14px 0 14px 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.field button:hover {
  color: var(--red);
}

.form-note {
  margin-top: 14px;
  color: var(--ink-38);
  font-size: 12px;
}

.form-status {
  margin-top: 14px;
  font-size: 13px;
  color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(32px, 5vw, 64px);
  border-top: 1px solid var(--rule);
}

.contact-grid h2 {
  margin-bottom: 18px;
  color: var(--ink-38);
}

.contact-grid li + li {
  margin-top: 10px;
}

.contact-grid a,
.contact-grid p {
  font-size: 15px;
  color: var(--ink-70);
}

.contact-grid a:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 8vh, 96px) var(--gutter) 28px;
}

.footer__wordmark {
  font-weight: 200;
  font-size: clamp(42px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: clamp(40px, 7vw, 88px);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.footer__grid h3 {
  margin-bottom: 18px;
  color: var(--ink-38);
}

.footer__grid li + li {
  margin-top: 10px;
}

.footer__grid li,
.footer__grid a {
  font-size: 13px;
  color: var(--ink-70);
}

.footer__grid a:hover {
  color: var(--ink);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink-38);
}

.footer__legal a:hover {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .editorial,
  .product {
    grid-template-columns: 1fr;
  }

  .editorial--flip .editorial__media {
    order: 0;
  }

  .product__info {
    position: static;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery > * {
    grid-column: span 6 !important;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 60px;
  }

  .header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .header__nav:not(.header__utils) {
    display: none;
  }

  /* The utility rail stays, but only the language switch survives the
     narrower bar — Instagram lives in the drawer on small screens. */
  .header__utils > a {
    display: none;
  }

  .header__brand {
    justify-self: center;
    gap: 9px;
  }

  .header__brand svg {
    width: 16px;
    height: 16px;
  }

  .header__wordmark {
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .header__burger {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .header__burger .bars {
    display: grid;
    gap: 4px;
    width: 16px;
  }

  .header__burger .bars span {
    height: 1px;
    background: currentColor;
  }

  .header__utils {
    justify-self: end;
  }

  .mega {
    display: none;
  }

  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: 440px;
  }

  .gallery > * {
    grid-column: span 12 !important;
  }

  /* Give the title, the call to action and the credit line room to sit on
     top of each other without colliding on a 375px screen. */
  .hero__body {
    bottom: 132px;
  }

  .hero__foot {
    bottom: 22px;
  }

  /* The show credit is long enough to eat a phone screen; it is repeated on
     the collection page, so the hero keeps only the scroll cue. */
  .hero__foot > span:last-child {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .spec__row {
    grid-template-columns: 40% 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Print: nobody prints a fashion site, but if they do, do not waste toner. */
@media print {
  .header,
  .drawer,
  .signup,
  .cue {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
