@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f6f4ef;
  --white: #fff;
  --ink: #202020;
  --dark: #101010;
  --muted: #76716a;
  --line: rgb(32 32 32 / 16%);
  --red: #c81735;
  --font-display: "Bodoni Moda", Didot, "Bodoni 72", "Bodoni MT", serif;
  --font-ui: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page: min(1720px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  font: inherit;
}

button,
a[href] {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.container {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}

.arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.arrow-link::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width .45s var(--ease);
}

.arrow-link:hover::after {
  width: 44px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  color: var(--white);
  transition: background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}

.site-header::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: transparent;
  content: "";
  transition: background-color .45s var(--ease);
}

.site-header.is-solid,
.page-detail .site-header,
.page-legal .site-header,
.menu-open .site-header {
  background: rgb(246 244 239 / 94%);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.is-solid::after,
.page-detail .site-header::after,
.page-legal .site-header::after,
.menu-open .site-header::after {
  background: var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(215px, 1fr) auto minmax(215px, 1fr);
  align-items: center;
  width: var(--page);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
}

.brand-mark--dark,
.site-header.is-solid .brand-mark--light,
.page-detail .brand-mark--light,
.page-legal .brand-mark--light,
.menu-open .brand-mark--light {
  display: none;
}

.site-header.is-solid .brand-mark--dark,
.page-detail .brand-mark--dark,
.page-legal .brand-mark--dark,
.menu-open .brand-mark--dark {
  display: block;
}

.brand-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 38px);
}

.desktop-nav a,
.header-action {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: right .35s var(--ease);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid currentColor;
  transition: background-color .3s ease, color .3s ease;
}

.shop-link:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-solid .shop-link:hover,
.page-detail .shop-link:hover,
.page-legal .shop-link:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  color: inherit;
}

.menu-toggle span,
.menu-toggle span::before {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .35s var(--ease);
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  visibility: hidden;
  padding: 116px 22px 26px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-16px);
  transition: visibility .5s, opacity .35s ease, transform .5s var(--ease);
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(36px, 11vw, 56px);
  letter-spacing: -.045em;
  line-height: 1;
}

.mobile-menu-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 30px;
  font-size: 11px;
  line-height: 1.7;
}

.mobile-shop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 17px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.hero-media,
.hero-media video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-fallback {
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, transparent 27%),
    linear-gradient(0deg, rgb(0 0 0 / 48%) 0%, transparent 36%);
  content: "";
  pointer-events: none;
}

.hero-controls {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.hero-latest {
  justify-self: start;
}

.hero-latest span {
  display: block;
}

.hero-latest .season {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 50px);
  letter-spacing: -.035em;
  line-height: 1;
}

.hero-latest .label,
.sound-toggle,
.scroll-cue {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue {
  position: relative;
  justify-self: center;
  padding-bottom: 44px;
}

.scroll-cue::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 32px;
  background: currentColor;
  content: "";
  transform-origin: top;
  animation: scroll-line 2.1s var(--ease) infinite;
}

.sound-toggle {
  justify-self: end;
  padding: 10px 0;
  color: currentColor;
}

.sound-toggle::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 100%;
  background: currentColor;
  content: "";
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.manifesto {
  padding: clamp(100px, 12vw, 200px) 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 2fr 8fr 2fr;
  gap: 24px;
}

.manifesto-copy {
  grid-column: 2;
  max-width: 1180px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 104px);
  letter-spacing: -.05em;
  line-height: .98;
}

.manifesto-copy em {
  color: var(--muted);
  font-weight: 400;
}

.latest {
  padding: 0 0 clamp(120px, 14vw, 220px);
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: center;
}

.latest-main {
  position: relative;
  grid-column: 1 / span 7;
  overflow: hidden;
}

.latest-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.latest-info {
  grid-column: 9 / span 3;
  padding-block: 44px;
}

.latest-title {
  margin: 18px 0 28px;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .82;
}

