:root {
  --ink: #1d201c;
  --paper: #f8f8f3;
  --paper-2: #efefe7;
  --orange: #e64b24;
  --sage: #e5eadb;
  --line: #dcded5;
  --muted: #62665d;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);
  --serif: 'Instrument Serif', Georgia, serif;
  --display: 'Manrope', system-ui, sans-serif;
  --gutter: clamp(16px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
::selection { background: var(--orange); color: white; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
img { display: block; width: 100%; object-fit: cover; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--orange); letter-spacing: -.01em; }

.skip { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: white; padding: 10px 16px; transition: top .3s; }
.skip:focus { top: 16px; }

/* ---------- Loader ---------- */
.loader { display: none; }
.js .loader {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-content: center; gap: 28px;
  background: var(--ink); color: var(--paper);
  transition: clip-path 1s var(--ease-in-out);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader-word { display: flex; overflow: hidden; font: 800 clamp(64px, 12vw, 160px)/1 var(--display); letter-spacing: -.04em; }
.loader-word span { display: inline-block; transform: translateY(105%); animation: rise .9s var(--ease) forwards; }
.loader-word span:nth-child(2) { animation-delay: .06s; }
.loader-word span:nth-child(3) { animation-delay: .12s; }
.loader-word span:nth-child(4) { animation-delay: .18s; }
.loader-word span:nth-child(5) { animation-delay: .24s; color: var(--orange); }
.loader-count { font: 500 14px/1 var(--display); letter-spacing: .1em; text-align: right; color: #ffffff99; font-variant-numeric: tabular-nums; }
.loader-bar { height: 2px; background: #ffffff22; overflow: hidden; }
.loader-bar i { display: block; height: 100%; background: var(--orange); transform-origin: left; animation: load 1.1s var(--ease-in-out) forwards; }
@keyframes rise { to { transform: translateY(0); } }
@keyframes load { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Cursor, progress ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .js .cursor { display: block; position: fixed; inset: 0; pointer-events: none; z-index: 80; opacity: 0; transition: opacity .3s; }
  .js .cursor.active { opacity: 1; }
  .cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; border-radius: 50%; translate: -50% -50%; will-change: transform; }
  .cursor-dot { width: 6px; height: 6px; background: var(--orange); }
  .cursor-ring {
    width: 36px; height: 36px; border: 1px solid #1d201c55;
    display: grid; place-items: center;
    transition: width .4s var(--ease), height .4s var(--ease), background .4s, border-color .4s;
  }
  .cursor-ring em { font: 500 12px/1 'DM Sans', sans-serif; color: white; opacity: 0; transition: opacity .3s; font-style: normal; }
  .cursor.hover .cursor-ring { width: 56px; height: 56px; border-color: var(--orange); }
  .cursor.view .cursor-ring { width: 88px; height: 88px; background: var(--orange); border-color: var(--orange); }
  .cursor.view .cursor-ring em { opacity: 1; }
  .cursor.view .cursor-dot { opacity: 0; }
}
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 70; pointer-events: none; }
.progress i { display: block; height: 100%; background: var(--orange); transform-origin: left; transform: scaleX(0); }

/* ---------- Header ---------- */
.announcement {
  padding: 9px var(--gutter); background: var(--ink); color: white;
  display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .04em;
}
header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), border-color .3s, padding .4s var(--ease);
}
header.scrolled { border-color: var(--line); padding-block: 12px; }
header.hidden { transform: translateY(-100%); }
.logo { font: 800 34px/1 var(--display); letter-spacing: -2px; display: inline-block; transition: transform .4s var(--ease); }
.logo:hover { transform: skewX(-8deg); }
.logo span { font-size: 14px; vertical-align: top; letter-spacing: 0; margin-left: 3px; color: var(--orange); }
nav { display: flex; gap: 36px; font-size: 14px; }
.link-swap { display: inline-block; overflow: hidden; height: 1.6em; }
.link-swap span { display: inline-block; position: relative; transition: transform .5s var(--ease); }
.link-swap span::after { content: attr(data-text); position: absolute; left: 0; top: 100%; color: var(--orange); }
.link-swap:hover span { transform: translateY(-100%); }
.bag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); background: var(--paper); border-radius: 40px; padding: 6px 6px 6px 18px;
  transition: border-color .3s, background .3s;
}
.bag:hover { border-color: var(--ink); }
.bag-count {
  display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--ink); color: white; width: 28px; height: 28px; font-size: 13px;
}
.bag-count.bump { animation: bump .6s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 35% { transform: scale(1.45); background: var(--orange); } 100% { transform: scale(1); } }

