@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #191614;
  --ink-soft: #312b27;
  --paper: #f3f0ea;
  --paper-deep: #e4ddd3;
  --stone: #b8b0a5;
  --taupe: #827466;
  --smoke: #58636a;
  --wine: #4d2726;
  --wine-deep: #3a2120;
  --clay: #9a6655;
  --hover-brown: #766b63;
  --hover-brown-on-dark: #a4968d;
  --line: rgba(25, 22, 20, 0.16);
  --line-light: rgba(243, 240, 234, 0.22);
  --shadow: 0 28px 80px rgba(20, 17, 14, 0.24);
  --section-pad: clamp(86px, 9vw, 132px);
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* slow, settled easing for an editorial, cinematic feel */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0.05, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--wine);
  color: var(--paper);
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  isolation: isolate;
  padding: 20px 34px;
  color: var(--paper);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0) saturate(1);
  transition: none;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--header-bg, transparent);
  backdrop-filter: blur(var(--header-blur, 0px)) saturate(var(--header-saturation, 1));
  content: "";
  opacity: var(--header-bg-opacity, 0);
  pointer-events: none;
  transition: none;
  will-change: opacity, backdrop-filter, background;
}

.site-header.is-over-hero {
  color: rgba(243, 240, 234, 0.9);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header.is-over-hero::before {
  background: var(--header-bg, transparent);
  backdrop-filter: blur(var(--header-blur, 0px)) saturate(var(--header-saturation, 1));
  opacity: var(--header-bg-opacity, 0);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid rgba(25, 22, 20, 0.08);
  backdrop-filter: none;
}

.site-header.is-scrolled::before {
  background: var(--header-bg, transparent);
  backdrop-filter: blur(var(--header-blur, 0px)) saturate(var(--header-saturation, 1));
  opacity: var(--header-bg-opacity, 0);
}

.brand-mark {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  letter-spacing: 0.015em;
}

.nav-links a {
  position: relative;
  opacity: 0.86;
  transition: opacity 220ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 68% 18%;
  filter: saturate(0.92) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 10, 9, 0.84), rgba(13, 10, 9, 0.32) 48%, rgba(13, 10, 9, 0.1)),
    linear-gradient(180deg, rgba(13, 10, 9, 0.38), rgba(13, 10, 9, 0.08) 44%, rgba(13, 10, 9, 0.76));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 94vh;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 80px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--wine);
}

.hero h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(60px, 10.5vw, 116px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-line {
  margin: 16px 0 0;
  color: var(--paper-deep);
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

.hero-copy {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(243, 240, 234, 0.82);
  font-size: 17px;
  line-height: 1.66;
  text-wrap: pretty;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  --btn-bg: transparent;
  --btn-fill: var(--ink);
  --btn-fill-text: var(--paper);
  --btn-tint: rgba(25, 22, 20, 0.06);
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 26px;
  background-color: var(--btn-bg);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    letter-spacing 420ms var(--ease-out),
    background-color 360ms var(--ease-out),
    color 360ms var(--ease-out),
    border-color 360ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  border-color: var(--btn-fill);
  letter-spacing: 0.17em;
  background-color: var(--btn-tint);
  outline: 0;
}

.button.primary {
  --btn-bg: var(--paper);
  --btn-fill: var(--ink);
  --btn-fill-text: var(--paper);
  --btn-tint: var(--paper-deep);
  border-color: var(--paper);
  color: var(--ink);
}

.button.ghost {
  --btn-bg: transparent;
  --btn-fill: var(--paper);
  --btn-fill-text: var(--ink);
  --btn-tint: rgba(243, 240, 234, 0.1);
  color: var(--paper);
}

.button.ghost.light {
  border-color: var(--paper);
}

/* Email CTA keeps its address legible (no uppercase) */
.contact .button.primary {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12.5px;
}

.contact .button.primary:hover,
.contact .button.primary:focus-visible {
  letter-spacing: 0.04em;
}

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

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.intro-copy .section-kicker {
  display: block;
  margin-bottom: 22px;
}

.intro-copy h2,
.style-lead h2,
.material-copy h2,
.gallery-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.intro-copy p,
.style-lead p,
.material-copy p,
.about-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0.002em;
  text-wrap: pretty;
}

.about-copy p.about-platform-copy {
  max-width: 540px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.58;
}

.about-platform-copy + .text-link {
  margin-top: 14px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.intro-grid figure,
.gallery-grid figure,
.editorial-row img,
.about-image {
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.intro-grid figure {
  aspect-ratio: 3 / 4;
}

.intro-grid img,
.gallery-grid img,
.editorial-row img,
.about-image img,
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
  transform: scale(var(--image-scale, 1.001));
  transform-origin: var(--image-origin, 50% 50%);
  transition: transform 1300ms var(--ease-out), filter 1300ms var(--ease-out);
}

.intro-grid figure:hover img,
.gallery-grid figure:hover img,
.about-image:hover img,
.photo-card:hover img {
  transform: scale(var(--image-hover-scale, 1.018));
}

.style-language {
  border-top: 1px solid var(--line);
}

.style-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 260px;
  background: var(--paper);
  background-image: var(--principle-image);
  background-position: var(--principle-position, 50% 50%);
  background-size: cover;
  padding: 30px 24px;
  color: var(--paper);
}

.principle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.24), rgba(18, 16, 14, 0.86)),
    linear-gradient(90deg, rgba(18, 16, 14, 0.72), rgba(18, 16, 14, 0.22));
  pointer-events: none;
}

.principle span {
  position: relative;
  z-index: 1;
  color: rgba(243, 240, 234, 0.72);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.principle h3 {
  position: relative;
  z-index: 1;
  margin: 60px 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
}

.principle p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(243, 240, 234, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.style-method {
  border-top: 1px solid var(--line);
}

.style-method .style-lead {
  max-width: 920px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  background: var(--method-base, var(--ink));
  color: var(--method-text, var(--paper));
  padding: 30px 24px;
  transition:
    background 360ms ease,
    border-color 360ms ease,
    color 360ms ease,
    transform 360ms var(--ease-out);
}

.method-card::before {
  position: absolute;
  inset: 0;
  background-image: var(--method-image);
  background-position: var(--method-position, 50% 72%);
  background-size: cover;
  content: "";
  opacity: var(--method-image-opacity, 0.56);
  filter: saturate(var(--method-saturation, 0.74)) sepia(var(--method-sepia, 0)) contrast(1.06) brightness(var(--method-brightness, 0.9));
  transform: scale(1.04);
}

.method-card::after {
  position: absolute;
  inset: 0;
  background: var(--method-overlay);
  content: "";
}

.method-card:nth-child(1) {
  --method-image: url("assets/images/curated/black-suit-bag.jpg");
  --method-position: 48% 70%;
  --method-image-opacity: 0.5;
  --method-brightness: 0.86;
  --method-overlay: linear-gradient(90deg, rgba(42, 36, 32, 0.62), rgba(42, 36, 32, 0.28));
}

.method-card:nth-child(2) {
  --method-image: url("assets/images/curated/desert-white-detail.jpg");
  --method-base: var(--ink);
  --method-position: 50% 56%;
  --method-image-opacity: 0.58;
  --method-saturation: 0.44;
  --method-sepia: 0.16;
  --method-brightness: 0.68;
  --method-overlay:
    linear-gradient(90deg, rgba(42, 36, 32, 0.66), rgba(42, 36, 32, 0.34)),
    linear-gradient(0deg, rgba(37, 31, 28, 0.22), rgba(37, 31, 28, 0.22));
}

.method-card:nth-child(3) {
  --method-image: url("assets/images/curated/glove-ear-detail.jpg");
  --method-position: 54% 44%;
  --method-image-opacity: 0.54;
  --method-brightness: 0.84;
  --method-overlay: linear-gradient(90deg, rgba(42, 36, 32, 0.6), rgba(42, 36, 32, 0.26));
}

.method-card > * {
  position: relative;
  z-index: 1;
}

.method-card:hover,
.method-card:focus-within {
  background: var(--method-base, var(--ink));
  color: var(--method-text, var(--paper));
  transform: translateY(-2px) scale(1.006);
}

.method-card span {
  color: var(--method-accent, rgba(243, 240, 234, 0.74));
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  transition: color 360ms ease;
}

.method-card:hover span,
.method-card:focus-within span {
  color: var(--hover-brown);
}

.method-card h3 {
  margin: 58px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.method-card p {
  margin: 16px 0 0;
  color: var(--method-muted, rgba(243, 240, 234, 0.72));
  font-size: 13px;
  line-height: 1.65;
  transition: color 360ms ease;
}

.method-card:hover p,
.method-card:focus-within p {
  color: var(--method-muted, rgba(243, 240, 234, 0.72));
}


.material-notes {
  width: min(100% - 48px, var(--max));
  border-top: 1px solid var(--line);
}

.material-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.material-card {
  min-height: 430px;
  margin: 0;
  background: var(--paper);
  padding: 10px;
}

.material-image {
  aspect-ratio: 1 / 1.04;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--stone);
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
  transform: scale(var(--image-scale, 1.001));
  transition: transform 1000ms var(--ease-out), filter 1000ms var(--ease-out);
}

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

.material-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: transparent;
}

.material-pair img {
  display: block;
  min-width: 0;
}

.material-pair .material-look {
  object-position: var(--look-position, 50% 50%);
}

.material-pair .material-fabric {
  object-position: var(--fabric-position, 50% 50%);
  filter: contrast(1.03) saturate(0.92);
}

.material-linen {
  --look-position: 60% 50%;
  --fabric-position: 50% 50%;
}

.material-satin {
  --look-position: 50% 50%;
  --fabric-position: 50% 50%;
}

.material-tailoring {
  --look-position: 48% 44%;
  --fabric-position: 50% 50%;
}

.material-leather {
  --look-position: 67% 50%;
  --fabric-position: 50% 50%;
}

.material-card span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.material-card h3 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.material-card p {
  margin: 14px 0 0;
  color: var(--taupe);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-band {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad) 0;
}

.gallery-heading,
.photo-wall-wrap {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-heading .section-kicker,
.photo-wall-header .section-kicker {
  color: var(--stone);
}

.gallery-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  color: rgba(243, 239, 231, 0.64);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-scroll-cue span {
  display: inline-block;
  animation: galleryScrollCue 1.8s ease-in-out infinite;
}

@keyframes galleryScrollCue {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.gallery-grid {
  --gallery-gap: 18px;
  display: flex;
  width: min(100% - 48px, var(--max));
  margin: 54px auto 0;
  gap: var(--gallery-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 76px), rgba(0, 0, 0, 0.72) calc(100% - 24px), rgba(0, 0, 0, 0.38) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 76px), rgba(0, 0, 0, 0.72) calc(100% - 24px), rgba(0, 0, 0, 0.38) 100%);
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid figure {
  position: relative;
  flex: 0 0 calc((100% - (var(--gallery-gap) * 2.4)) / 3.22);
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 600ms var(--ease-out);
}

.gallery-grid figure:hover {
  transform: translateY(-1px) scale(1.004);
}

.gallery-grid figure.edge-clean {
  background: var(--ink);
}

.gallery-grid figure.edge-clean img {
  display: block;
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  border: 1px solid rgba(243, 240, 234, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--paper);
  background: rgba(10, 8, 7, 0.45);
  backdrop-filter: blur(12px);
  font-size: 12px;
  opacity: 0.86;
  transform: none;
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out),
    background-color 500ms var(--ease-out);
}

.gallery-grid figure:hover figcaption,
.gallery-grid figure:focus-within figcaption {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(10, 8, 7, 0.6);
}

.archive-teaser {
  display: grid;
  width: min(100% - 48px, var(--max));
  margin: 52px auto 0;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: end;
  border-top: 1px solid rgba(243, 240, 234, 0.16);
  padding-top: 30px;
  color: var(--paper);
}

.archive-teaser .section-kicker {
  color: var(--stone);
}

.archive-teaser h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.archive-teaser p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(243, 240, 234, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.archive-teaser-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  row-gap: 10px;
}

.archive-teaser-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(243, 240, 234, 0.24);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(243, 240, 234, 0.78);
  font-size: 12px;
  transition:
    transform 260ms var(--ease-out),
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.archive-teaser-links a:hover,
.archive-teaser-links a:focus-visible {
  border-color: var(--hover-brown);
  background: transparent;
  color: var(--hover-brown);
  outline: 0;
  transform: translateY(-1px) scale(1.01);
}

.archive-section {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  background: var(--ink);
  padding: clamp(64px, 7vw, 92px) clamp(18px, 4vw, 64px) clamp(56px, 6vw, 78px);
  border-top: 1px solid var(--line-light);
  border-bottom: 0;
  color: var(--paper);
}

.archive-section .archive-teaser-copy,
.archive-section .archive-teaser-links,
.archive-section > .button {
  max-width: none;
  margin: 0;
}

.archive-section > .button:hover,
.archive-section > .button:focus-visible {
  border-color: var(--btn-fill);
  letter-spacing: 0.17em;
  background-color: var(--btn-tint);
}

/* Touch devices have no hover — keep captions visible there */
@media (hover: none) {
  .gallery-grid figcaption {
    opacity: 1;
    transform: none;
  }
}

.photo-wall-wrap {
  margin-top: 84px;
  border-top: 1px solid var(--line-light);
  padding-top: 36px;
}

.photo-wall-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.photo-wall-header h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  --fb-fill: var(--paper);
  --fb-fill-text: var(--ink);
  --fb-tint: rgba(243, 240, 234, 0.1);
  min-height: 36px;
  border: 1px solid rgba(243, 240, 234, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(243, 240, 234, 0.82);
  background-color: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    letter-spacing 380ms var(--ease-out),
    background-color 320ms var(--ease-out),
    color 320ms var(--ease-out),
    border-color 320ms var(--ease-out);
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--fb-fill);
  letter-spacing: 0.16em;
  color: var(--fb-fill);
  background-color: var(--fb-tint);
  outline: 0;
}

