/* ==========================================================================
   RUVORI: CORE collection site
   Tokens -> base -> layout -> components -> sections
   Sharp, editorial imagery. Round interactive elements (echoing the dots mark).
   Red is only ever used for supporting words: labels, prices, links, focus.
   ========================================================================== */

@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/unbounded-latin.woff2") format("woff2");
  font-weight: 200 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "League Spartan";
  src: url("../assets/fonts/league-spartan-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* colour */
  --ink: #000000;
  --paper: #f4f4f4;
  --fog: #e4e4e4;
  --line: #cfcfcf;
  --graphite: #5c5c5c;      /* muted text on paper, 5.4:1 */
  --mist: #a9a9a9;          /* muted text on ink, 9:1 */
  --coal: #141414;          /* raised surface on ink */
  --coal-line: #2e2e2e;
  --red: #d90500;           /* red wording on light, 4.8:1 */
  --red-hi: #ff2a1a;        /* red wording on dark, 5.6:1 */
  --white: #ffffff;

  /* type */
  --font-display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brand: "League Spartan", "Arial Black", system-ui, sans-serif;
  --brand-tracking: -0.045em;   /* the name sits tight, letters close but never touching */

  /* film grain: fine noise tiles, dark specks on light surfaces and light specks on dark ones.
     Raise or lower the last number in each feColorMatrix (.24 / .19) to change the strength. */
  --grain-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .24 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --grain-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .19 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* layout */
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1360px;
  --header-h: 72px;
  --section-y: clamp(72px, 10vw, 152px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper) var(--grain-light);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* keyboard focus: always visible */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.on-dark :focus-visible,
.site-header:not(.is-solid) :focus-visible,
dialog :focus-visible {
  outline-color: var(--white);
}

.tnum { font-variant-numeric: tabular-nums; }

/* the brand name: always League Spartan, lowercase, tightly spaced */
.rv {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: var(--brand-tracking);
  text-transform: lowercase;
  font-size: 1.12em;            /* League Spartan runs small next to Space Grotesk */
  line-height: 1;
}
.h2 .rv { display: inline; font-size: 1em; }

/* hero: match the lowercase height of "by" (League Spartan x-height is 1/1.2 of Space Grotesk)
   and pull the name in close to "CORE by" */
.hero__label .rv,
.ticker .rv {
  font-size: 1.2em;
  margin-left: -0.07em;
}

/* ---------- preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--ink) var(--grain-dark);
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
#preloader.is-hidden { opacity: 0; pointer-events: none; }
#preloader img { width: 84px; height: auto; }

.preloader__bar {
  position: relative;
  width: 200px;
  height: 3px;
  overflow: hidden;
  background: var(--coal-line);
  border-radius: 999px;
}
.preloader__fill {
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--white);
  border-radius: inherit;
  animation: preloader-slide 1s var(--ease) infinite;
}
@keyframes preloader-slide {
  from { transform: translateX(-100%); }
  to   { transform: translateX(350%); }
}
@media (prefers-reduced-motion: reduce) {
  /* no sliding motion: show a plain, still bar instead */
  .preloader__fill { animation: none; }
}

.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.on-dark { background: var(--ink) var(--grain-dark); color: var(--white); }
.on-fog { background: var(--fog) var(--grain-light); }

/* ---------- type ---------- */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 0.9rem + 3.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 300;
  text-wrap: balance;
}
.h2 b, .h2 strong { font-weight: 700; }
.h2 span { display: block; }

.label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--red);
}
.on-dark .label, .hero .label { color: var(--red-hi); }

.lede {
  max-width: 54ch;
  color: var(--graphite);
}
.on-dark .lede { color: var(--mist); }

.red { color: var(--red); }
.on-dark .red { color: var(--red-hi); }