.latest-info p:not(.eyebrow) {
  max-width: 330px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.latest-detail {
  grid-column: 8 / span 4;
  margin-top: -32%;
  margin-left: 12%;
  box-shadow: 0 30px 80px rgb(0 0 0 / 14%);
}

.latest-detail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.archive {
  padding: clamp(90px, 10vw, 160px) 0 clamp(120px, 14vw, 220px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading .display {
  grid-column: 1 / span 8;
  font-size: clamp(66px, 9vw, 148px);
}

.section-heading .section-meta {
  grid-column: 10 / span 3;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
}

.archive-toolbar {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  margin-bottom: 38px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-filter {
  position: relative;
  padding: 5px 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.archive-filter::after {
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transition: right .3s var(--ease);
}

.archive-filter.is-active {
  color: var(--ink);
}

.archive-filter.is-active::after {
  right: 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px 22px;
}

.archive-card {
  grid-column: span 4;
  min-width: 0;
  transition: opacity .4s ease, transform .55s var(--ease);
}

.archive-card.is-lead {
  grid-column: span 8;
}

.archive-card[hidden] {
  display: none;
}

.archive-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e5e2dc;
}

.archive-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0%);
  content: "";
  pointer-events: none;
  transition: border-color .45s ease;
}

.archive-card:not(.is-lead) .archive-image {
  aspect-ratio: 4 / 5;
}

.archive-card.is-lead .archive-image {
  aspect-ratio: 8 / 5;
}

.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.archive-card:hover .archive-image img {
  transform: scale(1.018);
}

.archive-card:hover .archive-image::after {
  border-color: rgb(255 255 255 / 55%);
}

.archive-card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-top: 14px;
}

.archive-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 42px);
  letter-spacing: -.035em;
  line-height: 1;
}

.archive-card-kind {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about {
  padding: clamp(110px, 13vw, 210px) 0;
  background: var(--white);
}

.about-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
}

.about-heading .display {
  font-size: clamp(80px, 13vw, 210px);
}