.filter-button.is-active {
  border-color: var(--paper);
  background-color: var(--paper);
  color: var(--ink);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  background: #12100e;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.photo-card.is-in {
  opacity: 1;
  transform: none;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0), rgba(10, 8, 7, 0.76));
  pointer-events: none;
}

.photo-card.tone-dark img {
  filter: none;
}

.photo-card figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(243, 240, 234, 0.18);
  padding-top: 8px;
  color: rgba(243, 240, 234, 0.88);
  font-size: 11px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.photo-card figcaption span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.focus-outfit {
  --image-scale: 1.03;
  --image-hover-scale: 1.018;
  --object-position: 50% 82%;
}

.editorial-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 420px;
  background: var(--ink);
}

.editorial-row img {
  min-height: 420px;
  border-right: 1px solid rgba(243, 240, 234, 0.12);
  object-fit: cover;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 74px;
  align-items: center;
}

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

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 26px;
  color: #3f302e;
  font-size: 14px;
  font-weight: 700;
  transition: color 360ms ease, transform 360ms var(--ease-out);
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 520ms var(--ease-out), opacity 520ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #2f2926;
  outline: 0;
  transform: translateY(-1px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  opacity: 0.72;
  transform: scaleX(0.88);
}

.contact {
  margin-top: -1px;
  background:
    radial-gradient(125% 95% at 16% 0%, rgba(120, 56, 53, 0.5), rgba(120, 56, 53, 0) 58%),
    linear-gradient(180deg, var(--ink) 0%, #241413 22%, var(--wine-deep) 66%, #1e1210 100%);
  border-top: 1px solid rgba(243, 240, 234, 0.16);
  color: var(--paper);
  padding: clamp(80px, 8vw, 112px) 0 100px;
}

.contact-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.contact .section-kicker {
  color: var(--paper-deep);
}

.contact h2 {
  max-width: 780px;
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(243, 240, 234, 0.14);
  padding: 24px 34px;
  background: var(--ink);
  color: rgba(243, 240, 234, 0.72);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.archive-body .site-header {
  color: var(--ink);
  background: transparent;
  border-bottom-color: rgba(25, 22, 20, 0.08);
  backdrop-filter: none;
}

.press-body .site-header:not(.is-scrolled) {
  color: rgba(243, 240, 234, 0.9);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.press-body .site-header:not(.is-scrolled)::before {
  background: var(--header-bg, transparent);
  backdrop-filter: blur(var(--header-blur, 0px)) saturate(var(--header-saturation, 1));
  opacity: var(--header-bg-opacity, 0);
}

.press-body .site-header.is-scrolled {
  color: var(--ink);
  background: transparent;
  border-bottom-color: rgba(25, 22, 20, 0.08);
  backdrop-filter: none;
}

.press-body .site-header.is-scrolled::before {
  background: var(--header-bg, transparent);
  backdrop-filter: blur(var(--header-blur, 0px)) saturate(var(--header-saturation, 1));
  opacity: var(--header-bg-opacity, 0);
}

.archive-page {
  min-height: 100vh;
  padding: 112px 0 100px;
  background: var(--paper);
}

.archive-hero {
  display: grid;
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 64px;
  align-items: end;
  padding: 46px 0 34px;
  border-bottom: 1px solid var(--line);
}

.archive-hero h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.archive-hero p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.moodboard-section,
.chapter-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 72px 0 0;
}

.moodboard-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}

.moodboard-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.moodboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.85fr 0.85fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mood-card {
  min-height: 360px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
  padding: 26px;
}

.mood-card > span,
.chapter-card span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.mood-card h3,
.chapter-card h3 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.mood-card p,
.chapter-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-content: start;
  margin-top: 28px;
}

.swatch {
  display: flex;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  color: var(--paper);
  background: var(--swatch);
}

.swatch.is-light {
  color: var(--ink);
}

.swatch b {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.texture-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.texture-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 1 / 1.08;
}

.texture-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.001);
  transition: transform 1000ms var(--ease-out), filter 1000ms var(--ease-out);
}

.texture-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  height: 100%;
  background: var(--line);
}

.texture-pair img {
  min-width: 0;
}

.archive-texture-card .texture-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.archive-texture-card .texture-item {
  aspect-ratio: 1.38 / 1;
  background: #11100f;
}

.archive-texture-card .texture-item .texture-fabric {
  transform: scale(1.015);
}

.texture-item .texture-look {
  object-position: var(--texture-look-position, 50% 50%);
}

.texture-item .texture-fabric {
  object-position: var(--texture-fabric-position, 50% 50%);
  filter: contrast(1.04) saturate(0.9);
}

.texture-item figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-top: 1px solid rgba(243, 240, 234, 0.2);
  padding-top: 7px;
  color: rgba(243, 240, 234, 0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.texture-linen {
  --texture-look-position: 56% 50%;
  --texture-fabric-position: 50% 50%;
}

.texture-satin {
  --texture-look-position: 50% 50%;
  --texture-fabric-position: 50% 50%;
}

.texture-tailoring {
  --texture-look-position: 48% 44%;
  --texture-fabric-position: 50% 50%;
}

.texture-leather {
  --texture-look-position: 62% 38%;
  --texture-fabric-position: 50% 50%;
}

.texture-cashmere {
  --texture-look-position: 58% 46%;
  --texture-fabric-position: 50% 50%;
}

.texture-suede {
  --texture-look-position: 52% 46%;
  --texture-fabric-position: 50% 50%;
}

.code-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.code-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

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

.chapter-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  cursor: pointer;
  padding: 16px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.chapter-card:hover,
.chapter-card:focus-visible {
  border-color: rgba(25, 22, 20, 0.34);
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.chapter-card img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.chapter-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 6px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--taupe);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.chapter-link-text {
  margin-top: 28px;
  color: var(--wine) !important;
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
}

.chapter-detail-section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding-top: 82px;
  scroll-margin-top: 94px;
}

.chapter-detail {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.chapter-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.chapter-detail-header h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
}

.chapter-detail-header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.chapter-detail-side {
  align-self: end;
}

.chapter-detail-side p {
  margin: 0;
}

.brand-index-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  color: rgba(77, 39, 38, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    transform 320ms var(--ease-out);
}

.brand-index-link::after {
  width: 34px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}

.brand-index-link:hover,
.brand-index-link:focus-visible {
  color: var(--hover-brown);
  outline: 0;
  transform: translateX(2px);
}

.brand-index-link:hover::after,
.brand-index-link:focus-visible::after {
  transform: scaleX(1.24);
}

.chapter-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.chapter-photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  background: #12100e;
}

.chapter-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
  transform: scale(var(--image-scale, 1.001));
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.chapter-photo-card:hover img {
  transform: scale(var(--image-hover-scale, 1.045));
}

.chapter-photo-card.tone-dark img {
  filter: none;
}

.chapter-photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0), rgba(10, 8, 7, 0.72));
  content: "";
  pointer-events: none;
}

.chapter-photo-card figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(243, 240, 234, 0.18);
  padding-top: 8px;
  color: rgba(243, 240, 234, 0.9);
  font-size: 11px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.archive-page .photo-wall-wrap {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.archive-page .photo-wall-header .section-kicker {
  color: var(--wine);
}

.archive-page .photo-wall-header h3 {
  color: var(--ink);
}

.archive-page .filter-button {
  --fb-fill: var(--ink);
  --fb-fill-text: var(--paper);
  --fb-tint: rgba(25, 22, 20, 0.06);
  border-color: var(--line);
  color: var(--ink-soft);
}

.archive-page .filter-button:hover,
.archive-page .filter-button:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
}

.archive-page .filter-button.is-active {
  border-color: var(--ink);
  background-color: var(--ink);
  color: var(--paper);
}

/* ============================================================
   Motion system
   ============================================================ */