/* ---------- buttons (round, like the dots in the mark) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 14px; height: 14px; flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 0.875rem; }

.btn--solid { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--solid:hover { background: var(--red); border-color: var(--red); }
.on-dark .btn--solid, .site-header:not(.is-solid) .btn--solid { background: var(--white); color: var(--ink); border-color: var(--white); }
.on-dark .btn--solid:hover, .site-header:not(.is-solid) .btn--solid:hover { background: var(--red-hi); border-color: var(--red-hi); color: var(--ink); }

.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.on-dark .btn--ghost:hover, .site-header:not(.is-solid) .btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--red-hi); border-color: var(--red-hi); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  color: inherit;
  transition: color 0.2s var(--ease);
}
.link:hover { color: var(--red); }
.on-dark .link:hover { color: var(--red-hi); }

.escape-link { display: flex; margin-top: 28px; color: var(--mist); font-size: 0.9375rem; }
.escape-link:hover { color: var(--red-hi); }
.link svg { width: 14px; height: 14px; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--white); color: var(--ink); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--white);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: var(--paper) var(--grain-light);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.site-header.menu-open {
  background: var(--ink) var(--grain-dark);
  color: var(--white);
  border-bottom-color: var(--coal-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { width: 48px; height: auto; transition: filter 0.3s var(--ease); }
.site-header.is-solid:not(.menu-open) .brand img { filter: invert(1); }

.nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  background: var(--ink) var(--grain-dark);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s var(--ease), visibility 0s linear 0.25s;
}
.nav.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.nav a {
  display: block;
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.nav a:hover { color: var(--red-hi); }
.nav a svg { width: 0.55em; height: 0.55em; margin-left: 0.3em; vertical-align: 0.08em; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.menu-toggle svg { width: 26px; height: 26px; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }

@media (min-width: 900px) {
  .nav {
    position: static;
    z-index: auto;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    color: inherit;
    visibility: visible;
    opacity: 1;
    transition: none;
  }
  .nav a {
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0;
  }
  .nav a:hover { color: var(--red); }
  .nav a svg { width: 0.85em; height: 0.85em; margin-left: 0.35em; vertical-align: -0.05em; }
  .site-header:not(.is-solid) .nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 6px; }
  .menu-toggle { display: none; }
  .header-actions { gap: 10px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(28px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
/* grayscale via blend mode, not a live CSS filter: a per-frame filter() on a
   full-screen video forces the browser to re-composite every frame in software
   instead of its normal hardware video path, which is what caused the stutter.
   A flat, fully-desaturated layer blended with mix-blend-mode: saturation gives
   the same look for the cost of one static overlay instead of a per-frame recompute. */
.hero__mono {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: hsl(0 0% 50%);
  mix-blend-mode: saturation;
  pointer-events: none;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.1) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 22%);
}

/* black ticker with white text */
.ticker {
  position: absolute;
  inset: var(--header-h) 0 auto 0;
  overflow: hidden;
  background: var(--ink) var(--grain-dark);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.25);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 48s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker ul { display: flex; flex: none; align-items: center; }
.ticker li {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 11px 0 11px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}
.ticker li::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.hero__content {
  display: grid;
  gap: 32px;
  align-items: end;
}
.hero__label { margin-bottom: 20px; font-size: 1rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 0.6rem + 9.2vw, 8.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line > span { display: block; }
.hero h1 .line:first-child > span { font-weight: 300; }

.hero__aside { max-width: 380px; display: grid; gap: 20px; justify-items: start; }
.hero__aside p { color: rgba(255, 255, 255, 0.88); }

.hero__toggle {
  position: absolute;
  right: var(--gutter);
  top: calc(var(--header-h) + 64px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero__toggle:hover { background: var(--white); color: var(--ink); }
.hero__toggle svg { width: 14px; height: 14px; }
.hero__toggle .i-play { display: none; }
.hero__toggle[aria-pressed="true"] .i-play { display: block; }
.hero__toggle[aria-pressed="true"] .i-pause { display: none; }

@media (min-width: 900px) {
  .hero__content { grid-template-columns: 1fr auto; gap: 48px; }
  .hero__aside { padding-bottom: 12px; }
}

/* the single orchestrated moment: headline rises once on load */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .line > span {
    transform: translateY(105%);
    animation: rise 1s var(--ease) forwards;
  }
  .hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
  .hero__label, .hero__aside {
    opacity: 0;
    animation: fade-in 0.8s var(--ease) 0.5s forwards;
  }
  @keyframes rise { to { transform: none; } }
  @keyframes fade-in { to { opacity: 1; } }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ==========================================================================
   Manifesto
   ========================================================================== */
.manifesto__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
.manifesto__text { display: grid; gap: 32px; }
.manifesto .h2 { font-size: clamp(1.6rem, 0.8rem + 2.6vw, 3rem); }
.manifesto__copy { display: grid; gap: 16px; max-width: 50ch; color: var(--graphite); }
.manifesto__copy strong { color: var(--ink); font-weight: 500; }
.manifesto__figure { position: relative; }
.manifesto__frame { overflow: hidden; background: var(--ink); border-radius: 10px; }
.manifesto__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);   /* same slow zoom as the lookbook photos */
}
@media (hover: hover) {
  .manifesto__frame:hover img { transform: scale(1.04); }
}
.manifesto__figure figcaption {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--graphite);
}
@media (min-width: 900px) {
  .manifesto__grid { grid-template-columns: 1.25fr 1fr; gap: clamp(48px, 7vw, 120px); }
}

