﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Mrs+Saint+Delafield&display=swap');
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #fdfbf8;
      color: #111;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.02em;
      overflow-x: hidden;
      cursor: none;
    }

    a, button, .collection-tile, .strip-card {
      cursor: none;
    }

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

    button {
      font: inherit;
    }

    /* CURSOR */

    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 2000;
      mix-blend-mode: difference;
    }

    .cursor-dot {
      width: 7px;
      height: 7px;
      background: #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .cursor-ring {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(255,255,255,0.95);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.22s ease, height 0.22s ease, opacity 0.22s ease;
      opacity: 0.9;
    }

    .cursor-ring.active {
      width: 44px;
      height: 44px;
      opacity: 1;
    }

    /* SCROLL PROGRESS */

    .scroll-progress-track {
      position: fixed;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 120px;
      background: rgba(0,0,0,0.08);
      z-index: 1200;
      pointer-events: none;
    }

    .scroll-progress-bar {
      width: 100%;
      height: 0%;
      background: rgba(0,0,0,0.62);
      transition: height 0.14s linear;
      transform-origin: top;
    }

    /* MENU */

    .menu-button {
      position: fixed;
      top: 22px;
      right: 22px;
      z-index: 140;
      background: none;
      border: none;
      color: #555;
      font-size: 20px;
      cursor: none;
    }

    .menu-button.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .menu-button.force-hidden {
      opacity: 0;
      pointer-events: none;
    }

    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      z-index: 130;
    }

    .menu-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .menu-close {
      position: absolute;
      top: 22px;
      right: 22px;
      z-index: 150;
    }

    .menu-inner {
      display: flex;
      flex-direction: column;
      gap: 22px;
      text-align: center;
    }

    .menu-inner a {
      font-size: clamp(1rem, 2.5vw, 1.7rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* REVEAL */

    .reveal {
      opacity: 0;
      transform: translateY(80px);
      transition:
        opacity 1.4s cubic-bezier(.2,.8,.2,1),
        transform 1.4s cubic-bezier(.2,.8,.2,1);
      will-change: opacity, transform;
    }

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

    /* HERO */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 24px 40px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 760px;
      height: 500px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle,
        rgba(0,0,0,0.11) 0%,
        rgba(0,0,0,0.055) 28%,
        rgba(0,0,0,0.018) 46%,
        rgba(0,0,0,0) 74%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
      animation: heroBreath 9s ease-in-out infinite;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(72vw, 840px);
      height: min(42vh, 360px);
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse at center,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.08) 34%,
        rgba(255,255,255,0) 72%);
      filter: blur(22px);
      opacity: 0.34;
      pointer-events: none;
      z-index: 0;
      animation: heroGlow 12s ease-in-out infinite;
    }

    .hero-inner {
      width: 100%;
      max-width: 1100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 26px;
      position: relative;
      z-index: 1;
    }

    .hero-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      will-change: transform;
      transition: transform 0.12s linear;
    }

    body.intro-loading .hero-stack {
      filter: blur(22px);
      opacity: 0.12;
      transform: scale(1.045);
    }

    body.intro-ready .hero-stack {
      animation: heroIntroReveal 1.9s cubic-bezier(.16,.84,.18,1) forwards;
    }