/* --- Scroll reveal: a slow, settled rise (with optional stagger) --- */
.reveal {
  opacity: 1;
  transform: translateY(26px);
  transition:
    opacity 900ms var(--ease-out),
    transform 1100ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Images framed inside a reveal block ease out of a slight zoom as they enter */
.reveal img {
  transform: scale(1.045);
}

.reveal.is-visible img {
  transform: scale(1);
}

/* --- Header + nav settle in on first paint --- */
.brand-mark,
.nav-links {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 900ms var(--ease-out) 200ms,
    transform 900ms var(--ease-out) 200ms;
}

.is-loaded .brand-mark,
.is-loaded .nav-links {
  opacity: 1;
  transform: none;
}

/* --- Hero: image fades up under a slow Ken Burns drift --- */
.hero-media {
  opacity: 0;
  transition: opacity 1700ms var(--ease-out);
}

.is-loaded .hero-media {
  opacity: 1;
}

.hero-media img {
  animation: heroDrift 30s ease-in-out 700ms infinite alternate both;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

/* --- Hero copy rises in sequence once the page is ready --- */
.hero-content > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1200ms var(--ease-out),
    transform 1200ms var(--ease-out);
}

.is-loaded .hero-content > * {
  opacity: 1;
  transform: none;
}

.is-loaded .hero-content > .eyebrow {
  transition-delay: 300ms;
}

.is-loaded .hero-content > h1 {
  transition-delay: 480ms;
}

.is-loaded .hero-content > .hero-line {
  transition-delay: 760ms;
}

.is-loaded .hero-content > .hero-copy {
  transition-delay: 980ms;
}

.is-loaded .hero-content > .hero-actions {
  transition-delay: 1180ms;
}

/* --- Editorial inner pages: first-screen entrance --- */
.page-enter .editorial-cover-copy > *,
.page-enter .brand-collab-hero-copy > *,
.page-enter .brand-collab-aside > *,
.page-enter.press-hero > *,
.page-enter .editorial-cover-image,
.page-enter .work-cover-rail,
.page-enter .archive-cover-board,
.page-enter .brand-collab-cover,
.page-enter .press-issue-index {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 1200ms var(--ease-out),
    transform 1200ms var(--ease-out);
}

.page-enter .editorial-cover-image,
.page-enter .work-cover-rail,
.page-enter .archive-cover-board,
.page-enter .brand-collab-cover {
  transform: translateY(24px) scale(0.985);
  transition-duration: 1400ms;
}

.page-enter .editorial-cover-image img,
.page-enter .work-cover-rail img,
.page-enter .archive-cover-board img,
.page-enter .brand-collab-cover img,
.page-enter .press-hero-media img {
  transform: scale(1.06);
  transition: transform 1800ms var(--ease-out), filter 900ms ease;
}

.page-enter .work-cover-rail figure,
.page-enter .archive-cover-board figure,
.page-enter .brand-collab-nav a,
.page-enter .press-issue-index a,
.page-enter .work-cover-meta span,
.page-enter .archive-cover-index a {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 1000ms var(--ease-out),
    transform 1000ms var(--ease-out);
}

.is-loaded .page-enter .editorial-cover-copy > *,
.is-loaded .page-enter .brand-collab-hero-copy > *,
.is-loaded .page-enter .brand-collab-aside > *,
.is-loaded .page-enter.press-hero > *,
.is-loaded .page-enter .editorial-cover-image,
.is-loaded .page-enter .work-cover-rail,
.is-loaded .page-enter .archive-cover-board,
.is-loaded .page-enter .brand-collab-cover,
.is-loaded .page-enter .press-issue-index {
  opacity: 1;
  transform: none;
}

.is-loaded .page-enter .editorial-cover-image img,
.is-loaded .page-enter .work-cover-rail img,
.is-loaded .page-enter .archive-cover-board img,
.is-loaded .page-enter .brand-collab-cover img,
.is-loaded .page-enter .press-hero-media img {
  transform: scale(1);
}

.is-loaded .page-enter .section-kicker {
  transition-delay: 220ms;
}

.is-loaded .page-enter h1 {
  transition-delay: 380ms;
}

.is-loaded .page-enter p:not(.section-kicker) {
  transition-delay: 620ms;
}

.is-loaded .page-enter .editorial-cover-image {
  transition-delay: 520ms;
}

.is-loaded .page-enter .work-cover-meta span,
.is-loaded .page-enter .archive-cover-index a,
.is-loaded .page-enter .brand-collab-nav a,
.is-loaded .page-enter .press-issue-index a,
.is-loaded .page-enter .work-cover-rail figure,
.is-loaded .page-enter .archive-cover-board figure {
  opacity: 1;
  transform: none;
}

.is-loaded .page-enter .work-cover-meta span:nth-child(1),
.is-loaded .page-enter .archive-cover-index a:nth-child(1),
.is-loaded .page-enter .brand-collab-nav a:nth-child(1),
.is-loaded .page-enter .press-issue-index a:nth-child(1),
.is-loaded .page-enter .work-cover-rail figure:nth-child(1),
.is-loaded .page-enter .archive-cover-board figure:nth-child(1) {
  transition-delay: 560ms;
}

.is-loaded .page-enter .work-cover-meta span:nth-child(2),
.is-loaded .page-enter .archive-cover-index a:nth-child(2),
.is-loaded .page-enter .brand-collab-nav a:nth-child(2),
.is-loaded .page-enter .press-issue-index a:nth-child(2),
.is-loaded .page-enter .work-cover-rail figure:nth-child(2),
.is-loaded .page-enter .archive-cover-board figure:nth-child(2) {
  transition-delay: 680ms;
}

.is-loaded .page-enter .work-cover-meta span:nth-child(3),
.is-loaded .page-enter .archive-cover-index a:nth-child(3),
.is-loaded .page-enter .brand-collab-nav a:nth-child(3),
.is-loaded .page-enter .press-issue-index a:nth-child(3),
.is-loaded .page-enter .work-cover-rail figure:nth-child(3),
.is-loaded .page-enter .archive-cover-board figure:nth-child(3) {
  transition-delay: 800ms;
}

/* --- Inner page section reveals: quiet layered breathing on scroll --- */
.work-chapter.reveal > .chapter-detail-header > *,
.archive-index-section.reveal > .chapter-detail-header > *,
.press-appearance-section.reveal > .chapter-detail-header > *,
.future-press-section.reveal > *,
.editorial-projects-section.reveal .research-image-strip,
.brand-collaborations-section.reveal .brand-archive-list,
.material-feature-section.reveal .material-archive-pairs,
.archive-style-section.reveal .style-archive-wall,
.work-selected-section.reveal .work-editorial-stack,
.press-appearance-section.reveal .press-appearance-grid {
  opacity: 1;
  transform: translateY(22px);
  transition:
    transform 1000ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.work-chapter.reveal > .chapter-detail-header > p,
.archive-index-section.reveal > .chapter-detail-header > p,
.press-appearance-section.reveal > .chapter-detail-header > p,
.future-press-section.reveal > p {
  transition-delay: calc(var(--reveal-delay, 0ms) + 260ms);
}

.editorial-projects-section.reveal .research-image-strip,
.brand-collaborations-section.reveal .brand-archive-list,
.material-feature-section.reveal .material-archive-pairs,
.archive-style-section.reveal .style-archive-wall,
.work-selected-section.reveal .work-editorial-stack,
.press-appearance-section.reveal .press-appearance-grid {
  transition-delay: calc(var(--reveal-delay, 0ms) + 360ms);
}

.work-chapter.reveal.is-visible > .chapter-detail-header > *,
.archive-index-section.reveal.is-visible > .chapter-detail-header > *,
.press-appearance-section.reveal.is-visible > .chapter-detail-header > *,
.future-press-section.reveal.is-visible > *,
.editorial-projects-section.reveal.is-visible .research-image-strip,
.brand-collaborations-section.reveal.is-visible .brand-archive-list,
.material-feature-section.reveal.is-visible .material-archive-pairs,
.archive-style-section.reveal.is-visible .style-archive-wall,
.work-selected-section.reveal.is-visible .work-editorial-stack,
.press-appearance-section.reveal.is-visible .press-appearance-grid {
  opacity: 1;
  transform: none;
}

/* --- Editorial cards reveal in layers instead of arriving as flat blocks --- */
.press-feature-card.reveal .press-feature-image,
.press-feature-card.reveal .press-feature-copy > *,
.brand-collab-study.reveal > *,
.brand-archive-row.reveal > *,
.material-archive-pair.reveal > *,
.work-story-card.reveal > div,
.style-archive-entry.reveal > div,
.press-appearance-card.reveal > div {
  opacity: 1;
  transform: translateY(18px);
  transition:
    transform 900ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}

.press-feature-card.reveal .press-feature-copy > *:nth-child(2),
.brand-collab-study.reveal > *:nth-child(2),
.brand-archive-row.reveal > *:nth-child(2),
.material-archive-pair.reveal > *:nth-child(2) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 250ms);
}

.press-feature-card.reveal .press-feature-copy > *:nth-child(3),
.brand-collab-study.reveal > *:nth-child(3),
.brand-archive-row.reveal > *:nth-child(3),
.material-archive-pair.reveal > *:nth-child(3) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 340ms);
}

.press-feature-card.reveal .press-feature-copy > *:nth-child(4),
.brand-archive-row.reveal > *:nth-child(4) {
  transition-delay: calc(var(--reveal-delay, 0ms) + 430ms);
}

.press-feature-card.reveal.is-visible .press-feature-image,
.press-feature-card.reveal.is-visible .press-feature-copy > *,
.brand-collab-study.reveal.is-visible > *,
.brand-archive-row.reveal.is-visible > *,
.material-archive-pair.reveal.is-visible > *,
.work-story-card.reveal.is-visible > div,
.style-archive-entry.reveal.is-visible > div,
.press-appearance-card.reveal.is-visible > div {
  opacity: 1;
  transform: none;
}

.press-appearance-card.reveal img {
  transform: scale(1.075);
  transition: transform 1400ms var(--ease-out), filter 800ms ease;
}

.press-appearance-card.reveal.is-visible img {
  transform: scale(1);
}

/* Keep image-card hover movement consistent after reveal animations settle. */
.intro-grid figure:hover img,
.gallery-grid figure:hover img,
.about-image:hover img,
.photo-card:hover img,
.material-card:hover .material-image img,
.texture-item:hover img,
.chapter-photo-card:hover img {
  transform: scale(var(--image-hover-scale, 1.018));
}

.intro-grid .full-body-shot img,
.photo-card.full-body img,
.chapter-photo-card.full-body img {
  object-position: var(--object-position, 50% 76%);
  transform: scale(var(--image-scale, 1.001));
}

.gallery-grid .full-body-shot img {
  object-position: var(--object-position, 50% 76%);
  transform: scale(var(--image-scale, 1.055));
}

.gallery-grid figure:hover img {
  transform: scale(var(--image-hover-scale, 1.055));
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 16px 22px;
  }

  .nav-links {
    gap: 13px;
    font-size: 12px;
    letter-spacing: 0.01em;
    flex-shrink: 0;
    overflow-x: visible;
    padding-bottom: 0;
  }

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

  .hero-line {
    font-size: 32px;
  }

  .principles,
  .method-grid,
  .material-grid,
  .editorial-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 86px 0;
  }

  .intro,
  .style-lead,
  .material-copy,
  .about,
  .archive-section,
  .archive-hero,
  .moodboard-heading,
  .archive-teaser,
  .chapter-detail-header {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .intro-grid {
    grid-column: auto;
  }

  .intro-copy h2,
  .style-lead h2,
  .material-copy h2,
  .gallery-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: 42px;
  }

  .gallery-grid {
    --gallery-gap: 14px;
  }

  .gallery-grid figure {
    flex-basis: min(72vw, 420px);
  }

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

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

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

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