.about-heading p {
  max-width: 350px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

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

.language {
  padding: 36px clamp(24px, 3vw, 54px) 0;
  border-left: 1px solid var(--line);
}

.language:first-child {
  padding-left: 0;
  border-left: 0;
}

.language:last-child {
  padding-right: 0;
}

.language-code {
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.language h3 {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

.language h4 {
  margin: 38px 0 12px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.language p {
  margin: 0 0 18px;
  color: #4e4b47;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  position: relative;
  padding: clamp(100px, 11vw, 170px) 0 36px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 100px;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  margin-bottom: 42px;
}

.footer-brand .display {
  max-width: 660px;
  font-size: clamp(58px, 7vw, 116px);
}

.footer-column {
  padding-top: 16px;
}

.footer-column h3 {
  margin: 0 0 28px;
  color: rgb(255 255 255 / 50%);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column address {
  margin: 0 0 24px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.footer-column a {
  display: inline-block;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  transition: border-color .3s ease;
}

.footer-column a:hover {
  border-color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 52%);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .9s var(--ease);
}

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

.detail-main {
  padding-top: 78px;
}

.detail-hero {
  padding: clamp(75px, 8vw, 130px) 0 clamp(55px, 6vw, 96px);
}

.detail-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.detail-title-row {
  display: grid;
  grid-template-columns: 9fr 3fr;
  gap: 24px;
  align-items: end;
  padding-top: 44px;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(90px, 17vw, 270px);
  font-weight: 400;
  letter-spacing: -.075em;
  line-height: .76;
}

.detail-summary {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  padding-bottom: clamp(110px, 14vw, 220px);
}

.gallery-item {
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  background: #e5e2dc;
}

.gallery--collections .gallery-item:nth-child(10n + 1),
.gallery--collections .gallery-item:nth-child(10n + 8),
.gallery--editorials .gallery-item:nth-child(7n + 1) {
  grid-column: span 6;
}

.gallery--press .gallery-item {
  grid-column: span 4;
  align-self: start;
}

.gallery-item a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.gallery--collections .gallery-item a,
.gallery--shows .gallery-item a {
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform .85s var(--ease), opacity .35s ease;
}

.gallery--collections .gallery-item img,
.gallery--shows .gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.015);
}

.detail-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.detail-pager a {
  display: block;
  padding: 60px 0 72px;
}

.detail-pager a + a {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.detail-pager span {
  display: block;
}

.pager-label {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pager-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -.045em;
  line-height: 1;
}

.legal-main {
  padding: 160px 0 130px;
}

.legal-header {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(62px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .88;
}

.legal-header p {
  color: var(--muted);
  font-size: 12px;
}

.legal-content {
  max-width: 940px;
  margin: 80px auto 0;
}

.legal-content h2 {
  margin: 64px 0 18px;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-content h3 {
  margin-top: 64px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
}

.legal-content p,
.legal-content li {
  color: #494641;
  font-size: 14px;
  line-height: 1.9;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  visibility: hidden;
  background: rgb(8 8 8 / 98%);
  color: var(--white);
  opacity: 0;
  transition: visibility .35s, opacity .35s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 68px 0 54px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100svh - 122px);
  object-fit: contain;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .3s ease, transform .45s var(--ease);
}

.lightbox-image.is-ready {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  color: var(--white);
}

.lightbox-prev,
.lightbox-next {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 44px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 0;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  color: rgb(255 255 255 / 58%);
  font-size: 9px;
  letter-spacing: .16em;
  text-align: center;
}

@media (max-width: 1120px) {
  :root {
    --page: calc(100vw - 44px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions .header-action:not(.shop-link) {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .menu-toggle {
    display: flex;
  }

  .archive-card {
    grid-column: span 6;
  }

  .archive-card.is-lead {
    grid-column: span 12;
  }

  .gallery-item {
    grid-column: span 4;
  }

  .gallery--collections .gallery-item:nth-child(10n + 1),
  .gallery--collections .gallery-item:nth-child(10n + 8),
  .gallery--editorials .gallery-item:nth-child(7n + 1) {
    grid-column: span 8;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 64px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name,
  .shop-link {
    display: none;
  }

  .hero-controls {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr auto;
  }

  .hero-latest .season {
    font-size: 36px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto {
    padding: 90px 0 100px;
  }

  .manifesto-grid {
    display: block;
  }

  .manifesto-copy {
    font-size: clamp(40px, 13vw, 64px);
  }

  .latest {
    padding-bottom: 112px;
  }

  .latest-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .latest-main {
    grid-column: 1 / -1;
  }

  .latest-info {
    grid-column: 1 / span 3;
    padding: 24px 0 0;
  }

  .latest-title {
    margin: 8px 0 18px;
    font-size: 76px;
  }

  .latest-detail {
    grid-column: 3 / -1;
    margin: -35px 0 0;
  }

  .archive {
    padding: 86px 0 112px;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading .display {
    font-size: clamp(62px, 20vw, 96px);
  }

  .section-heading .section-meta {
    margin-top: 22px;
  }

  .archive-toolbar {
    gap: 8px 18px;
    margin-right: -18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .archive-toolbar::-webkit-scrollbar {
    display: none;
  }

  .archive-filter {
    flex: 0 0 auto;
  }

  .archive-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 38px 12px;
  }

  .archive-card,
  .archive-card.is-lead {
    grid-column: span 2;
  }

  .archive-card.is-lead {
    grid-column: 1 / -1;
  }

  .archive-card.is-lead .archive-image {
    aspect-ratio: 4 / 5;
  }

  .archive-card-title {
    font-size: 25px;
  }

  .archive-card-kind {
    display: none;
  }

  .about {
    padding: 100px 0;
  }

  .about-heading {
    display: block;
    margin-bottom: 50px;
  }

  .about-heading .display {
    font-size: 30vw;
  }

  .about-heading p {
    margin-top: 24px;
  }

  .about-languages {
    display: block;
  }

  .language,
  .language:first-child,
  .language:last-child {
    padding: 34px 0 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .language:first-child {
    border-top: 0;
  }

  .language-code {
    margin-bottom: 26px;
  }

  .language h3 {
    font-size: 44px;
  }

  .footer-top {
    display: block;
    padding-bottom: 70px;
  }

  .footer-brand {
    margin-bottom: 74px;
  }

  .footer-brand .display {
    font-size: 19vw;
  }

  .footer-column {
    padding: 34px 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .footer-bottom {
    display: block;
  }

  .footer-links {
    margin-bottom: 20px;
  }

  .detail-main {
    padding-top: 64px;
  }

  .detail-hero {
    padding: 58px 0 48px;
  }

  .detail-title-row {
    display: block;
    padding-top: 36px;
  }

  .detail-title {
    font-size: 27vw;
  }

  .detail-summary {
    margin-top: 26px;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-bottom: 110px;
  }

  .gallery-item,
  .gallery--press .gallery-item,
  .gallery--collections .gallery-item:nth-child(10n + 1),
  .gallery--collections .gallery-item:nth-child(10n + 8),
  .gallery--editorials .gallery-item:nth-child(7n + 1) {
    grid-column: span 2;
  }

  .gallery--editorials .gallery-item:nth-child(5n + 1),
  .gallery--press .gallery-item:nth-child(5n + 1) {
    grid-column: 1 / -1;
  }

  .detail-pager {
    display: block;
  }

  .detail-pager a {
    padding: 36px 0 44px;
  }

  .detail-pager a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .legal-main {
    padding: 120px 0 90px;
  }

  .legal-header {
    display: block;
    padding-bottom: 46px;
  }

  .legal-header h1 {
    font-size: 19vw;
  }

  .legal-header p {
    margin-top: 24px;
  }

  .legal-content {
    margin-top: 54px;
  }

  .lightbox {
    grid-template-columns: 44px 1fr 44px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
  }
}

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

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

  .hero video {
    display: none;
  }

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