.signature {
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: clamp(1.5rem, 1.9vw, 1.9rem);
  margin-top: 22px;
  color: #111;
  letter-spacing: 0;
  line-height: 1;
  display: block;
  transform: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

    .hero-name {
      font-size: clamp(2.4rem, 6vw, 4.8rem);
      font-weight: 300;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.22),
        rgba(0,0,0,1) 24%,
        rgba(0,0,0,1) 76%,
        rgba(0,0,0,0.22)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-label-center {
      font-size: 0.72rem;
      color: #8a8a8a;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-align: center;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.14),
        rgba(0,0,0,0.78) 22%,
        rgba(0,0,0,0.78) 78%,
        rgba(0,0,0,0.14)
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* MANIFEST */

    .manifest {
      max-width: 1160px;
      margin: 0 auto 320px auto;
      padding: 28px 24px 54px;
      display: grid;
      grid-template-columns: minmax(320px, 520px) minmax(220px, 360px);
      justify-content: space-between;
      align-items: center;
      gap: 56px;
      color: #555;
      line-height: 1.85;
      font-size: 0.95rem;
    }

    .manifest-copy {
      text-align: left;
      justify-self: start;
      width: 100%;
    }

    .manifest-portrait {
      justify-self: end;
      width: min(100%, 250px);
    }

    .manifest-portrait img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      filter: grayscale(100%);
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      -webkit-user-drag: none;
      -webkit-touch-callout: none;
    }

    .manifest p + p {
      margin-top: 14px;
    }

    /* ARCHIVE */

    .archive {
      padding: 0 20px 120px;
      max-width: 1120px;
      margin: auto;
      position: relative;
    }

    .archive-intro {
      text-align: center;
      margin-bottom: 64px;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .fusi-link {
      display: inline-block;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 300;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: opacity 0.25s ease;
    }

    .fusi-link:hover {
      opacity: 0.65;
    }

    .archive-intro > p:not(.signature) {
      margin-top: 8px;
      color: #777;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
    }

    /* STRIP */

    .strip-preview {
      display: grid;
      grid-template-columns: 0.62fr 0.62fr 0.62fr 0.6fr;
      gap: 14px;
      width: 100%;
      min-height: 66vh;
      align-items: stretch;
      transition: grid-template-columns 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
      will-change: grid-template-columns;
      contain: layout paint style;
    }

    .strip-preview.hover-1 { grid-template-columns: 1.95fr 0.52fr 0.52fr 0.6fr; }
    .strip-preview.hover-2 { grid-template-columns: 0.52fr 1.95fr 0.52fr 0.6fr; }
    .strip-preview.hover-3 { grid-template-columns: 0.52fr 0.52fr 1.95fr 0.6fr; }
    .strip-preview.hover-4 { grid-template-columns: 0.52fr 0.52fr 0.52fr 1.95fr; }

    .strip-card,
    .strip-placeholder {
      min-width: 0;
      min-height: 66vh;
    }

    .strip-card {
      position: relative;
      overflow: hidden;
      background: #d9d6d0;
      transform: translateZ(0);
      will-change: transform, opacity;
      transition: opacity 0.5s ease;
      contain: layout paint;
      content-visibility: auto;
      contain-intrinsic-size: 360px 720px;
    }

    .strip-preview.is-hovering .strip-card {
      opacity: 0.86;
      transition: opacity 0.5s ease;
    }

    .strip-preview.is-hovering .strip-card.active {
      opacity: 1;
      transition: opacity 0.5s ease;
    }

    .strip-card img {
      width: 100%;
      height: 66vh;
      object-fit: cover;
      display: block;
      filter: grayscale(100%) blur(16px);
      opacity: 0;
      transform: translateZ(0) scale(1.03);
      backface-visibility: hidden;
      will-change: transform, filter, opacity;
      transition:
        filter 2.6s ease,
        opacity 2.6s ease,
        transform 2.6s ease;
    }

    .strip-card img.loaded {
      filter: grayscale(100%) blur(0);
      opacity: 1;
      transform: translateZ(0) scale(1);
    }

    .strip-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 16px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.24));
      color: white;
    }

    .strip-top {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 1s ease, transform 1s ease;
      will-change: opacity, transform;
    }

    .strip-card.active .strip-top {
      opacity: 1;
      transform: translateY(0);
    }

    .strip-title {
      font-size: clamp(0.92rem, 1.45vw, 1.4rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 300;
    }

    .strip-sub {
      margin-top: 4px;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.8);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 1.1s ease 0.08s, transform 1.1s ease 0.08s;
    }

    .strip-card.active .strip-sub {
      opacity: 1;
      transform: translateY(0);
    }

    .strip-bottom {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 14px;
      min-width: 0;
    }

    .strip-number {
      font-size: clamp(1.3rem, 2.6vw, 2.5rem);
      color: rgba(255,255,255,0.85);
      font-weight: 300;
      letter-spacing: 0.04em;
    }

    .strip-view {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
      flex-shrink: 0;
      min-width: max-content;
      text-align: right;
    }

    .strip-placeholder {
      border: 1px dashed rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8d8d8d;
      text-align: center;
      padding: 20px;
      line-height: 1.45;
      font-size: 0.9rem;
      width: 100%;
      min-width: 0;
      justify-self: stretch;
      max-width: 100%;
      overflow: hidden;
    }

    .strip-placeholder span {
      display: block;
      width: 170px;
      max-width: 100%;
      line-height: 1.45;
      text-wrap: balance;
      white-space: normal;
      word-break: normal;
      overflow-wrap: normal;
    }

    /* PAGES */

  .page {
      display: none;
      min-height: 100vh;
      opacity: 1;
      transform: none;
      transition: none;
    }

    .page.active {
      opacity: 1;
      transform: none;
    }

    .collection-page {
      background: #000;
      color: white;
      min-height: 100vh;
    }

    .collection-header,
    .viewer-header,
    .hidden-page .gallery-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 22px;
      z-index: 100;
    }

    .collection-header,
    .viewer-header {
      background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
    }

    .collection-header-left h3,
    .viewer-header-left h3,
    .gallery-header-left h3 {
      font-weight: 300;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 1rem;
    }

    .collection-header-left p,
    .viewer-header-left p,
    .gallery-header-left p {
      margin-top: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.06em;
    }

    .collection-back,
    .viewer-back,
    .back-link {
      background: none;
      border: none;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.86rem;
      margin-right: 34px;
    }

    /* COLLECTION GRID / GAPLESS MASONRY */

    .collection-wrap {
      padding: 96px 0 0;
      min-height: 100vh;
    }

    .collection-grid {
      column-count: 4;
      column-gap: 0;
      width: 100%;
      background: #000;
      line-height: 0;
      contain: layout paint style;
    }

    .collection-tile {
      position: relative;
      display: block;
      width: 100%;
      overflow: hidden;
      background: #000;
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      margin: 0;
      padding: 0;
      line-height: 0;
      opacity: 1;
      transform: translateY(0);
      transition:
        opacity 0.48s cubic-bezier(.2,.8,.2,1),
        transform 0.48s cubic-bezier(.2,.8,.2,1);
      contain: layout paint;
    }

    .collection-page.entering .collection-tile {
      opacity: 0;
      transform: translateY(18px);
    }

    .collection-page .collection-tile:nth-child(1) { transition-delay: 0.01s; }
    .collection-page .collection-tile:nth-child(2) { transition-delay: 0.03s; }
    .collection-page .collection-tile:nth-child(3) { transition-delay: 0.05s; }
    .collection-page .collection-tile:nth-child(4) { transition-delay: 0.07s; }
    .collection-page .collection-tile:nth-child(5) { transition-delay: 0.09s; }
    .collection-page .collection-tile:nth-child(6) { transition-delay: 0.11s; }
    .collection-page .collection-tile:nth-child(7) { transition-delay: 0.13s; }
    .collection-page .collection-tile:nth-child(8) { transition-delay: 0.15s; }
    .collection-page .collection-tile:nth-child(9) { transition-delay: 0.17s; }
    .collection-page .collection-tile:nth-child(10) { transition-delay: 0.19s; }
    .collection-page .collection-tile:nth-child(11) { transition-delay: 0.21s; }
    .collection-page .collection-tile:nth-child(12) { transition-delay: 0.23s; }

    .collection-tile img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      filter: grayscale(100%);
      opacity: 1;
      transform: scale(1);
      transition: transform 0.4s ease, opacity 0.4s ease;
      will-change: transform, opacity;
    }

    .collection-tile img.loaded {
      filter: grayscale(100%);
      opacity: 1;
      transform: scale(1);
    }

    .collection-tile:hover img {
      transform: scale(1.01);
      opacity: 1;
    }

    .collection-tile.portrait img       { aspect-ratio: 4 / 5; }
    .collection-tile.portrait-tall img  { aspect-ratio: 4 / 6; }
    .collection-tile.landscape img      { aspect-ratio: 16 / 10; }
    .collection-tile.landscape-large img { aspect-ratio: 16 / 9; }
    .collection-tile.square-ish img     { aspect-ratio: 1 / 1; }
    .collection-tile.micro img          { aspect-ratio: 4 / 3; }

    /* VIEWER */

    .viewer-page {
      background: #000;
      color: white;
      min-height: 100vh;
    }

    .panorama {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      height: 100vh;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .panorama::-webkit-scrollbar {
      display: none;
    }

    .slide {
      flex: 0 0 100vw;
      scroll-snap-align: start;
      position: relative;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at center,
          rgba(0,0,0,0) 52%,
          rgba(0,0,0,0.08) 78%,
          rgba(0,0,0,0.18) 100%);
      opacity: 0.9;
    }

    .slide img {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      display: block;
      filter: grayscale(100%) blur(0);
      opacity: 1;
      transform: scale(1);
      transition:
        filter 1.9s ease,
        opacity 1.9s ease,
        transform 1.9s ease;
    }

    .slide img.loaded {
      filter: grayscale(100%) blur(0);
      opacity: 1;
      transform: scale(1);
      animation: zoom 8s ease forwards;
    }

    @keyframes zoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1); }
    }

    .slide-number {
      position: absolute;
      right: 26px;
      bottom: 26px;
      color: rgba(255,255,255,0.75);
      font-size: 0.76rem;
      letter-spacing: 0.14em;
    }

    .viewer-progress {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      width: min(220px, 44vw);
      height: 1px;
      background: rgba(255,255,255,0.16);
      overflow: hidden;
      pointer-events: none;
      z-index: 110;
    }

    .viewer-progress-bar {
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.82);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.18s linear;
    }

    /* CLOTHING */

    .hidden-page {
      min-height: 100vh;
      background: #000;
      color: #fff;
    }

    .hidden-page .gallery-header {
      justify-content: center;
      align-items: center;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.55),
        rgba(0,0,0,0)
      );
    }

    .hidden-page .gallery-header-left {
      text-align: center;
    }

    .hidden-page .gallery-header-left h3 {
      color: #fff;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: none;
    }

    .hidden-page .gallery-header-left p {
      display: none;
    }

    .hidden-page .back-link {
      position: absolute;
      left: 22px;
      top: 22px;
      color: rgba(255,255,255,0.9);
    }

    .hidden-content {
      max-width: 760px;
      margin: 0 auto;
      padding: 420px 20px 420px;
    }

    .clothing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .clothing-card {
      background: transparent;
      border: none;
      min-height: auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .clothing-image-wrap {
      width: 100%;
      background: #0a0a0a;
      overflow: hidden;
    }

    .clothing-image-wrap img {
      width: 100%;
      height: auto;
      display: block;
      filter: grayscale(100%) blur(16px);
      opacity: 0;
      transform: scale(1.03);
      transition:
        filter 2.6s ease,
        opacity 2.6s ease,
        transform 2.6s ease;
    }

    .clothing-image-wrap img.loaded {
      filter: grayscale(100%) blur(0);
      opacity: 1;
      transform: scale(1);
    }

    .clothing-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 20px;
      color: #fff;
    }

    .clothing-meta h3 {
      font-weight: 300;
      text-transform: none;
      letter-spacing: 0.08em;
      font-size: 0.95rem;
    }

    .clothing-meta span {
      color: rgba(255,255,255,0.55);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* CONTACT */

    .contact {
      position: relative;
      text-align: center;
      margin-top: -118px;
      padding: 418px 20px 170px;
      color: #777;
      font-size: 0.92rem;
      overflow: hidden;
      isolation: isolate;
      background: #fdfbf8;
      z-index: 1;
    }

    .contact::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 30px;
      width: min(1280px, 98vw);
      height: 16px;
      transform: translateX(-50%);
      background:
        radial-gradient(ellipse at center,
          rgba(0,0,0,0.52) 0%,
          rgba(0,0,0,0.17) 28%,
          rgba(0,0,0,0.04) 56%,
          rgba(0,0,0,0) 82%);
      filter: blur(10px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.78;
    }

    .contact::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -92px;
      width: min(1440px, 116vw);
      height: 350px;
      transform: translateX(-50%);
      background:
        radial-gradient(ellipse at center 62px,
          rgba(0,0,0,0.12) 0%,
          rgba(0,0,0,0.045) 24%,
          rgba(0,0,0,0.014) 44%,
          rgba(0,0,0,0) 70%),
        radial-gradient(ellipse at center top,
          rgba(255,255,255,0.96) 0%,
          rgba(255,255,255,0.7) 34%,
          rgba(253,251,248,0.18) 58%,
          rgba(253,251,248,0) 82%);
      filter: blur(34px);
      pointer-events: none;
      z-index: 0;
      opacity: 1;
    }

    .contact p + p {
      margin-top: 10px;
    }

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

    /* GRAIN */

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.035;
      background-image:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,0.18) 0.6px, transparent 0.7px),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,0.14) 0.5px, transparent 0.6px),
        radial-gradient(circle at 40% 70%, rgba(0,0,0,0.16) 0.6px, transparent 0.7px),
        radial-gradient(circle at 70% 80%, rgba(0,0,0,0.12) 0.5px, transparent 0.6px);
      background-size: 120px 120px, 170px 170px, 140px 140px, 200px 200px;
      mix-blend-mode: multiply;
      animation: grainDrift 18s steps(6) infinite;
    }

    @keyframes heroBreath {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.9; }
    }

    @keyframes heroGlow {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.28; }
      50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.42; }
    }

    @keyframes grainDrift {
      0% { transform: translate3d(0, 0, 0); }
      25% { transform: translate3d(-0.35%, 0.25%, 0); }
      50% { transform: translate3d(0.28%, -0.22%, 0); }
      75% { transform: translate3d(0.24%, 0.18%, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @keyframes heroIntroReveal {
      0% {
        filter: blur(22px);
        opacity: 0.12;
        transform: scale(1.045);
      }
      55% {
        filter: blur(8px);
        opacity: 0.6;
        transform: scale(1.02);
      }
      100% {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
      }
    }

    /* RESPONSIVE */

    @media (min-width: 900px) {
      .archive,
      .hidden-content {
        padding-left: 36px;
        padding-right: 36px;
      }

      .strip-preview,
      .strip-card,
      .strip-placeholder {
        min-height: 76vh;
      }

      .strip-card img {
        height: 76vh;
      }

      .collection-header,
      .viewer-header,
      .gallery-header {
        padding-left: 36px;
        padding-right: 36px;
      }

      .hidden-page .back-link {
        left: 36px;
      }
    }

    @media (max-width: 1200px) {
      .collection-grid {
        column-count: 3;
      }
    }

    @media (max-width: 860px) {
      .strip-preview {
        min-height: 52vh;
      }

      body,
      a,
      button,
      .collection-tile,
      .strip-card {
        cursor: auto;
      }

      .cursor-dot,
      .cursor-ring,
      .scroll-progress-track {
        display: none;
      }

      .hero-name {
        white-space: normal;
        line-height: 0.96;
      }

      .manifest {
        margin-bottom: 220px;
        padding-top: 18px;
        padding-bottom: 10px;
        grid-template-columns: minmax(220px, 1fr) minmax(140px, 220px);
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
      }

      .manifest-copy {
        text-align: left;
      }

      .manifest-portrait {
        justify-self: end;
        width: min(100%, 200px);
      }

      .strip-card,
      .strip-placeholder {
        min-height: 52vh;
      }

      .strip-card img {
        height: 52vh;
      }

      .strip-placeholder {
        min-height: 52vh;
        padding: 16px;
      }

      .strip-top {
        opacity: 0;
        transform: translateY(18px);
        display: none;
      }

      .strip-overlay {
        justify-content: center;
        align-items: center;
        padding: 14px;
      }

      .strip-view {
        display: none;
      }

      .strip-bottom {
        justify-content: center;
        align-items: center;
        min-height: 100%;
      }

      .strip-number {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1;
        text-align: center;
      }

      .collection-grid {
        column-count: 2;
      }

      .hidden-page .back-link {
        left: 22px;
      }
      .hidden-content {
        padding-top: 300px;
        padding-bottom: 300px;
      }
    }

    @media (max-width: 640px) {
      .manifest {
        grid-template-columns: minmax(170px, 1fr) minmax(110px, 160px);
        gap: 18px;
      }

      .manifest-copy {
        font-size: 0.9rem;
        line-height: 1.75;
      }

      .manifest-portrait {
        width: min(100%, 150px);
      }

      .strip-preview {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(22vw, 1fr);
        grid-template-columns: none;
        gap: 8px;
        min-height: 34vh;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
      }

      .strip-preview.hover-1,
      .strip-preview.hover-2,
      .strip-preview.hover-3,
      .strip-preview.hover-4 {
        grid-template-columns: none;
      }

      .strip-card,
      .strip-placeholder {
        min-height: 34vh;
        scroll-snap-align: start;
      }

      .strip-card img {
        height: 34vh;
      }

      .strip-number {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
      }

      .strip-placeholder {
        min-height: 34vh;
      }

      .strip-placeholder span {
        width: 100px;
        font-size: 0.72rem;
        line-height: 1.35;
      }
    }
  /* FUSI WORDMARK */

.fusi-wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 0.9;
  text-transform: none;
  margin-bottom: 6px;
}

.fusi-text,
.fusi-dot-link {
  color: #111;
}

.fusi-dot-link {
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fusi-dot-link:hover {
  opacity: 0.55;
  transform: translateY(-1px);
}

    .archive-fade-band {
      position: absolute;
      left: 50%;
      top: 118px;
      transform: translateX(-50%);
      width: min(920px, 84vw);
      height: 170px;
      pointer-events: none;
      z-index: 1;
      background:
        radial-gradient(ellipse at center,
          rgba(0,0,0,0.30) 0%,
          rgba(0,0,0,0.21) 18%,
          rgba(0,0,0,0.12) 36%,
          rgba(0,0,0,0.05) 52%,
          rgba(0,0,0,0.015) 64%,
          rgba(0,0,0,0) 78%);
      filter: blur(22px);
      opacity: 0.82;
    }

/* CLOTHING MICRO STORY */

.clothing-story-wrap {
  position: relative;
}

.clothing-story {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.18) 38%,
    rgba(0,0,0,0) 72%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.clothing-story p {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  max-width: 320px;
}

.clothing-story-wrap:hover .clothing-story {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  body.intro-loading .hero-stack,
  body.intro-ready .hero-stack {
    filter: none;
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