@media (max-width: 680px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 18px 12px;
  }

  .brand-mark {
    font-size: 16px;
  }

  .nav-links {
    max-width: none;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), rgba(0, 0, 0, 0) 100%);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 10, 9, 0.78), rgba(13, 10, 9, 0.22)),
      linear-gradient(180deg, rgba(13, 10, 9, 0.34), rgba(13, 10, 9, 0.12) 42%, rgba(13, 10, 9, 0.74));
  }

  .hero-content {
    min-height: 92vh;
    width: min(100% - 36px, var(--max));
    padding-top: 132px;
  }

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

  .hero-line {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .section,
  .gallery-heading,
  .gallery-grid,
  .archive-teaser,
  .photo-wall-wrap,
  .contact-inner,
  .archive-hero,
  .moodboard-section,
  .chapter-section,
  .chapter-detail-section {
    width: min(100% - 36px, var(--max));
  }

  .section,
  .gallery-band {
    padding: 72px 0;
  }

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

  .intro-grid .offset {
    margin-top: 0;
  }

  .intro-copy h2,
  .style-lead h2,
  .material-copy h2,
  .gallery-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: 34px;
  }

  .editorial-row {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .method-card {
    min-height: 142px;
    padding: 16px 14px;
  }

  .method-card:nth-child(3) {
    grid-column: 1 / span 2;
    min-height: 126px;
  }

  .method-card span {
    font-size: 19px;
  }

  .method-card h3 {
    margin-top: 34px;
    font-size: 25px;
    line-height: 1;
  }

  .method-card p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.38;
  }

  .style-language {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .style-lead {
    gap: 24px;
  }

  .style-lead h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .style-lead p {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.62;
  }

  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }

  .principle {
    min-height: 188px;
    padding: 18px 15px;
  }

  .principle span {
    font-size: 20px;
  }

  .principle h3 {
    margin-top: 42px;
    font-size: 22px;
    line-height: 1.03;
  }

  .principle p {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.42;
  }

  .material-grid,
  .campaign-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-card {
    min-height: auto;
    padding: 8px;
  }

  .material-image {
    margin-bottom: 14px;
  }

  .material-card span {
    font-size: 19px;
  }

  .material-card h3 {
    margin-top: 8px;
    font-size: 22px;
  }

  .material-card p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.5;
  }

  .campaign-preview {
    width: min(100% - 36px, var(--max));
    margin-top: 40px;
    padding: 26px 0;
  }

  .campaign-preview-card {
    min-height: 148px;
    padding: 15px;
  }

  .campaign-preview-number {
    font-size: 18px;
  }

  .campaign-preview-card h4 {
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1;
  }

  .campaign-preview-card p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.35;
  }

  .gallery-grid {
    --gallery-gap: 12px;
    width: min(100% - 28px, var(--max));
    margin-top: 28px;
    padding-bottom: 10px;
  }

  .gallery-grid figure {
    flex-basis: min(82vw, 340px);
  }

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

  .gallery-heading,
  .archive-teaser,
  .photo-wall-header,
  .archive-hero {
    display: block;
  }

  .work-cover-rail,
  .archive-cover-board {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }

  .work-cover-main,
  .archive-cover-primary {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 320px;
  }

  .work-cover-meta,
  .archive-cover-index {
    margin-top: 30px;
  }

  .press-issue-index {
    margin-top: 28px;
  }

  .press-feature-image {
    min-height: 420px;
  }

  .archive-section .archive-teaser-links {
    justify-content: flex-start;
    margin: 28px 0 0;
  }

  .archive-section {
    display: block;
    width: 100%;
  }

  .archive-section > .button {
    width: 100%;
    margin-top: 24px;
  }

  .editorial-page {
    padding: 96px 18px 72px;
  }

  .editorial-hero,
  .editorial-feature-card,
  .editorial-feature-card.is-reversed,
  .brand-editorial-item,
  .archive-entry-grid,
  .archive-pairing-grid {
    grid-template-columns: 1fr;
  }

  .editorial-feature-card.is-reversed figure {
    order: initial;
  }

  .editorial-feature-card figure {
    aspect-ratio: 3 / 4;
  }

  .brand-editorial-item {
    gap: 10px;
  }

  .archive-entry-grid,
  .archive-pairing-grid {
    gap: 1px;
  }

  .editorial-cover,
  .work-cover,
  .archive-cover,
  .press-hero,
  .press-feature-card,
  .press-feature-card.is-reversed,
  .future-press-section,
  .work-editorial-stack,
  .style-archive-wall,
  .material-archive-pair,
  .research-image-strip,
  .brand-archive-row {
    grid-template-columns: 1fr;
  }

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

  .work-cover,
  .archive-cover {
    gap: 34px;
  }

  .work-cover .editorial-cover-copy,
  .archive-cover .editorial-cover-copy {
    border-left: 0;
    padding-left: 0;
  }

  .work-cover-rail,
  .archive-cover-board {
    min-height: 520px;
  }

  .press-feature-card.is-reversed .press-feature-image {
    order: initial;
  }

  .press-feature-image {
    min-height: 520px;
  }

  .work-story-card,
  .style-archive-entry,
  .style-archive-entry.is-large,
  .research-image-strip figure {
    min-height: 420px;
  }

  .brand-archive-row img {
    width: 100%;
    max-height: 320px;
  }

  .archive-page {
    padding-top: 96px;
  }

  .archive-hero {
    padding: 36px 0 28px;
  }

  .archive-hero h1 {
    font-size: 40px;
  }

  .archive-hero p:last-child {
    margin-top: 22px;
  }

  .moodboard-section,
  .chapter-section {
    padding-top: 56px;
  }

  .moodboard-heading {
    display: block;
  }

  .moodboard-heading h2 {
    margin-top: 12px;
    font-size: 34px;
  }

  .moodboard-grid,
  .chapter-grid,
  .chapter-card {
    grid-template-columns: 1fr;
  }

  .mood-card {
    min-height: auto;
    padding: 22px;
  }

  .material-card {
    min-height: auto;
  }

  .swatch-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .chapter-card img {
    min-height: auto;
    aspect-ratio: 3 / 4;
  }

  .chapter-detail-section {
    padding-top: 64px;
  }

  .chapter-detail-header {
    display: block;
  }

  .chapter-detail-header h2 {
    font-size: 36px;
  }

  .chapter-detail-header p {
    margin-top: 18px;
  }

  .chapter-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .filter-controls {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .editorial-row img {
    min-height: 300px;
  }

  .site-footer {
    display: block;
    padding: 22px 18px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .swatch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .hero-content > *,
  .page-enter .editorial-cover-copy > *,
  .page-enter.press-hero > *,
  .page-enter .editorial-cover-image,
  .page-enter .work-cover-rail,
  .page-enter .archive-cover-board,
  .page-enter .press-issue-index,
  .page-enter .work-cover-rail figure,
  .page-enter .archive-cover-board figure,
  .page-enter .press-issue-index a,
  .page-enter .work-cover-meta span,
  .page-enter .archive-cover-index a,
  .work-chapter.reveal > .chapter-detail-header > *,
  .archive-index-section.reveal > .chapter-detail-header > *,
  .press-appearance-section.reveal > .chapter-detail-header > *,
  .future-press-section.reveal > *,
  .editorial-projects-section.reveal .research-image-strip,
  .brand-collaborations-section.reveal .brand-archive-list,
  .material-feature-section.reveal .material-archive-pairs,
  .archive-style-section.reveal .style-archive-wall,
  .work-selected-section.reveal .work-editorial-stack,
  .press-appearance-section.reveal .press-appearance-grid,
  .press-feature-card.reveal .press-feature-image,
  .press-feature-card.reveal .press-feature-copy > *,
  .brand-archive-row.reveal > *,
  .material-archive-pair.reveal > *,
  .work-story-card.reveal > div,
  .style-archive-entry.reveal > div,
  .press-appearance-card.reveal > div,
  .brand-mark,
  .nav-links,
  .hero-media,
  .photo-card,
  .gallery-grid figcaption {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal img,
  .page-enter .editorial-cover-image img,
  .page-enter .work-cover-rail img,
  .page-enter .archive-cover-board img,
  .page-enter .press-hero-media img,
  .press-appearance-card.reveal img,
  .hero-media img {
    transform: none !important;
  }
}

.campaign-preview {
  display: block;
  width: min(100% - 48px, var(--max));
  margin: 52px auto 0;
  border-top: 1px solid rgba(243, 240, 234, 0.16);
  border-bottom: 1px solid rgba(243, 240, 234, 0.16);
  padding: 30px 0;
  color: var(--paper);
}

.campaign-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.campaign-preview .section-kicker {
  color: var(--stone);
}

.campaign-preview h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.campaign-preview-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(243, 240, 234, 0.24);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(243, 240, 234, 0.78);
  font-size: 12px;
  transition:
    transform 260ms var(--ease-out),
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.campaign-preview-link:hover,
.campaign-preview-link:focus-visible {
  border-color: var(--hover-brown);
  background: transparent;
  color: var(--hover-brown);
  outline: 0;
  transform: translateY(-1px) scale(1.01);
}

.gallery-band .campaign-preview-link:hover,
.gallery-band .campaign-preview-link:focus-visible {
  border-color: var(--hover-brown-on-dark);
  background: rgba(164, 150, 141, 0.04);
  color: rgba(243, 240, 234, 0.78);
}

.campaign-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(243, 240, 234, 0.14);
  border-left: 1px solid rgba(243, 240, 234, 0.14);
}

.campaign-preview-card {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid rgba(243, 240, 234, 0.14);
  border-bottom: 1px solid rgba(243, 240, 234, 0.14);
  padding: 20px;
  background: transparent;
  color: var(--paper);
  transition: none;
}

.campaign-preview-card::before {
  position: absolute;
  inset: -2px;
  z-index: -2;
  background-image: var(--campaign-preview-image);
  background-position: var(--campaign-preview-position, 50% 50%);
  background-size: cover;
  content: "";
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.02);
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.campaign-preview-card::after {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.24), rgba(10, 8, 7, 0.42) 48%, rgba(10, 8, 7, 0.84)),
    linear-gradient(90deg, rgba(10, 8, 7, 0.58), rgba(10, 8, 7, 0.12));
  content: "";
}

.campaign-preview-card:nth-child(1) {
  --campaign-preview-image: url("assets/images/curated/new-campaigns/valentino-fragrance-flatlay-full.jpg");
  --campaign-preview-position: 50% 54%;
}

.campaign-preview-card:nth-child(2) {
  --campaign-preview-image: url("assets/images/curated/new-campaigns/ysl-beauty-leather-visible.jpg");
  --campaign-preview-position: 50% 52%;
}

.campaign-preview-card:nth-child(3) {
  --campaign-preview-image: url("assets/images/curated/new-campaigns/charles-keith-column-walk.jpg");
  --campaign-preview-position: 50% 58%;
}

.campaign-preview-card:nth-child(4) {
  --campaign-preview-image: url("assets/images/curated/new-campaigns/le-tanneur-bag-boots-reel.jpg");
  --campaign-preview-position: 50% 56%;
}

.campaign-preview-card:hover,
.campaign-preview-card:focus-visible {
  background: transparent;
  transform: none;
}

.campaign-preview-card:hover::before,
.campaign-preview-card:focus-visible::before {
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.055);
}

.campaign-preview-number {
  color: rgba(243, 240, 234, 0.78);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.campaign-preview-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 0.98;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.campaign-preview-card p {
  margin: 8px 0 0;
  color: rgba(243, 240, 234, 0.7);
  font-size: 13px;
}

.editorial-page {
  min-height: 100vh;
  padding: 118px 34px 90px;
  background:
    linear-gradient(180deg, var(--paper) 0%, #ebe6dd 42%, var(--paper) 100%);
  color: var(--ink);
}

.press-index-page {
  padding-top: 0;
}

.editorial-hero,
.work-chapter,
.archive-index-section {
  max-width: var(--max);
  margin: 0 auto;
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 46px;
}

.editorial-hero h1,
.work-chapter h2,
.archive-index-section h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.editorial-hero p,
.work-chapter > .chapter-detail-header > p,
.archive-index-section > .chapter-detail-header > p {
  color: rgba(25, 22, 20, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.work-chapter,
.archive-index-section {
  padding: clamp(68px, 8vw, 112px) 0 0;
}

.work-chapter > .chapter-detail-header,
.archive-index-section > .chapter-detail-header {
  border-top: 1px solid rgba(25, 22, 20, 0.14);
  padding-top: 28px;
}

.editorial-feature-list {
  display: grid;
  gap: 54px;
  margin-top: 40px;
}

.editorial-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.editorial-feature-card.is-reversed {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.editorial-feature-card.is-reversed figure {
  order: 2;
}

.editorial-feature-card figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.editorial-feature-card img,
.archive-entry-card img,
.archive-pairing-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.editorial-feature-card span,
.brand-editorial-item span,
.archive-entry-card span,
.archive-pairing-card span,
.research-placeholder span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-feature-card h3,
.brand-editorial-item h3,
.archive-entry-card h3,
.archive-pairing-card h3 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
}

.editorial-feature-card p,
.brand-editorial-item p,
.archive-entry-card p {
  max-width: 440px;
  color: rgba(25, 22, 20, 0.66);
  line-height: 1.75;
}

.editorial-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-meta-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(25, 22, 20, 0.66);
  font-size: 12px;
}

.brand-editorial-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.brand-editorial-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.brand-editorial-item h3 {
  margin: 0;
}

.brand-editorial-item p {
  margin: 0;
}

.archive-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.archive-entry-card {
  background: var(--paper);
}

.archive-entry-card img {
  aspect-ratio: 3 / 4;
}

.archive-entry-card div {
  padding: 20px;
}

.archive-pairing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.archive-pairing-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
}

.archive-pairing-card img {
  aspect-ratio: 4 / 5;
}

.archive-pairing-card div {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding: 20px;
}

.research-placeholder {
  min-height: 300px;
  margin-top: 38px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  color: rgba(25, 22, 20, 0.54);
  text-align: center;
}

.research-placeholder p {
  margin: 10px 0 0;
}

.editorial-cover {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(38px, 7vw, 72px);
}

.editorial-cover-copy h1 {
  max-width: 720px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}

.editorial-cover-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(25, 22, 20, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.editorial-cover-image {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 34px 90px rgba(25, 22, 20, 0.16);
}

.editorial-cover-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  filter: saturate(0.92) contrast(1.03);
}

.archive-cover .editorial-cover-image img {
  object-position: 50% 72%;
}

.work-cover {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(32px, 5vw, 70px);
}

.work-cover .editorial-cover-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.work-cover .editorial-cover-copy h1 {
  font-size: clamp(44px, 5.1vw, 70px);
}

.work-cover-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.work-cover-meta span {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: rgba(25, 22, 20, 0.68);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-cover-rail {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(150px, 0.48fr);
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  min-height: clamp(480px, 58vw, 660px);
  background: rgba(25, 22, 20, 0.16);
  box-shadow: 0 34px 90px rgba(25, 22, 20, 0.14);
}

.work-cover-rail figure,
.archive-cover-board figure {
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.work-cover-rail img,
.archive-cover-board img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.work-cover-main {
  grid-row: 1 / span 2;
}

.work-cover-main img {
  object-position: 50% 70%;
}

.work-cover-rail figure:nth-child(2) img {
  object-position: 50% 58%;
}

.work-cover-rail figure:nth-child(3) img {
  object-position: 56% 54%;
}

.archive-cover {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  align-items: stretch;
}

.archive-cover .editorial-cover-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 34px);
}

.archive-cover-index {
  display: grid;
  margin-top: clamp(40px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.archive-cover-index a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  color: rgba(25, 22, 20, 0.72);
  font-size: 13px;
  transition: color 240ms ease, transform 320ms var(--ease-out);
}

.archive-cover-index a:hover,
.archive-cover-index a:focus-visible {
  color: var(--hover-brown);
  outline: 0;
  transform: translateX(3px);
}

.archive-cover-index span {
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
}

.archive-cover-board {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  min-height: clamp(500px, 58vw, 680px);
  background: rgba(25, 22, 20, 0.14);
  box-shadow: 0 34px 90px rgba(25, 22, 20, 0.12);
}

.archive-cover-primary {
  grid-row: 1 / span 2;
}

.archive-cover-primary img {
  object-position: var(--object-position, 50% 70%);
  transform: scale(var(--image-scale, 1));
}

.archive-cover-board figure:nth-child(2) img {
  object-position: 50% 50%;
  filter: none;
}

.archive-cover-board figure:nth-child(3) img {
  object-position: 52% 44%;
}

.work-editorial-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 0;
  background: transparent;
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.08);
}

.work-story-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  contain: layout paint;
  transform: translateZ(0);
}