/* ==========================================================================
   Field notes (featured story)
   ========================================================================== */
.story__grid { display: grid; gap: 40px; align-items: end; }
.story__media { position: relative; overflow: hidden; background: var(--coal); border-radius: 10px; }
.story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 62%;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease);
}
@media (hover: hover) {
  .story__media:hover img, .story__media:focus-within img { filter: grayscale(0); }
}
.story__body { display: grid; gap: 28px; align-content: end; }
.story .h2 { font-size: clamp(1.75rem, 0.9rem + 3vw, 3.25rem); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--coal-line);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--mist);
}
@media (min-width: 900px) {
  .story__grid { grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 7vw, 112px); }
  .story__media img { aspect-ratio: 4 / 5; max-height: 82vh; }
}

/* ==========================================================================
   Films
   ========================================================================== */
.films { padding-top: 0; overflow: hidden; }
.films__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
}
.films__nav { display: flex; gap: 10px; }
.films__nav .icon-btn:disabled { opacity: 0.35; cursor: default; }
.films__nav .icon-btn:disabled:hover { background: transparent; color: inherit; }
.films__nav .i-prev { transform: rotate(180deg); }

.films__track {
  --film-h: clamp(340px, 62vh, 560px);
  display: flex;
  gap: 12px;
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--coal-line) transparent;
  padding-bottom: 16px;
}
.films__track > li { flex: none; scroll-snap-align: start; }
@media (min-width: 1500px) {
  .films__track { padding-inline: calc((100vw - var(--max)) / 2); scroll-padding-inline: calc((100vw - var(--max)) / 2); }
}

.film {
  position: relative;
  isolation: isolate;
  display: block;
  height: var(--film-h);
  padding: 0;
  border: 0;
  background: var(--coal);
  color: var(--white);
  text-align: left;
  overflow: hidden;
  border-radius: 10px;
}
.film--portrait { aspect-ratio: 9 / 16; }
.film--landscape { aspect-ratio: 16 / 9; }
.film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* grayscale via a blended overlay, not a live filter() on the playing video (see
   .hero__mono for why); the hover color-reveal is now an opacity fade on that
   overlay instead of a filter transition. */
.film__mono {
  position: absolute;
  inset: 0;
  background: hsl(0 0% 50%);
  mix-blend-mode: saturation;
  transition: opacity 0.4s var(--ease);
}
.film:hover .film__mono, .film:focus-visible .film__mono { opacity: 0; }
.film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
}
.film__meta {
  position: absolute;
  z-index: 1;
  inset: auto 16px 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
  font-weight: 500;
}
.film__meta .tnum { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.8); }
.film__play {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.film__play svg { width: 14px; height: 14px; margin-left: 2px; }
.film:hover .film__play, .film:focus-visible .film__play { background: var(--white); color: var(--ink); }

/* ==========================================================================
   Shop preview
   ========================================================================== */
.shop__head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.shop__head .lede { align-self: end; }
@media (min-width: 900px) {
  .shop__head { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
}

.products { display: grid; gap: 48px 24px; }
@media (min-width: 720px) { .products { grid-template-columns: 1fr 1fr; } }

.product { display: grid; gap: 20px; align-content: start; }
.product__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 20 / 21;
  background: var(--fog);
  border-radius: 10px;
}
.product__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}
.product__media .is-worn { opacity: 0; object-position: 50% 30%; }
@media (hover: hover) {
  .product:hover .is-worn, .product:focus-within .is-worn { opacity: 1; }
  .product:hover .is-flat, .product:focus-within .is-flat { transform: scale(1.03); }
}
.product__badge {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.8125rem;
  font-weight: 500;
}
.product__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.product h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.product__collection { margin-top: 4px; font-size: 0.875rem; color: var(--graphite); }
.price {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--red);
  white-space: nowrap;
}
.product__desc { max-width: 46ch; color: var(--graphite); }
.product__actions { display: flex; flex-wrap: wrap; gap: 10px; }
/* how to pay: an ordered process, so the numbering is real information */
.howto {
  display: grid;
  gap: 28px;
  margin-top: clamp(56px, 8vw, 96px);
}
.howto__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.howto__steps { counter-reset: step; display: grid; gap: 24px; }
.howto__steps li {
  counter-increment: step;
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}
.howto__steps li::before {
  content: counter(step);
  font-size: 0.875rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--red);
}
.howto__step { font-size: 1.0625rem; font-weight: 500; }
.howto__text { max-width: 38ch; color: var(--graphite); }
.howto__note { max-width: 70ch; font-size: 0.9375rem; color: var(--graphite); }
@media (min-width: 720px) {
  .howto__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ==========================================================================
   Lookbook
   ========================================================================== */
.lookbook__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 48px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.lookbook__grid { columns: 2; column-gap: 12px; }
@media (min-width: 900px) { .lookbook__grid { columns: 3; column-gap: 16px; } }
.lookbook__grid li { break-inside: avoid; margin-bottom: 12px; }
@media (min-width: 900px) { .lookbook__grid li { margin-bottom: 16px; } }

.shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  overflow: hidden;
  border-radius: 10px;
}
.shot img {
  width: 100%;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease), transform 0.8s var(--ease);
}
.shot:hover img, .shot:focus-visible img { filter: grayscale(0); transform: scale(1.02); }
.lookbook__hint { font-size: 0.875rem; color: var(--graphite); }