/* ---------- Buttons ---------- */
.button {
  position: relative; overflow: hidden; isolation: isolate;
  border: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 17px 18px 17px 26px; border-radius: 60px; font-weight: 500; font-size: 14px;
  transition: color .5s var(--ease);
}
.button::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: var(--orange);
  border-radius: inherit; transform: translateY(101%); transition: transform .55s var(--ease);
}
.button:hover::before { transform: translateY(0); }
.button:hover { color: white; }
.button-icon {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: #ffffff1c; transition: transform .5s var(--ease);
}
.button:hover .button-icon { transform: rotate(45deg); }
.dark { background: var(--ink); color: white; }
.light { background: var(--paper); color: var(--ink); }
.text-link { position: relative; font-size: 14px; font-weight: 500; }
.text-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor;
  transform-origin: right; transition: transform .5s var(--ease);
}
.text-link:hover::after { transform: scaleX(0); }
.magnetic { will-change: transform; }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
.js .hero .reveal { transition-delay: calc(var(--d, 0s) + .8s); }
.js .split .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.js .split .word > span { display: inline-block; transform: translateY(110%) rotate(4deg); transform-origin: left bottom; transition: transform 1.1s var(--ease); transition-delay: calc(var(--i) * 45ms); }
.js .split.in .word > span { transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; height: max(640px, calc(100svh - 118px)); overflow: hidden; color: white; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .14em; margin: 0 0 24px; }
.eyebrow::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 10px; vertical-align: 1px; }
.hero-media { position: absolute; inset: 0; overflow: hidden; background: var(--ink); transform-origin: 50% 0; will-change: transform; }
.js .hero-media { clip-path: inset(100% 0 0 0); transition: clip-path 1.6s var(--ease-in-out) .05s; }
.ready .hero-media { clip-path: inset(0 0 0 0); }
.hero-slides { position: absolute; inset: -5%; will-change: transform; }
.hero-slides img { position: absolute; inset: 0; height: 100%; opacity: 0; transform: scale(1.2); transition: opacity 1.6s var(--ease), transform 8s linear; }
.hero-slides img.active { opacity: 1; transform: scale(1.03); }
.hero-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #0006 0%, #0000 28%, #0000 42%, #000b 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  padding: 32px var(--gutter) 28px; will-change: transform, opacity;
}
.hero-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hero-top .eyebrow { margin: 0; }
.image-label {
  font-size: 11px; letter-spacing: .13em; padding: 8px 14px; border-radius: 30px;
  background: #ffffff1f; border: 1px solid #ffffff38; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.badge { position: absolute; right: var(--gutter); top: 96px; width: 120px; height: 120px; display: grid; place-items: center; }
.badge svg { position: absolute; inset: 0; animation: spin 16s linear infinite; }
.badge text { fill: white; font: 600 10.5px 'DM Sans', sans-serif; letter-spacing: 2.4px; }
.badge > span { font-size: 28px; color: var(--orange); animation: spin 8s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-title { font: 500 clamp(58px, 9.4vw, 172px)/.92 var(--display); letter-spacing: -.045em; margin: auto 0 32px; }
.hero-title .line { display: block; overflow: hidden; padding: 0 .04em .08em 0; }
.hero-title .line > span { display: inline-block; }
.hero-title .char { display: inline-block; will-change: transform; }
.js .hero-title .line > span { transform: translateY(110%); transition: transform 1.3s var(--ease); }
.js .hero-title .line:nth-child(2) > span { transition-delay: .12s; }
.ready .hero-title .line > span, .has-gsap .hero-title .line > span { transform: none; }
.hero-title em { color: var(--orange); font-size: 1.06em; }
.hero-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 32px; }
.hero-lede { margin: 0; font-size: 17px; color: #ffffffcc; }
.hero-actions { display: flex; }
.image-caption { justify-self: end; display: flex; align-items: center; gap: 20px; font-size: 13px; text-align: right; }
.image-caption strong { font-size: 28px; font-weight: 500; letter-spacing: -.02em; display: inline-block; }
.image-caption .swap { animation: swapIn .9s var(--ease); }
@keyframes swapIn { from { opacity: 0; transform: translateY(14px); filter: blur(4px); } }
.circle {
  border: 1px solid #fff8; border-radius: 50%; width: 56px; height: 56px; flex: none; display: grid; place-items: center; font-size: 22px;
  transition: background .4s, border-color .4s, transform .5s var(--ease);
}
.image-caption:hover .circle { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.hero-foot {
  font-size: 12px; color: #ffffffb3; border-top: 1px solid #ffffff33;
  display: flex; justify-content: space-between; align-items: center; padding-top: 18px; margin-top: 28px;
}
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
.scroll-cue i { width: 1px; height: 26px; background: #ffffff40; position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: white; animation: cue 1.8s var(--ease-in-out) infinite; }
@keyframes cue { to { top: 100%; } }
.slide-index { display: flex; align-items: center; gap: 12px; font-variant-numeric: tabular-nums; }
.slide-track { width: 70px; height: 1px; background: #ffffff40; overflow: hidden; }
.slide-track i { display: block; height: 100%; background: white; transform-origin: left; transform: scaleX(0); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding: 26px 0; }
.has-gsap .marquee-track { animation: none; }
.marquee-track span { display: inline-block; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font: 500 clamp(22px, 3vw, 40px)/1 var(--display); letter-spacing: -.025em; padding-right: 60px; white-space: nowrap; }
.marquee span::before { content: '✳'; color: var(--orange); margin-right: 60px; display: inline-block; }
.marquee span:nth-child(even) { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Collection ---------- */
.collection { padding: 100px var(--gutter) 100px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; }
.section-heading .eyebrow { margin-bottom: 14px; }
h2 { font: 500 clamp(34px, 4.4vw, 68px)/1.08 var(--display); letter-spacing: -.035em; margin: 0; }
.collection-number { font-size: 12px; letter-spacing: .1em; padding-bottom: 10px; }
.collection-bar { display: flex; align-items: center; justify-content: space-between; margin: 40px 0 36px; }
.filters { position: relative; display: flex; gap: 6px; flex-wrap: wrap; padding: 5px; border: 1px solid var(--line); border-radius: 40px; }
.filter-pill { position: absolute; left: 0; top: 0; height: 0; border-radius: 30px; background: var(--ink); transition: transform .55s var(--ease), width .55s var(--ease); z-index: 0; }
.filters button { position: relative; z-index: 1; background: transparent; border: 0; border-radius: 30px; padding: 9px 20px; font-size: 14px; transition: color .4s; }
.filters button.active { color: white; }
.no-pill .filters button.active { background: var(--ink); }
#result-count { font-size: 13px; color: var(--muted); }

.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 26px; }
.products article { opacity: 0; transform: translateY(40px); animation: cardIn .9s var(--ease) forwards; animation-delay: calc(var(--i) * 90ms); }
@keyframes cardIn { to { opacity: 1; transform: none; } }
.js .products:not(.in) article { animation-play-state: paused; }
.product-media {
  position: relative; background: var(--paper-2); overflow: hidden; aspect-ratio: 1/1.2; border-radius: 22px;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.product-media.tilting { transition: transform .12s linear, box-shadow .6s var(--ease); }
.product-media:hover { box-shadow: 0 30px 60px -25px #1d201c55; }
.product-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), #ffffff40, transparent 45%);
}
.product-media:hover::after { opacity: 1; }
.product-view { border: 0; padding: 0; width: 100%; height: 100%; display: block; background: transparent; cursor: none; }
@media not (hover: hover) { .product-view { cursor: pointer; } }
.product-media img { height: 100%; transform: scale(1.02); transition: transform 1.1s var(--ease), filter .8s; }
.product-media:hover img { transform: scale(1.09); }
.tag {
  position: absolute; pointer-events: none; left: 16px; top: 16px; padding: 6px 12px; font-size: 11px; letter-spacing: .05em;
  background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(8px); border-radius: 30px;
}
.add {
  position: absolute; bottom: 16px; right: 16px; height: 46px; min-width: 46px; border-radius: 30px; border: 0;
  background: var(--paper); font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 0; padding: 0 15px;
  transition: background .35s, color .35s, gap .5s var(--ease), padding .5s var(--ease);
  box-shadow: 0 8px 20px -10px #0006;
}
.add b { font-size: 22px; font-weight: 400; line-height: 1; transition: transform .5s var(--ease); }
.add .add-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .5s var(--ease); }
.product-media:hover .add, .add:focus-visible { gap: 8px; padding: 0 18px; }
.product-media:hover .add .add-label, .add:focus-visible .add-label { max-width: 90px; }
.add:hover { background: var(--orange); color: white; }
.add:hover b { transform: rotate(90deg); }
.product-info { display: flex; justify-content: space-between; gap: 10px; padding: 18px 4px 0; }
.product-info h3 { font-weight: 500; font-size: 19px; margin: 0; letter-spacing: -.01em; }
.product-info p { font-size: 13px; color: var(--muted); margin: 4px 0; }
.price { white-space: nowrap; font-size: 15px; font-variant-numeric: tabular-nums; }
.swatch { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: #ae8c60; margin: 6px 5px 0 0; outline: 1px solid #7775; outline-offset: 2px; }

/* ---------- Statement ---------- */
.statement { padding: 150px var(--gutter) 130px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.statement-text { font: 500 clamp(30px, 4.6vw, 74px)/1.14 var(--display); letter-spacing: -.035em; max-width: 1250px; margin: 0 0 56px; }
.statement-text em { font-size: 1.05em; }
.js .statement-text .w { opacity: .14; transition: opacity .35s; }
.js .statement-text .w.on { opacity: 1; }
.pill {
  display: inline-block; width: 1.9em; height: .82em; border-radius: 1em; overflow: hidden;
  vertical-align: -.06em; margin: 0 .04em; transition: width .9s var(--ease);
}
.pill img { height: 100%; transform: scale(1.4); transition: transform 1.2s var(--ease); }
.js .pill { width: 0; }
.js .pill.on { width: 1.9em; }
.pill.on img { transform: scale(1); }

/* ---------- Lookbook ---------- */
.lookbook { background: var(--ink); color: var(--paper); position: relative; }
.lookbook-track { display: grid; gap: 80px; padding: 110px var(--gutter); }
.lookbook-intro .eyebrow { color: #ffffffb3; }
.lookbook-intro h2 { font-size: clamp(40px, 5vw, 84px); }
.scroll-hint { display: none; margin-top: 36px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #ffffff99; }
.scroll-hint span { display: inline-block; animation: nudge 1.6s var(--ease-in-out) infinite; margin-left: 8px; }
@keyframes nudge { 50% { transform: translateX(10px); } }
.look { display: grid; gap: 28px; }
.look-media { position: relative; overflow: hidden; border-radius: 24px; aspect-ratio: 4/3.2; }
.look-media img { height: 100%; }
.look-num { display: block; font: 800 clamp(70px, 9vw, 170px)/.85 var(--display); color: transparent; -webkit-text-stroke: 1px #ffffff55; margin-bottom: 18px; }
.look-info h3 { font: 500 clamp(28px, 2.6vw, 44px)/1.1 var(--display); letter-spacing: -.03em; margin: 0 0 12px; }
.look-info p { color: #ffffffa6; margin: 0 0 8px; max-width: 420px; }
.look-info .material { font-size: 13px; color: #ffffff73; }
.look-buy { display: flex; align-items: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.look-buy .price { font: 500 26px/1 var(--display); }
.look-buy .text-link { background: none; border: 0; padding: 0; color: inherit; }
.lookbook-progress { display: none; }
.lookbook .button::before { background: var(--orange); }

@media (min-width: 901px) {
  .has-gsap .lookbook-pin { position: relative; height: 100svh; overflow: hidden; display: flex; align-items: center; }
  .has-gsap .lookbook-track { display: flex; align-items: center; gap: 7vw; padding: 0 var(--gutter); height: 100%; width: max-content; will-change: transform; }
  .has-gsap .lookbook-intro { flex: none; width: 34vw; }
  .has-gsap .scroll-hint { display: block; }
  .has-gsap .look { flex: none; width: min(78vw, 1250px); grid-template-columns: 1.35fr 1fr; align-items: center; gap: 56px; }
  .has-gsap .look-media { aspect-ratio: auto; height: 72svh; }
  .has-gsap .look-media img { width: 124%; max-width: none; margin-left: -12%; }
  .has-gsap .lookbook-progress { display: block; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 40px; height: 1px; background: #ffffff26; }
  .has-gsap .lookbook-progress i { display: block; height: 100%; background: var(--orange); transform-origin: left; transform: scaleX(0); }
}

/* ---------- Zoom reveal ---------- */
.zoom-pin { padding: 110px var(--gutter); text-align: center; }
.zoom-title { font-size: clamp(56px, 11vw, 200px); line-height: .9; letter-spacing: -.05em; margin-bottom: 40px; }
.zoom-title span { display: inline-block; }
.zoom-media { position: relative; height: 80svh; border-radius: 24px; overflow: hidden; }
.zoom-media img { height: 100%; }
.zoom-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #0000 45%, #000a); }
.zoom-caption { text-align: left; margin-top: 28px; }
.zoom-line { font: 500 clamp(22px, 2.4vw, 36px)/1.2 var(--display); letter-spacing: -.02em; max-width: 620px; margin: 0 0 28px; }
.has-gsap .zoom-pin { position: relative; height: 100svh; padding: 0; overflow: hidden; display: grid; place-items: center; }
.has-gsap .zoom-title { position: relative; z-index: 2; margin: 0; white-space: nowrap; pointer-events: none; }
.has-gsap .zoom-pin { isolation: isolate; background: var(--paper); }
.has-gsap .zoom-media { position: absolute; inset: 0; height: auto; border-radius: 0; z-index: 1; will-change: clip-path; }
.has-gsap .zoom-media img { will-change: transform; }
.has-gsap .zoom-caption { position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter); bottom: 56px; margin: 0; color: white; }
.has-gsap .zoom-caption .eyebrow { color: #ffffffcc; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--paper); margin-top: 0; border-top: 1px solid #ffffff14; padding: 80px var(--gutter) 28px; overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.footer-lede { font: 500 clamp(32px, 4vw, 60px)/1.08 var(--display); letter-spacing: -.035em; margin: 0; }
.footer-word { display: flex; justify-content: space-between; font: 800 clamp(80px, 22vw, 360px)/.8 var(--display); letter-spacing: 0; margin: 70px 0 30px; overflow: hidden; padding-bottom: .04em; }
.footer-word span { display: inline-block; transition: transform 1.2s var(--ease), color .4s; transition-delay: calc(var(--i, 0) * 60ms); }
.js .footer-word span { transform: translateY(100%); }
.footer-word.in span { transform: none; }
.footer-word span:hover { color: var(--orange); transition-delay: 0s; }
.has-gsap .footer-word span { transform: none; transition: color .4s; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #ffffff22; padding-top: 24px; font-size: 13px; color: #ffffffaa; }
.footer-bottom .logo { font-size: 26px; color: var(--paper); }

/* ---------- Dialogs ---------- */
dialog { border: 0; padding: 32px; max-width: min(900px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); background: var(--paper); color: var(--ink); border-radius: 26px; }
dialog::backdrop { background: #1d201c73; backdrop-filter: blur(6px); }
dialog[open] { animation: pop .6s var(--ease); }
dialog[open]::backdrop { animation: fade .5s var(--ease); }
dialog.closing { animation: popOut .35s var(--ease-in-out) forwards; }
dialog.closing::backdrop { animation: fade .35s reverse forwards; }
@keyframes pop { from { opacity: 0; transform: translateY(30px) scale(.96); } }
@keyframes popOut { to { opacity: 0; transform: translateY(20px) scale(.97); } }
@keyframes fade { from { opacity: 0; } }
.close {
  border: 1px solid var(--line); background: var(--paper); border-radius: 50%; font-size: 26px; line-height: 1; width: 44px; height: 44px;
  transition: transform .5s var(--ease), background .3s, color .3s;
}
.close:hover { transform: rotate(90deg); background: var(--ink); color: white; }
#product-dialog > .close { position: absolute; right: 16px; top: 16px; z-index: 1; }
#detail { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
#detail img { height: 460px; border-radius: 18px; }
#detail h2 { font-size: 38px; margin-bottom: 6px; }
#detail p { color: var(--muted); }
#detail strong { font-size: 22px; font-weight: 500; }
#detail .button { width: 100%; margin-top: 22px; }
#detail > * { animation: cardIn .8s var(--ease) both; }
#detail > div { animation-delay: .1s; }

#cart-dialog { margin: 0 0 0 auto; height: 100dvh; max-height: 100dvh; width: 480px; max-width: 100vw; border-radius: 26px 0 0 26px; display: flex; flex-direction: column; }
#cart-dialog:not([open]) { display: none; }
#cart-dialog[open] { animation: slideIn .7s var(--ease); }
#cart-dialog.closing { animation: slideOut .45s var(--ease-in-out) forwards; }
@keyframes slideIn { from { transform: translateX(100%); } }
@keyframes slideOut { to { transform: translateX(100%); } }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.drawer-top h2 { font-size: 34px; }
#cart-items { flex: 1; overflow-y: auto; }
.cart-row { display: grid; grid-template-columns: 84px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); animation: cardIn .6s var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
.cart-row img { height: 100px; border-radius: 12px; }
.cart-row h3 { margin: 0; font-size: 16px; font-weight: 500; }
.cart-row p { margin: 2px 0 12px; font-size: 14px; color: var(--muted); }
.quantity { display: flex; gap: 12px; align-items: center; }
.quantity button { border: 1px solid var(--line); background: transparent; min-width: 32px; height: 32px; border-radius: 50%; transition: background .3s, color .3s; }
.quantity button:hover { background: var(--ink); color: white; }
.quantity span { min-width: 16px; text-align: center; font-variant-numeric: tabular-nums; }
.quantity .remove { margin-left: auto; border: 0; border-radius: 0; text-decoration: underline; font-size: 12px; }
.quantity .remove:hover { background: none; color: var(--orange); }
#cart-summary { padding-top: 24px; }
#cart-summary .total { display: flex; justify-content: space-between; font-size: 20px; }
#cart-summary .total strong { font-weight: 500; }
#cart-summary .button { width: 100%; margin-top: 22px; }
#cart-summary small { display: block; color: var(--muted); margin: 10px 0; font-size: 12px; }
.empty { padding: 60px 0; text-align: center; animation: cardIn .7s var(--ease) both; }
.empty h3 { font: 500 26px/1.2 var(--display); letter-spacing: -.03em; }
.empty p { color: var(--muted); }
.empty .check {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: var(--orange); color: white; display: grid; place-items: center;
  font-size: 30px; animation: bump .8s var(--ease) .2s both;
}

/* ---------- Fly-to-bag + toast ---------- */
.fly { position: fixed; z-index: 85; pointer-events: none; border-radius: 16px; object-fit: cover; box-shadow: 0 20px 40px -15px #0007; }
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 30px) scale(.95); background: var(--ink); color: white;
  padding: 13px 26px; z-index: 75; opacity: 0; pointer-events: none; min-width: 230px; text-align: center; border-radius: 40px;
  transition: opacity .35s var(--ease), transform .5s var(--ease); font-size: 14px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0) scale(1); }

/* ---------- Responsive ---------- */
@media (min-width: 1800px) { body { max-width: 1800px; margin: auto; } }
@media (max-width: 900px) {
  .announcement { justify-content: center; }
  .announce-long { display: none; }
  .logo { font-size: 28px; }
  nav { gap: 18px; }
  nav a:last-child { display: none; }
  .bag-label { display: none; }
  .bag { padding: 5px; }
  .hero { height: max(560px, calc(100svh - 110px)); }
  .hero-content { padding: 24px var(--gutter) 22px; }
  .hero-title { font-size: clamp(50px, 14vw, 96px); margin-bottom: 22px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 22px; }
  .hero-lede { font-size: 15px; }
  .image-caption, .image-label, .hide-sm { display: none; }
  .hero-foot { margin-top: 22px; }
  .badge { width: 92px; height: 92px; top: 70px; }
  .collection { padding: 70px var(--gutter); }
  .section-heading { align-items: start; }
  .collection-number { display: none; }
  .collection-bar { align-items: start; gap: 16px; flex-direction: column; }
  .filters button { padding: 8px 14px; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 14px; }
  .product-info { flex-direction: column; gap: 0; }
  .product-info h3 { font-size: 16px; }
  .price { font-size: 14px; }
  .add .add-label { display: none; }
  .statement { padding: 100px var(--gutter) 90px; }
  .statement-text { margin-bottom: 40px; }
  .lookbook-track { padding: 80px var(--gutter); gap: 64px; }
  .has-gsap .zoom-caption { bottom: 32px; }
  footer { padding-top: 60px; }
  .footer-bottom { flex-wrap: wrap; gap: 10px; }
  dialog { padding: 24px; }
  #detail { grid-template-columns: 1fr; gap: 20px; }
  #detail img { height: 280px; }
  #detail h2 { font-size: 28px; }
  #cart-dialog { border-radius: 0; }
}
@media (max-width: 600px) {
  .badge { display: none; }
  .zoom-title { font-size: 19vw; }
  .zoom-title span { display: block; }
}
@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
  .product-info { flex-direction: row; }
  .product-media { aspect-ratio: 1/1.05; }
  .filters { flex-wrap: nowrap; overflow-x: auto; max-width: 100%; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { padding: 8px 12px; white-space: nowrap; flex: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .marquee-track, .badge svg, .badge > span, .scroll-cue i::after, .scroll-hint span { animation: none !important; }
  .js .loader { display: none; }
}