.work-story-card:not(:last-child)::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: rgba(243, 240, 234, 0.18);
  content: "";
  pointer-events: none;
}

.work-story-card figure {
  position: absolute;
  inset: -6px;
  margin: 0;
  overflow: hidden;
  backface-visibility: hidden;
}

.work-story-card img {
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 74%);
  filter: none;
  transform: scale(1.012);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 1100ms var(--ease-out), filter 800ms ease;
}

.work-story-card::after {
  position: absolute;
  inset: -6px;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.08), rgba(10, 8, 7, 0.84)),
    linear-gradient(90deg, rgba(10, 8, 7, 0.5), rgba(10, 8, 7, 0.04));
  content: "";
  pointer-events: none;
}

.work-story-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 26px;
  left: 24px;
}

.work-story-card span,
.brand-archive-row span,
.style-archive-entry span,
.material-archive-pair span {
  color: rgba(243, 240, 234, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-story-card h3 {
  max-width: 360px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 0.98;
}

.work-story-card p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(243, 240, 234, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.work-story-card:hover img {
  transform: scale(1.045);
  filter: none;
}

.brand-archive-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  background: rgba(243, 240, 234, 0.4);
}

.brand-archive-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(180px, 0.42fr) 148px;
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.brand-archive-row span {
  color: var(--clay);
}

.brand-archive-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  line-height: 0.98;
}

.brand-archive-row p {
  margin: 0;
  color: rgba(25, 22, 20, 0.62);
  font-size: 13px;
}

.brand-archive-row img {
  width: 148px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
  opacity: 0.82;
  transition: opacity 220ms ease, transform 700ms var(--ease-out);
}

.brand-archive-row:hover img,
.brand-archive-row:focus-visible img {
  opacity: 1;
  transform: scale(1.018);
}

.style-archive-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.08);
}

.style-archive-entry {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.style-archive-entry.is-large {
  grid-row: span 2;
  min-height: 640px;
}

.style-archive-entry img {
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 74%);
  filter: var(--image-filter, none);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
}

.style-archive-entry::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.02), rgba(10, 8, 7, 0.72));
  content: "";
}

.style-archive-entry div {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.style-archive-entry h3,
.material-archive-pair h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.04;
}

.material-archive-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(34px, 5vw, 58px);
}

.material-archive-pair {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 190px;
  gap: 0;
  height: clamp(540px, 51vw, 620px);
  min-height: 0;
  padding: clamp(8px, 1vw, 12px);
  border: 1px solid rgba(25, 22, 20, 0.16);
  background:
    linear-gradient(135deg, rgba(243, 240, 234, 0.82), rgba(225, 218, 207, 0.72));
  box-shadow: 0 18px 54px rgba(25, 22, 20, 0.08);
}

.material-archive-images {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  min-height: 0;
  align-items: stretch;
  background: transparent;
}

.material-archive-pair figure {
  position: relative;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.material-archive-pair img {
  height: 100%;
  object-fit: cover;
  filter: none;
}

.material-texture-frame img {
  filter: none;
}

.material-archive-pair:nth-child(1) .material-look-frame img {
  object-position: 56% 80%;
  transform: scale(1.46);
  transform-origin: 64% 100%;
}

.material-archive-pair:nth-child(3) .material-look-frame img {
  object-position: 60% 80%;
  transform: scale(1.4);
  transform-origin: 58% 100%;
}

.material-archive-pair:nth-child(5) .material-look-frame img {
  object-position: 50% 42%;
  transform: scale(1.06);
}

.material-archive-pair:nth-child(6) .material-look-frame img {
  object-position: 50% 58%;
  filter: none;
  transform: scale(1.04);
}

.material-archive-pair:nth-child(6) .material-texture-frame img {
  filter: none;
}

.material-archive-pair figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  background: rgba(243, 240, 234, 0.82);
  color: rgba(25, 22, 20, 0.68);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.material-archive-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(25, 22, 20, 0.12);
  background: rgba(243, 240, 234, 0.72);
  padding: clamp(20px, 2.2vw, 30px);
}

.material-archive-pair span {
  color: var(--clay);
}

.material-archive-copy h3 {
  max-width: 420px;
}

.material-archive-copy p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(25, 22, 20, 0.62);
  font-size: 13px;
  line-height: 1.58;
}

.research-image-strip {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.08);
}

.research-image-strip.is-expanded {
  grid-template-columns: 1.15fr 0.82fr 0.82fr 1fr;
}

.work-selected-section,
.archive-style-section {
  max-width: none;
  margin: clamp(72px, 8vw, 112px) -34px 0;
  padding: clamp(72px, 8vw, 112px) 34px;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.98), rgba(28, 24, 20, 0.98));
  color: var(--paper);
}

.work-selected-section > .chapter-detail-header,
.work-selected-section > .work-editorial-stack,
.archive-style-section > .chapter-detail-header,
.archive-style-section > .style-archive-wall {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.work-selected-section > .chapter-detail-header,
.archive-style-section > .chapter-detail-header {
  border-top-color: rgba(243, 240, 234, 0.18);
}

.work-selected-section .section-kicker,
.archive-style-section .section-kicker {
  color: rgba(243, 240, 234, 0.62);
}

.work-selected-section > .chapter-detail-header > p,
.archive-style-section > .chapter-detail-header > p {
  color: rgba(243, 240, 234, 0.64);
}

.work-selected-section .work-editorial-stack,
.archive-style-section .style-archive-wall {
  border-color: rgba(243, 240, 234, 0.12);
  background: rgba(243, 240, 234, 0.12);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.22);
}

.work-selected-section .work-editorial-stack {
  background: transparent;
}

.brand-collaborations-section,
.archive-index-section:nth-of-type(3),
.material-feature-section {
  max-width: none;
  margin: clamp(78px, 9vw, 124px) -34px 0;
  padding: clamp(70px, 8vw, 108px) 34px;
  background:
    linear-gradient(180deg, rgba(232, 226, 217, 0.62), rgba(243, 240, 234, 0.92));
}

.brand-collaborations-section > .chapter-detail-header,
.brand-collaborations-section > .brand-archive-list,
.archive-index-section:nth-of-type(3) > .chapter-detail-header,
.archive-index-section:nth-of-type(3) > .material-archive-pairs,
.material-feature-section > .chapter-detail-header,
.material-feature-section > .material-archive-pairs {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.material-feature-section > .chapter-detail-header {
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.5fr);
  align-items: start;
  border-top-color: rgba(25, 22, 20, 0.22);
  padding-top: 34px;
}

.material-feature-section h2 {
  max-width: 620px;
}

.material-feature-section > .chapter-detail-header > p {
  max-width: 420px;
  padding-top: 8px;
}

.press-hero {
  position: relative;
  display: flex;
  min-height: clamp(620px, 92vh, 860px);
  margin: 0 -34px;
  overflow: hidden;
  align-items: flex-end;
  color: var(--paper);
  background: var(--ink);
}

.press-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.press-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.84) 0%, rgba(8, 7, 6, 0.62) 36%, rgba(8, 7, 6, 0.18) 72%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.34) 0%, rgba(8, 7, 6, 0.08) 42%, rgba(8, 7, 6, 0.74) 100%);
  content: "";
  pointer-events: none;
}

.press-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 52%;
  filter: none;
}

.press-hero-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 68px), var(--max));
  margin: 0 auto;
  padding: 136px 0 clamp(62px, 9vw, 92px);
}

.press-hero h1 {
  max-width: 720px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  text-wrap: balance;
}

.press-hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(243, 240, 234, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.press-issue-index {
  display: grid;
  max-width: 440px;
  margin-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.press-hero .section-kicker {
  color: rgba(243, 240, 234, 0.84);
}

.press-hero .press-issue-index {
  border-top-color: rgba(243, 240, 234, 0.26);
}

.press-issue-index a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--ink);
  transition: color 240ms ease, transform 320ms var(--ease-out);
}

.press-hero .press-issue-index a {
  border-bottom-color: rgba(243, 240, 234, 0.24);
  color: var(--paper);
}

.press-issue-index a:hover,
.press-issue-index a:focus-visible {
  color: var(--hover-brown);
  outline: 0;
  transform: translateX(3px);
}

.press-hero .press-issue-index a:hover,
.press-hero .press-issue-index a:focus-visible {
  color: #ffffff;
}

.press-issue-index span {
  grid-row: 1 / span 2;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.press-hero .press-issue-index span {
  color: rgba(220, 194, 162, 0.9);
}

.press-issue-index strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.press-issue-index em {
  color: rgba(25, 22, 20, 0.6);
  font-size: 12px;
  font-style: normal;
}

.press-hero .press-issue-index em {
  color: rgba(243, 240, 234, 0.62);
}

.press-feature-list {
  display: grid;
  gap: 1px;
  max-width: var(--max);
  margin: clamp(70px, 9vw, 118px) auto 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(25, 22, 20, 0.12);
}

.press-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.82fr);
  gap: 1px;
  align-items: stretch;
  background: rgba(243, 240, 234, 0.78);
}

.press-feature-card.is-reversed {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.74fr);
}

.press-feature-card.is-reversed .press-feature-image {
  order: 2;
}

.press-feature-image {
  margin: 0;
  min-height: clamp(440px, 48vw, 620px);
  overflow: hidden;
  background: var(--stone);
}

.press-feature-image img {
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 72%);
  filter: saturate(0.92) contrast(1.03);
}

.press-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 5vw, 58px);
}

.press-feature-copy span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-feature-copy h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.96;
}

.press-feature-copy p {
  margin: 20px 0 0;
  color: rgba(25, 22, 20, 0.62);
}