/* ==========================================================================
   Enquire
   ========================================================================== */
.enquire__grid { display: grid; gap: 56px; }
.enquire__intro { display: grid; gap: 28px; align-content: start; }
.enquire .h2 { font-size: clamp(1.9rem, 0.9rem + 3.4vw, 3.75rem); }
.socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.social {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social svg { width: 24px; height: 24px; }
.social:hover { background: var(--white); color: var(--ink); }
.social:active { background: var(--red-hi); border-color: var(--red-hi); color: var(--ink); }

.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.875rem; font-weight: 500; }
.field .opt { font-weight: 400; color: var(--mist); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #5a5a5a;
  border-radius: 0;
  background: var(--coal);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mist); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  border-color: var(--white);
}
.field select {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.field select option { color: #000; background: #fff; }
.field [aria-invalid="true"] { border-color: var(--red-hi); }
.field__error { display: none; font-size: 0.875rem; color: #ff6b5f; }
.field__error.is-shown { display: block; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.form__status { flex-basis: 100%; font-size: 0.9375rem; color: var(--mist); max-width: 52ch; }
.form__status a { color: var(--white); }

@media (min-width: 900px) {
  .enquire__grid { grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 8vw, 128px); }
}
@media (min-width: 640px) {
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { position: relative; overflow: hidden; padding-top: 32px; border-top: 1px solid var(--coal-line); }
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 32px;
  font-size: 0.9375rem;
  color: var(--mist);
}
.site-footer__bar nav { display: flex; flex-wrap: wrap; gap: 4px 24px; }
.site-footer__bar a { display: inline-flex; align-items: center; min-height: 44px; }
.site-footer__bar a:hover { color: var(--red-hi); }
.wordmark {
  margin-top: clamp(24px, 5vw, 56px);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(6rem, 32vw, 30rem);
  line-height: 0.74;
  letter-spacing: var(--brand-tracking);
  text-align: center;
  color: var(--white);
  user-select: none;
  white-space: nowrap;
}


/* ==========================================================================
   Lightbox
   ========================================================================== */
dialog.lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}
dialog.lightbox::backdrop { background: rgba(0, 0, 0, 0.92); }
.lightbox__stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 72px var(--gutter) 40px;
}
.lightbox__stage img, .lightbox__stage video {
  max-width: 100%;
  max-height: calc(100dvh - 130px);
  width: auto;
  border-radius: 10px;
  height: auto;
  background: var(--coal);
}
.lightbox__caption { position: absolute; left: var(--gutter); bottom: 14px; font-size: 0.875rem; color: var(--mist); }
.lightbox__close { position: absolute; top: 12px; right: 12px; background: rgba(0, 0, 0, 0.6); }

/* ==========================================================================
   Reduced motion: no autoplay motion, no zoom/slide effects
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .shot:hover img, .shot:focus-visible img,
  .manifesto__frame:hover img,
  .product:hover .is-flat { transform: none; }
}