.press-feature-copy .button.primary {
  margin-top: 28px;
  --btn-bg: var(--paper);
  --btn-fill: var(--ink);
  --btn-fill-text: var(--paper);
  --btn-tint: var(--paper-deep);
  border-color: rgba(25, 22, 20, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(25, 22, 20, 0.08);
  transform: translateZ(0);
  transition: none;
}

.press-feature-copy .button.primary:hover,
.press-feature-copy .button.primary:focus-visible {
  border-color: var(--hover-brown);
  background-color: var(--hover-brown);
  color: var(--paper);
  letter-spacing: 0.13em;
  outline: 0;
  box-shadow:
    0 14px 34px rgba(25, 22, 20, 0.12),
    inset 0 0 0 1px rgba(243, 240, 234, 0.12);
  transform: none;
}

.press-feature-copy .button.primary:active {
  background-color: var(--hover-brown);
  border-color: var(--hover-brown);
  color: var(--paper);
  letter-spacing: 0.13em;
  transform: none;
}

.press-appearance-section {
  max-width: none;
  margin: clamp(82px, 10vw, 136px) -34px 0;
  padding: clamp(70px, 8vw, 108px) 34px;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.98), rgba(28, 24, 20, 0.98));
  color: var(--paper);
}

.press-appearance-section > .chapter-detail-header,
.press-appearance-section > .press-appearance-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.press-appearance-section > .chapter-detail-header {
  border-top-color: rgba(243, 240, 234, 0.18);
}

.press-appearance-section .section-kicker,
.press-appearance-section > .chapter-detail-header > p {
  color: rgba(243, 240, 234, 0.64);
}

.press-appearance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(243, 240, 234, 0.14);
  background: rgba(243, 240, 234, 0.14);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.24);
}

.press-appearance-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
}

.press-appearance-card.is-featured {
  min-height: 620px;
}

.press-appearance-card img {
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 56%);
  filter: none;
  transition: transform 900ms var(--ease-out), filter 700ms ease;
}

.press-appearance-card:nth-child(2) img {
  object-position: 50% 44%;
}

.press-appearance-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.04), rgba(10, 8, 7, 0.72));
  content: "";
}

.press-appearance-card div {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.press-appearance-card span {
  color: rgba(243, 240, 234, 0.66);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-appearance-card h3 {
  max-width: 420px;
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 500;
  line-height: 0.98;
}

.press-appearance-card:hover img {
  transform: scale(1.018);
  filter: none;
}

.future-press-section {
  display: grid;
  max-width: var(--max);
  margin: clamp(86px, 10vw, 140px) auto 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.56fr);
  gap: clamp(28px, 6vw, 78px);
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.future-press-section h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 500;
  line-height: 0.98;
}

.future-press-section > p {
  color: rgba(25, 22, 20, 0.64);
  line-height: 1.7;
}

.research-image-strip figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
}

.research-image-strip img {
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
  filter: none;
}

.campaigns-main,
.campaign-detail-main {
  min-height: 100vh;
  padding: 118px 34px 90px;
  background:
    linear-gradient(180deg, var(--paper) 0%, #ebe6dd 42%, var(--paper) 100%);
  color: var(--ink);
}

.brand-collab-page {
  padding-top: 118px;
}

.brand-collab-shell {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.brand-collab-aside {
  position: sticky;
  top: 94px;
  align-self: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.brand-collab-count {
  max-width: 220px;
  margin: 14px 0 22px;
  color: rgba(25, 22, 20, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.brand-collab-hero,
.brand-collab-nav,
.brand-collab-section {
  margin-right: auto;
  margin-left: auto;
}

.brand-collab-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.76fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(44px, 6vw, 70px);
}

.brand-collab-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7.4vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  text-wrap: balance;
}

.brand-collab-hero p:not(.section-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(25, 22, 20, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.brand-collab-cover {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  min-height: clamp(430px, 48vw, 620px);
  overflow: hidden;
  background: rgba(25, 22, 20, 0.14);
  box-shadow: 0 34px 90px rgba(25, 22, 20, 0.12);
}

.brand-collab-cover figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.brand-collab-cover .is-large {
  grid-row: 1 / span 2;
}

.brand-collab-cover img,
.brand-study-images img {
  height: 100%;
  object-fit: var(--object-fit, cover);
  object-position: var(--object-position, 50% 50%);
  filter: none;
  transform: scale(var(--image-scale, 1));
  transition: transform 1100ms var(--ease-out);
}

.brand-collab-cover .is-large img {
  object-position: 50% 68%;
}

.brand-collab-cover figure:nth-child(2) img {
  object-position: 50% 58%;
}

.brand-collab-cover figure:nth-child(3) img {
  object-position: 50% 50%;
}

.brand-collab-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-height: calc(100vh - 210px);
  margin-top: 0;
  overflow: hidden;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  scrollbar-width: thin;
}

.brand-collab-nav a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  min-height: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--ink);
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 420ms var(--ease-out);
}

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

.brand-collab-nav a:hover,
.brand-collab-nav a:focus-visible {
  background: rgba(25, 22, 20, 0.035);
  color: var(--hover-brown);
  outline: 0;
  transform: translateX(2px);
}

.brand-collab-nav span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.brand-collab-nav strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: 500;
  line-height: 0.98;
}

.brand-collab-nav em {
  grid-column: 2;
  justify-self: start;
  color: rgba(25, 22, 20, 0.56);
  font-size: 11px;
  font-style: normal;
}

.brand-collab-section {
  display: grid;
  gap: clamp(46px, 6vw, 82px);
  width: 100%;
  margin-top: 0;
}

.brand-collab-study {
  display: grid;
  grid-template-columns: 52px minmax(248px, 0.56fr) minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 46px);
  align-items: stretch;
  scroll-margin-top: 96px;
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 34px);
}

.brand-study-index {
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-style: italic;
  line-height: 0.92;
}

.brand-study-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4px;
}

.brand-study-copy h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(36px, 3.9vw, 54px);
  overflow-wrap: break-word;
  font-weight: 500;
  line-height: 0.94;
}

.brand-study-copy p:not(.section-kicker) {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(25, 22, 20, 0.66);
  font-size: 14px;
  line-height: 1.78;
}

.brand-study-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.brand-study-copy li {
  border: 1px solid rgba(25, 22, 20, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(25, 22, 20, 0.58);
  font-size: 11px;
}

.brand-study-images {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: 1px;
  height: clamp(390px, 42vw, 540px);
  min-height: 0;
  overflow: hidden;
  background: rgba(25, 22, 20, 0.14);
  box-shadow: 0 20px 56px rgba(25, 22, 20, 0.08);
}

.brand-study-images.is-triptych {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.74fr);
  grid-template-rows: 1fr 1fr;
}

.brand-study-images.is-quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.brand-study-images.is-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-study-images.is-single {
  grid-template-columns: 1fr;
}

.valentino-study-images {
  height: clamp(430px, 44vw, 560px);
}

.ysl-study-images {
  height: clamp(430px, 44vw, 560px);
}

.vehla-study-images {
  height: clamp(300px, 30vw, 390px);
}

.lunya-study-images {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: auto;
  align-self: start;
  align-items: start;
}

.commense-study-images {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: auto;
  align-self: start;
  align-items: start;
}

.lunya-study-images figure,
.commense-study-images figure {
  aspect-ratio: 52 / 100;
}

.merit-study-images {
  height: clamp(380px, 40vw, 520px);
}

.brand-study-images figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.brand-study-images figure::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(243, 240, 234, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) 50% 50% / 12px 1px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 50% / 1px 12px no-repeat,
    rgba(10, 8, 7, 0.34);
  box-shadow: 0 10px 26px rgba(10, 8, 7, 0.2);
  color: rgba(243, 240, 234, 0.92);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    background-color 240ms ease;
}

.brand-study-images figure:hover::after,
.brand-study-images figure:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.brand-study-images figure.is-zoomable {
  cursor: zoom-in;
}

#valentino .brand-study-images figure {
  background: #d0c4b4;
}

#lunya .brand-study-images figure {
  background: #e3ddd4;
}

/* Tall-portrait studies: copy aligns to the top of the image band, not the
   bottom, so the brand name lines up with the start of the photos. */
#lunya .brand-study-copy,
#commense .brand-study-copy {
  justify-content: flex-start;
}

#merit .brand-study-images figure {
  background: #cdc9c1;
}

.brand-study-images.is-triptych .is-tall {
  grid-row: 1 / span 2;
}

.brand-study-images.is-single .is-tall {
  grid-row: auto;
}

.brand-study-images figure:hover img {
  transform: scale(1.024);
}

#valentino .brand-study-images .is-tall img,
#vehla .brand-study-images .is-tall img {
  object-position: 50% 72%;
}

#ysl-beauty .brand-study-images .is-tall img {
  object-position: 50% 52%;
}

#charles-keith .brand-study-images .is-tall img {
  object-position: 48% 70%;
  transform: scale(1.12);
}

#le-tanneur .brand-study-images .is-tall img {
  object-position: 50% 64%;
}

#perfect-corset .brand-study-images .is-tall img {
  object-position: 50% 30%;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(12, 10, 9, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  width: auto;
  max-width: min(94vw, 1180px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: scale(0.982);
  transition: transform 260ms var(--ease-out);
}

.image-lightbox.is-open img {
  transform: scale(1);
}

.image-lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(243, 240, 234, 0.36);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(10, 8, 7, 0.34);
  cursor: pointer;
}

.image-lightbox button:focus-visible {
  outline: 2px solid rgba(243, 240, 234, 0.76);
  outline-offset: 3px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.return-link {
  display: inline-flex;
  margin: 0 0 36px;
  border-bottom: 1px solid rgba(25, 22, 20, 0.3);
  padding-bottom: 5px;
  color: rgba(25, 22, 20, 0.62);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 260ms ease, border-color 260ms ease;
}

.return-link:hover,
.return-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  outline: 0;
}

.campaign-detail-hero {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 4vw, 42px);
}

.campaign-detail-copy h1 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 94px);
  font-weight: 500;
  line-height: 0.9;
}

.campaign-detail-copy > p:not(.section-kicker) {
  max-width: 390px;
  margin: 26px 0 0;
  color: rgba(25, 22, 20, 0.66);
  font-size: 14px;
  line-height: 1.78;
}

.campaign-facts {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.campaign-facts div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.campaign-facts dt {
  color: rgba(25, 22, 20, 0.48);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.campaign-facts dd {
  margin: 0;
  color: rgba(25, 22, 20, 0.68);
  font-size: 12px;
}

.campaign-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.campaign-link-row a {
  border: 1px solid rgba(25, 22, 20, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(25, 22, 20, 0.64);
  font-size: 11px;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease;
}

.campaign-link-row a:hover,
.campaign-link-row a:focus-visible {
  background: rgba(25, 22, 20, 0.045);
  color: var(--ink);
  border-color: rgba(25, 22, 20, 0.42);
  outline: 0;
}

.campaign-cover-placeholder,
.campaign-gallery-placeholder {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(25, 22, 20, 0.08);
}

.campaign-cover-placeholder {
  aspect-ratio: 1.08 / 1;
}

.campaign-cover-placeholder img,
.campaign-gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, 50% 50%);
  filter: none;
  transition: transform 1100ms var(--ease-out);
}

.campaign-cover-placeholder:hover img,
.campaign-gallery-placeholder:hover img {
  transform: scale(1.022);
}

.campaign-detail-gallery {
  display: grid;
  max-width: var(--max);
  margin: clamp(56px, 8vw, 96px) auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(25, 22, 20, 0.14);
  border: 1px solid rgba(25, 22, 20, 0.14);
}

.campaign-gallery-placeholder {
  aspect-ratio: 0.82 / 1;
  box-shadow: none;
}

.campaign-gallery-placeholder.is-wide {
  grid-column: span 2;
  aspect-ratio: 1.7 / 1;
}

@media (max-width: 980px) {
  .campaign-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-preview-card {
    min-height: 224px;
  }

  .brand-collab-shell,
  .brand-collab-study {
    grid-template-columns: 1fr;
  }

  .brand-collab-aside {
    position: static;
  }

  .brand-collab-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 260px;
    border-left: 1px solid var(--line);
  }

  .brand-collab-nav a {
    border-right: 1px solid var(--line);
    padding: 14px;
  }

  .brand-study-index {
    display: none;
  }

  .brand-study-copy {
    padding-bottom: 0;
  }

}

@media (max-width: 680px) {
  .campaign-preview {
    width: min(100% - 36px, var(--max));
  }

  .campaign-preview-head {
    display: block;
  }

  .campaign-preview-link {
    margin-top: 18px;
  }

  .brand-collab-nav,
  .brand-study-images,
  .brand-study-images.is-triptych {
    grid-template-columns: 1fr;
  }

  .campaigns-main,
  .campaign-detail-main {
    padding: 108px 18px 70px;
  }

  .campaign-detail-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .campaign-cover-placeholder {
    aspect-ratio: 0.9 / 1;
  }

  .campaign-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-gallery-placeholder,
  .campaign-gallery-placeholder.is-wide {
    grid-column: auto;
    aspect-ratio: 0.86 / 1;
  }

  .brand-collab-page {
    padding-top: 108px;
  }

  .brand-collab-shell {
    gap: 34px;
  }

  .brand-collab-cover,
  .brand-study-images,
  .brand-study-images.is-triptych {
    min-height: auto;
  }

  .brand-collab-cover {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .brand-collab-cover .is-large {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 340px;
  }

  .brand-collab-nav a {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 18px 0;
    border-right: 0;
  }

  .brand-collab-nav strong {
    font-size: clamp(34px, 12vw, 48px);
  }

  .brand-collab-nav em {
    grid-column: 2;
    justify-self: start;
  }

  .brand-collab-study {
    gap: 22px;
    scroll-margin-top: 82px;
    padding-top: 28px;
  }

  .brand-study-copy p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
  }

  .brand-study-copy ul {
    gap: 7px;
    margin-top: 22px;
  }

  .brand-study-copy li {
    padding: 7px 10px;
    font-size: 10px;
  }

  .brand-study-images,
  .brand-study-images.is-triptych {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .brand-study-images figure,
  .brand-study-images.is-triptych figure,
  .brand-study-images.is-triptych .is-tall {
    grid-row: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(25, 22, 20, 0.12);
    background: var(--ink);
  }

  .brand-study-images figure:nth-child(2),
  .brand-study-images.is-triptych figure:nth-child(2),
  .brand-study-images.is-triptych figure:nth-child(3) {
    aspect-ratio: 5 / 4;
  }

  .vehla-study-images figure {
    aspect-ratio: 5 / 4;
  }

  .lunya-study-images,
  .commense-study-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto;
  }

  .lunya-study-images figure,
  .commense-study-images figure {
    aspect-ratio: 52 / 100 !important;
  }

  .brand-study-images img {
    height: 100%;
    object-fit: var(--object-fit, cover);
  }

  #perfect-corset .brand-study-images figure:first-child img {
    object-position: 50% 44%;
  }

  #perfect-corset .brand-study-images figure:nth-child(2) img {
    object-position: 50% 38%;
  }

  #ysl-beauty .brand-study-images figure:first-child img,
  #le-tanneur .brand-study-images figure:first-child img {
    object-position: 50% 52%;
  }

  #charles-keith .brand-study-images figure:first-child img {
    object-position: 50% 58%;
  }

  .brand-study-copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 980px) {
  .editorial-cover,
  .press-feature-card,
  .press-feature-card.is-reversed,
  .future-press-section,
  .press-appearance-grid,
  .work-editorial-stack,
  .style-archive-wall,
  .material-archive-pair,
  .research-image-strip,
  .research-image-strip.is-expanded {
    grid-template-columns: 1fr;
  }

  .brand-archive-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .brand-archive-row p,
  .brand-archive-row img {
    grid-column: 2;
  }

  .brand-archive-row img {
    width: min(100%, 260px);
  }

  .press-feature-card.is-reversed .press-feature-image {
    order: initial;
  }

  .material-feature-section > .chapter-detail-header {
    grid-template-columns: 1fr;
  }

  .material-archive-pairs {
    grid-template-columns: 1fr;
  }

  .material-archive-pair {
    grid-template-rows: minmax(0, 1fr) 176px;
    height: clamp(500px, 76vw, 620px);
    min-height: auto;
  }

  .material-archive-pair figure,
  .material-archive-copy {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .editorial-page {
    padding: 96px 18px 72px;
  }

  .press-index-page {
    padding-top: 0;
  }

  .press-hero {
    min-height: 92vh;
    margin-right: -18px;
    margin-left: -18px;
  }

  .press-hero-copy {
    width: calc(100% - 36px);
    padding: 132px 0 54px;
  }

  .press-hero-media img {
    object-position: 58% 52%;
  }

  .editorial-cover {
    gap: 28px;
  }

  .editorial-cover-copy h1 {
    font-size: 42px;
  }

  .work-chapter h2,
  .archive-index-section h2 {
    font-size: 38px;
  }

  .press-hero h1 {
    max-width: 340px;
    font-size: 40px;
    line-height: 0.98;
  }

  .press-hero p {
    margin-left: 0;
    max-width: 330px;
  }

  .work-story-card,
  .style-archive-entry,
  .style-archive-entry.is-large,
  .research-image-strip figure {
    min-height: 420px;
  }

  .material-archive-pair {
    grid-template-rows: minmax(0, 1fr) auto;
    height: auto;
    padding: 8px;
  }

  .material-archive-images {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(260px, 72vw, 360px);
  }

  .material-archive-pair figure {
    min-height: 0;
    height: 100%;
  }

  .material-archive-copy {
    min-height: auto;
    border-top: 1px solid rgba(25, 22, 20, 0.12);
    padding: 28px 22px;
  }

  .brand-collaborations-section,
  .archive-index-section:nth-of-type(3),
  .material-feature-section,
  .work-selected-section,
  .archive-style-section,
  .press-appearance-section {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .work-selected-section > .work-editorial-stack,
  .archive-style-section > .style-archive-wall {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-right: -18px;
    margin-left: -18px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 18px;
    scroll-padding-left: 18px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: translateZ(0);
    will-change: scroll-position;
  }

  .work-selected-section > .work-editorial-stack::-webkit-scrollbar,
  .archive-style-section > .style-archive-wall::-webkit-scrollbar {
    display: none;
  }

  .work-story-card,
  .style-archive-entry,
  .style-archive-entry.is-large {
    flex: 0 0 min(78vw, 340px);
    width: min(78vw, 340px);
    min-height: 360px;
    border: 0;
    contain: layout paint;
    scroll-snap-align: start;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .work-selected-section .work-story-card::before,
  .work-selected-section .work-story-card::after {
    display: none;
  }

  .work-selected-section .work-story-card img {
    filter: brightness(0.68) saturate(0.9) contrast(1.04);
    will-change: auto;
    backface-visibility: hidden;
  }

  .work-selected-section .work-story-card div {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 62px 18px 18px;
    background: linear-gradient(180deg, rgba(10, 8, 7, 0), rgba(10, 8, 7, 0.78));
    pointer-events: none;
    transform: translateZ(0);
  }

  .archive-style-section .style-archive-entry::after {
    display: none;
  }

  .archive-style-section .style-archive-entry img {
    filter: brightness(0.68) saturate(0.9) contrast(1.04);
    will-change: auto;
    backface-visibility: hidden;
  }

  .archive-style-section .style-archive-entry div {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 58px 18px 18px;
    background: linear-gradient(180deg, rgba(10, 8, 7, 0), rgba(10, 8, 7, 0.74));
    pointer-events: none;
    transform: translateZ(0);
  }

  .work-story-card h3,
  .style-archive-entry h3 {
    font-size: 27px;
  }

  .style-archive-entry img[src*="black-gown-gallery"] {
    object-position: 50% 100%;
    transform: scale(1.18);
    transform-origin: 50% 100%;
  }

  .work-story-card p {
    display: none;
  }

  .press-feature-image,
  .editorial-cover-image {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 980px) {
  .work-cover,
  .archive-cover,
  .press-hero,
  .press-feature-card,
  .press-feature-card.is-reversed,
  .future-press-section {
    grid-template-columns: 1fr;
  }

  .work-cover .editorial-cover-copy,
  .archive-cover .editorial-cover-copy {
    border-left: 0;
    padding-left: 0;
  }

  .work-cover-rail,
  .archive-cover-board {
    min-height: 520px;
  }

  .press-feature-card.is-reversed .press-feature-image {
    order: initial;
  }

  .press-feature-image {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .work-cover-rail,
  .archive-cover-board {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }

  .work-cover-main,
  .archive-cover-primary {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 320px;
  }

  .work-cover-meta,
  .archive-cover-index,
  .press-issue-index {
    margin-top: 30px;
  }

  .press-feature-image {
    min-height: 420px;
  }
}

/* ============================================================
   Mobile visual refinement: image-led pacing after the home hero
   ============================================================ */

@media (max-width: 680px) {
  :root {
    --section-pad: 76px;
  }

  .section,
  .gallery-heading,
  .contact-inner {
    width: min(100% - 32px, var(--max));
  }

  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.19em;
  }

  .intro {
    gap: 30px;
    padding-top: 68px;
  }

  .intro-copy .section-kicker {
    margin-bottom: 16px;
  }

  .intro-copy h2,
  .style-lead h2,
  .material-copy h2,
  .gallery-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.02;
  }

  .intro-copy p,
  .style-lead p,
  .material-copy p,
  .about-copy p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .about-copy p.about-platform-copy {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.58;
  }

  .about-platform-copy + .text-link {
    margin-top: 10px;
  }

  .intro-grid {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
    overflow-x: auto;
    padding: 0 16px 4px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .intro-grid::-webkit-scrollbar {
    display: none;
  }

  .intro-grid figure {
    flex: 0 0 min(78vw, 330px);
    aspect-ratio: var(--mobile-aspect, 3 / 4.35);
    scroll-snap-align: start;
  }

  .gallery-band {
    padding: 70px 0 74px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading h2 {
    margin-top: 8px;
  }

  .gallery-grid {
    width: min(100% - 18px, var(--max));
    margin-top: 26px;
    margin-left: 9px;
    padding-right: 18px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 54px), rgba(0, 0, 0, 0.5) 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 54px), rgba(0, 0, 0, 0.5) 100%);
  }

  .gallery-grid figure {
    flex-basis: min(76vw, 318px);
    aspect-ratio: 3 / 4.28;
  }

  .gallery-grid figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 11px;
    backdrop-filter: blur(8px);
  }

  .about {
    gap: 30px;
  }

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

  .style-language {
    padding-top: 70px;
    padding-bottom: 62px;
  }

  .style-lead {
    gap: 18px;
  }

  .method-grid {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    margin-right: -16px;
    margin-left: -16px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    padding: 0 16px 2px;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .method-grid::-webkit-scrollbar {
    display: none;
  }

  .method-card,
  .method-card:nth-child(3) {
    flex: 0 0 min(72vw, 302px);
    min-height: 220px;
    grid-column: auto;
    contain: layout paint;
    padding: 22px 18px;
    scroll-snap-align: start;
    transform: translateZ(0);
    transition: none;
  }

  .method-card::before {
    filter: saturate(var(--method-saturation, 0.74)) sepia(var(--method-sepia, 0)) contrast(1.04) brightness(var(--method-brightness, 0.9));
    transform: none;
  }

  .method-card:hover,
  .method-card:focus-within {
    transform: translateZ(0);
  }

  .method-card h3 {
    margin-top: 76px;
    font-size: 30px;
    line-height: 1.02;
  }

  .method-card p {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .material-notes {
    padding-top: 70px;
    padding-bottom: 68px;
  }

  .material-copy {
    gap: 16px;
    margin-bottom: 28px;
  }

  .material-grid {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    margin-left: -16px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    padding: 0 16px 4px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .material-grid::-webkit-scrollbar {
    display: none;
  }

  .material-card {
    flex: 0 0 min(80vw, 328px);
    padding: 9px 9px 18px;
    scroll-snap-align: start;
  }

  .material-image {
    aspect-ratio: 1 / 1.08;
    margin-bottom: 16px;
  }

  .material-card h3 {
    font-size: 25px;
  }

  .material-card p {
    font-size: 12.5px;
    line-height: 1.58;
  }

  .campaign-preview {
    width: min(100% - 32px, var(--max));
    margin-top: 38px;
    border-bottom: 0;
    padding: 28px 0 32px;
  }

  .campaign-preview-head {
    margin-bottom: 18px;
  }

  .campaign-preview h3 {
    font-size: 34px;
  }

  .campaign-preview-link {
    min-height: 40px;
    padding: 0 15px;
  }

  .campaign-preview-grid {
    display: flex;
    gap: 0;
    margin-right: -16px;
    margin-left: -16px;
    overflow-x: auto;
    border: 0;
    background: transparent;
    padding: 0 16px;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .campaign-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .campaign-preview-card {
    position: relative;
    flex: 0 0 min(74vw, 310px);
    min-height: 238px;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-right: 1px solid rgba(243, 240, 234, 0.14);
    padding: 16px;
    scroll-snap-align: start;
    transform: translateZ(0);
    transition: none;
  }

  .campaign-preview-card:last-child {
    border-right: 0;
  }

  .campaign-preview-card::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--campaign-preview-image);
    background-position: var(--campaign-preview-position, 50% 50%);
    background-size: cover;
    content: "";
    filter: saturate(0.88) contrast(1.02);
    transform: none;
    transition: none;
  }

  .campaign-preview-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.28), rgba(10, 8, 7, 0.42) 44%, rgba(10, 8, 7, 0.82)),
      linear-gradient(90deg, rgba(10, 8, 7, 0.62), rgba(10, 8, 7, 0.08));
    content: "";
  }

  .campaign-preview-card:hover,
  .campaign-preview-card:focus-visible,
  .campaign-preview-card:hover::before,
  .campaign-preview-card:focus-visible::before {
    filter: saturate(0.88) contrast(1.02);
    transform: translateZ(0);
  }

  .campaign-preview-card:nth-child(1) {
    --campaign-preview-image: url("assets/images/curated/new-campaigns/valentino-fragrance-flatlay-full.jpg");
    --campaign-preview-position: 50% 54%;
  }

  .campaign-preview-card:nth-child(2) {
    --campaign-preview-image: url("assets/images/curated/new-campaigns/ysl-beauty-leather-visible.jpg");
    --campaign-preview-position: 50% 52%;
  }

  .campaign-preview-card:nth-child(3) {
    --campaign-preview-image: url("assets/images/curated/new-campaigns/charles-keith-column-walk.jpg");
    --campaign-preview-position: 50% 58%;
  }

  .campaign-preview-card:nth-child(4) {
    --campaign-preview-image: url("assets/images/curated/new-campaigns/le-tanneur-bag-boots-reel.jpg");
    --campaign-preview-position: 50% 56%;
  }

  .campaign-preview-number {
    color: rgba(243, 240, 234, 0.78);
  }

  .campaign-preview-card h4 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 0.96;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  }

  .campaign-preview-card p {
    max-width: 15rem;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .archive-section {
    gap: 24px;
    padding: 58px 16px 62px;
  }

  .archive-teaser h3 {
    font-size: 34px;
  }

  .archive-teaser p {
    font-size: 13.5px;
    line-height: 1.68;
  }

  .archive-teaser-links {
    justify-content: flex-start;
    margin-top: 2px;
  }

  .contact {
    padding: 70px 0 76px;
  }

  .contact-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    padding: 22px 18px;
  }
}

@media (max-width: 680px) {
  .campaigns-main,
  .campaign-detail-main {
    padding-top: 92px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-collab-page {
    padding-top: 92px;
  }

  .brand-collab-shell {
    gap: 26px;
    min-width: 0;
  }

  .brand-collab-aside {
    min-width: 0;
    overflow: hidden;
    border-top: 1px solid rgba(25, 22, 20, 0.12);
    border-bottom: 1px solid rgba(25, 22, 20, 0.1);
    background:
      linear-gradient(180deg, rgba(232, 225, 214, 0.78), rgba(243, 240, 234, 0.96)),
      var(--paper);
    color: var(--ink);
    margin-right: -16px;
    margin-left: -16px;
    padding: 18px 16px 16px;
  }

  .brand-collab-aside .section-kicker {
    color: var(--wine);
  }

  .brand-collab-count {
    max-width: none;
    margin: 9px 0 15px;
    color: rgba(25, 22, 20, 0.58);
    font-size: 12.5px;
  }

  .brand-collab-nav {
    display: flex;
    gap: 8px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    max-height: none;
    margin-right: -16px;
    margin-left: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    padding: 0 16px 4px;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .brand-collab-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-collab-nav a {
    position: relative;
    flex: 0 0 166px;
    display: grid;
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 8px;
    align-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(25, 22, 20, 0.13);
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.5), rgba(228, 221, 211, 0.56)),
      var(--paper);
    color: var(--ink);
    padding: 12px 12px 11px;
    scroll-snap-align: start;
    box-shadow: 0 12px 28px rgba(25, 22, 20, 0.06);
  }

  .brand-collab-nav a:last-child {
    border-bottom: 1px solid rgba(25, 22, 20, 0.13);
  }

  .brand-collab-nav span,
  .brand-collab-nav em {
    grid-column: auto;
    color: rgba(25, 22, 20, 0.56);
  }

  .brand-collab-nav strong {
    font-size: 23px;
    line-height: 0.98;
  }

  .brand-collab-section {
    gap: 58px;
  }

  .brand-collab-study {
    gap: 20px;
    padding-top: 24px;
  }

  .brand-study-copy h2 {
    margin-top: 8px;
    font-size: clamp(38px, 12vw, 48px);
  }

  .brand-study-copy p:not(.section-kicker) {
    max-width: 31rem;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.72;
  }

  .brand-study-copy ul {
    margin-top: 18px;
  }

  .brand-study-images,
  .brand-study-images.is-triptych,
  .brand-study-images.is-duo,
  .brand-study-images.is-quad {
    display: grid;
    gap: 1px;
    height: auto;
    overflow: hidden;
    background: rgba(25, 22, 20, 0.14);
    box-shadow: none;
  }

  .brand-study-images,
  .brand-study-images.is-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-study-images.is-quad,
  .valentino-study-images,
  .ysl-study-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-study-images.is-triptych {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .brand-study-images.is-triptych .is-tall {
    grid-column: 1 / -1;
  }

  .brand-study-images.is-single {
    grid-template-columns: 1fr;
  }

  .brand-study-images figure,
  .brand-study-images.is-triptych figure,
  .brand-study-images.is-triptych .is-tall {
    width: auto;
    border: 0;
    aspect-ratio: 4 / 5;
  }

  .brand-study-images.is-triptych .is-tall,
  .brand-study-images.is-single figure {
    aspect-ratio: 3 / 4;
  }

  .brand-study-images figure:nth-child(2),
  .brand-study-images.is-triptych figure:nth-child(2),
  .brand-study-images.is-triptych figure:nth-child(3),
  .vehla-study-images figure {
    aspect-ratio: 4 / 5;
  }

  .brand-study-images figure::after {
    right: 9px;
    bottom: 9px;
    width: 28px;
    height: 28px;
    opacity: 0.82;
    transform: none;
  }

  .lunya-study-images,
  .commense-study-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
  }

  .lunya-study-images figure,
  .commense-study-images figure {
    aspect-ratio: 52 / 100 !important;
  }

  .commense-study-images figure:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5 !important;
  }

  .merit-study-images {
    grid-template-columns: 1fr;
  }

  .merit-study-images figure,
  .merit-study-images figure:nth-child(2) {
    aspect-ratio: 5 / 4;
  }

  #valentino .brand-study-images figure:first-child img {
    object-position: 50% 76%;
  }

  #ysl-beauty .brand-study-images figure:first-child img {
    object-position: 50% 50%;
  }

  #charles-keith .brand-study-images figure:first-child img {
    object-position: 48% 72%;
    transform: scale(1.14);
  }

  #charles-keith .brand-study-images figure:nth-child(3) img {
    object-position: 50% 68%;
  }

  #le-tanneur .brand-study-images figure:first-child {
    aspect-ratio: 3 / 4.2;
  }

  #perfect-corset .brand-study-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #perfect-corset .brand-study-images figure:first-child,
  #perfect-corset .brand-study-images figure:nth-child(2) {
    grid-column: auto;
    aspect-ratio: 4 / 5.7;
  }

  #perfect-corset .brand-study-images figure:first-child img {
    object-position: 50% 40%;
  }

  #perfect-corset .brand-study-images figure:nth-child(2) img {
    object-position: 50% 44%;
    transform: scale(1.08);
  }

  .merit-study-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .merit-study-images figure,
  .merit-study-images figure:nth-child(2) {
    aspect-ratio: 4 / 6.8;
  }

  .merit-study-images figure:first-child img {
    object-position: 50% 48%;
    transform: scale(1.18);
  }

  .merit-study-images figure:nth-child(2) img {
    object-position: 50% 42%;
    transform: scale(1.14);
  }
}

@media (max-width: 680px) {
  .intro-grid,
  .method-grid,
  .material-grid,
  .campaign-preview-grid,
  .work-selected-section > .work-editorial-stack,
  .archive-style-section > .style-archive-wall,
  .editorial-projects-section .research-image-strip {
    transform: none !important;
    transition: none !important;
    contain: layout paint;
  }

  .intro-grid > .reveal,
  .method-grid > .reveal,
  .material-grid > .reveal,
  .campaign-preview-grid > .reveal,
  .work-selected-section .work-editorial-stack > .reveal,
  .archive-style-section .style-archive-wall > .reveal,
  .editorial-projects-section .research-image-strip > .reveal {
    opacity: 1 !important;
    transform: translateZ(0) !important;
    transition: none !important;
    transition-delay: 0ms !important;
    contain: layout paint;
    backface-visibility: hidden;
  }

  .intro-grid > .reveal.is-visible,
  .method-grid > .reveal.is-visible,
  .material-grid > .reveal.is-visible,
  .campaign-preview-grid > .reveal.is-visible,
  .work-selected-section .work-editorial-stack > .reveal.is-visible,
  .archive-style-section .style-archive-wall > .reveal.is-visible,
  .editorial-projects-section .research-image-strip > .reveal.is-visible {
    transform: translateZ(0) !important;
  }

  .intro-grid > figure.reveal img,
  .intro-grid > figure.reveal.is-visible img {
    transform: scale(var(--image-scale, 1.001)) !important;
    transition: none !important;
  }

  .work-selected-section.reveal .work-editorial-stack,
  .work-selected-section.reveal.is-visible .work-editorial-stack,
  .archive-style-section.reveal .style-archive-wall,
  .archive-style-section.reveal.is-visible .style-archive-wall,
  .editorial-projects-section.reveal .research-image-strip,
  .editorial-projects-section.reveal.is-visible .research-image-strip {
    transform: none !important;
    transition: none !important;
  }

  .work-selected-section .work-story-card.reveal > div,
  .work-selected-section .work-story-card.reveal.is-visible > div,
  .archive-style-section .style-archive-entry.reveal > div,
  .archive-style-section .style-archive-entry.reveal.is-visible > div {
    opacity: 1 !important;
    transform: translateZ(0) !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }

  .work-selected-section .work-story-card.reveal img,
  .work-selected-section .work-story-card.reveal.is-visible img {
    transform: scale(1.012) !important;
    transition: none !important;
  }

  .archive-style-section .style-archive-entry.reveal img,
  .archive-style-section .style-archive-entry.reveal.is-visible img {
    transform: scale(var(--image-scale, 1)) !important;
    transition: none !important;
  }
}
