:root {
  --cocoa: #59423c;
  --cocoa-deep: #3f2e2a;
  --ivory: #f3ebdf;
  --paper: #f8f3eb;
  --muted: #8a7670;
  --body2: #6d5852;
  --line: rgba(89, 66, 60, .18);
  --accent: #59423c;
  --gutter: clamp(16px, 3vw, 40px);
  --bar: 68px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --heart-fill: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-7.5-4.6-9.6-9.2C.9 8.4 3 4.5 6.7 4.5c2.2 0 3.6 1.2 4.3 2.4h2c.7-1.2 2.1-2.4 4.3-2.4 3.7 0 5.8 3.9 4.3 7.3C19.5 16.4 12 21 12 21z'/%3E%3C/svg%3E");
  --heart-line: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 20.2s-7-4.3-8.9-8.6C1.7 8.4 3.6 5 6.9 5c2 0 3.3 1.1 4 2.2h2.2c.7-1.1 2-2.2 4-2.2 3.3 0 5.2 3.4 3.8 6.6-1.9 4.3-8.9 8.6-8.9 8.6z'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-padding-top: calc(var(--bar) + 8px); }
body {
  margin: 0; background: var(--ivory); color: var(--cocoa);
  font: 400 17px/1.55 var(--font); -webkit-font-smoothing: antialiased;
  overflow-x: hidden; -webkit-tap-highlight-color: transparent;
}
body.no-hero main { padding-top: var(--bar); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p, ul, figure, dl, dd { margin: 0; }
[hidden] { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--cocoa); color: var(--ivory); padding: 10px 16px; border-radius: 6px; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.muted { color: var(--muted); font-size: 15px; }
.h2 { font-size: clamp(30px, 3.6vw, 52px); line-height: 1; letter-spacing: -.045em; font-weight: 700; }
.page-title { font-size: clamp(52px, 8vw, 128px); line-height: .9; letter-spacing: -.06em; font-weight: 700; }
.page-title.light { color: var(--ivory); }
.lead { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.4; letter-spacing: -.01em; margin-top: 22px; max-width: 30em; }
.more { font-weight: 700; font-size: 15px; text-underline-offset: 4px; min-height: 44px; display: inline-flex; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 26px; border: 0; border-radius: 999px;
  background: var(--cocoa); color: var(--ivory);
  font-weight: 700; font-size: 15px; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, transform .15s var(--ease), box-shadow .2s;
}
.btn:hover { background: var(--cocoa-deep); }
.btn:active { transform: scale(.97); }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn-ivory { background: var(--ivory); color: var(--cocoa); }
.btn-ivory:hover { background: #fff; }
.btn-line-dark { background: transparent; color: var(--cocoa); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-line-dark:hover { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--cocoa); }

.heart { display: inline-block; background: currentColor; -webkit-mask: var(--heart-fill) center/contain no-repeat; mask: var(--heart-fill) center/contain no-repeat; }

/* Top bar */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: var(--bar); padding: 0 var(--gutter); color: var(--ivory);
  transition: background .35s, color .35s, box-shadow .35s;
}
.has-hero .bar:not(.solid) { background: linear-gradient(180deg, rgba(40, 28, 24, .35), rgba(40, 28, 24, 0)); }
.bar.solid { background: rgba(243, 235, 223, .95); color: var(--cocoa); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.bar-logo { position: relative; display: block; width: 84px; height: 44px; }
.bar-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .35s; }
.logo-dark { opacity: 0; }
.bar.solid .logo-dark, .menu-open .logo-dark { opacity: 1; }
.bar.solid .logo-light, .menu-open .logo-light { opacity: 0; }
.bar-nav { display: flex; align-items: center; gap: 28px; }
.bar-nav a { text-decoration: none; font-weight: 700; font-size: 15px; position: relative; padding: 6px 0; }
.bar-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.bar-nav a:hover::after, .bar-nav a[aria-current]::after { transform: scaleX(1); }
.bar-div { width: 1px; height: 16px; background: currentColor; opacity: .35; }
.bar-end { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.has-hero .bar:not(.solid) .bar-cta { background: var(--ivory); color: var(--cocoa); }
.picks-link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; min-width: 44px; justify-content: center; text-decoration: none; font-weight: 700; font-size: 15px; }
.picks-link .heart { width: 16px; height: 16px; }
.menu-btn { display: none; position: relative; width: 44px; height: 44px; margin-right: -10px; border: 0; background: none; cursor: pointer; color: inherit; }
.menu-btn span { position: absolute; left: 11px; right: 11px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-btn span:first-child { top: 17px; }
.menu-btn span:last-child { top: 25px; }
.menu-open .menu-btn span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-btn span:last-child { top: 21px; transform: rotate(-45deg); }
.menu-open .bar { background: var(--ivory); color: var(--cocoa); box-shadow: none; }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--ivory); color: var(--cocoa);
  display: flex; flex-direction: column; padding: calc(var(--bar) + 16px) var(--gutter) calc(24px + var(--safe-b));
  overflow-y: auto; animation: menuIn .4s var(--ease);
}
@keyframes menuIn { from { opacity: 0; } }
.menu-main { display: flex; flex-direction: column; }
.menu-main a { display: grid; grid-template-columns: 64px 1fr; grid-template-rows: auto auto; column-gap: 16px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.menu-main img { grid-row: 1 / 3; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.menu-main span { font-size: 30px; font-weight: 700; letter-spacing: -.045em; line-height: 1; align-self: end; }
.menu-main small { font-size: 13px; color: var(--muted); font-weight: 700; align-self: start; margin-top: 4px; }
.menu-sub { display: flex; flex-wrap: wrap; gap: 4px 22px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.menu-sub a { font-size: 19px; font-weight: 700; text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.menu-cta { margin-top: auto; width: 100%; min-height: 56px; font-size: 16px; }
.menu-main a, .menu-sub, .menu-cta { opacity: 0; animation: fadeUp .5s var(--ease) forwards; }
.menu-main a:nth-child(2) { animation-delay: .04s; } .menu-main a:nth-child(3) { animation-delay: .08s; } .menu-main a:nth-child(4) { animation-delay: .12s; }
.menu-sub { animation-delay: .16s; } .menu-cta { animation-delay: .2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Home hero */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; background: var(--cocoa); color: var(--ivory); }
.hero-img, .hero-img img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img img { object-fit: cover; object-position: 50% 30%; transform: scale(1.06); animation: settle 2.4s var(--ease) forwards, drift 22s ease-in-out 2.4s infinite alternate; }
@keyframes drift { from { transform: scale(1) translate3d(0, 0, 0); } to { transform: scale(1.07) translate3d(-1.2%, -1%, 0); } }
.up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s var(--ease) forwards; }
.hero-mark.up { animation-delay: .15s; } .hero-status.up { animation-delay: .45s; } .hero-offer.up { animation-delay: .55s; } .quick.up { animation-delay: .65s; } .range-name.up { animation-delay: .2s; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40, 28, 24, .25) 0%, rgba(40, 28, 24, 0) 20%, rgba(40, 28, 24, 0) 45%, rgba(40, 28, 24, .7) 100%); pointer-events: none; }
@keyframes settle { to { transform: scale(1); } }
.hero-inner { position: absolute; inset: auto 0 0; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; padding: 0 var(--gutter) clamp(28px, 4vw, 52px); }
.hero-mark { width: min(46vw, 700px); will-change: transform; }
.hero-mark img { width: 100%; height: auto; }
.hero-side { display: grid; gap: 14px; width: min(560px, 42vw); padding-bottom: 6px; }
.hero-status { font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -.035em; line-height: 1; }
.hero-offer { font-size: 17px; line-height: 1.4; max-width: 30em; }

/* Quick email forms */
.quick { position: relative; display: flex; width: 100%; padding: 5px; border-radius: 999px; background: var(--ivory); color: var(--cocoa); }
.quick input[type=email] { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0 18px; color: var(--cocoa); font-size: 16px; outline: none; }
.quick input::placeholder { color: var(--muted); }
.quick .form-msg { position: absolute; top: calc(100% + 8px); left: 20px; font-size: 14px; }
.hero .quick .form-msg { color: var(--ivory); }
.quick.ok { justify-content: space-between; align-items: center; min-height: 60px; padding: 5px 5px 5px 22px; font-weight: 700; gap: 12px; }
.quick-lg { padding: 6px; }
.quick-lg input[type=email] { height: 56px; font-size: 18px; padding: 0 22px; }
.quick-lg .btn { min-height: 56px; padding: 0 30px; font-size: 16px; }
.quick-line { background: transparent; padding: 0; border-radius: 0; box-shadow: inset 0 -1.5px 0 var(--line); }
.quick-line input[type=email] { padding: 0; height: 52px; }
.quick-line .btn { min-height: 42px; margin: 5px 0; }
.quick-line .form-msg { left: 0; }
.quick-line.ok { padding: 0; min-height: 52px; }

/* Home sections */
.why, .tiles-wrap, .others, .pairs, .seen, .picks-sec, .draw { padding: clamp(72px, 9vw, 140px) var(--gutter) 0; }
.why-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px 20px; margin-bottom: clamp(24px, 3vw, 44px); flex-wrap: wrap; }
.why { background: var(--cocoa); color: var(--ivory); padding-bottom: clamp(72px, 9vw, 140px); }
.why-home { margin-top: clamp(64px, 8vw, 120px); }
.why-wl { margin-top: clamp(72px, 9vw, 140px); }
.why .more { color: var(--ivory); }
.why-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.perk { position: relative; display: flex; flex-direction: column; }
.perk-img { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; }
.perk-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.2s var(--ease); will-change: transform; }
.perk:hover .perk-img img { transform: scale(1.02); }
.perk-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(40, 28, 24, .55)); }
.perk-big { position: static; margin-top: -.62em; padding-left: 14px; display: flex; align-items: baseline; gap: 6px; line-height: .8; font-weight: 700; letter-spacing: -.06em; }
.perk-big .num { font-size: clamp(64px, 6.4vw, 108px); }
.perk-big .unit { font-size: clamp(18px, 1.5vw, 24px); letter-spacing: -.02em; color: var(--accent); }
.perk h3 { margin-top: 18px; font-size: clamp(21px, 1.8vw, 26px); line-height: 1.08; letter-spacing: -.035em; font-weight: 700; }
.perk p:last-child { margin-top: 8px; font-size: 15px; line-height: 1.5; color: rgba(243, 235, 223, .78); }
.perk .num { display: inline-block; min-width: 1.2em; }
.perk .num.tick { animation: ticknum .5s var(--ease); }
@keyframes ticknum { from { transform: translateY(.15em); opacity: .4; } }

/* Ticker */
.ticker { overflow: hidden; background: var(--cocoa); color: var(--ivory); padding: 12px 0; border-bottom: 1px solid rgba(243, 235, 223, .15); }
.ticker-track { display: flex; width: max-content; animation: mq 34s linear infinite; }
.ticker span { padding: 0 24px; font-weight: 700; font-size: 14px; letter-spacing: -.01em; white-space: nowrap; }
.ticker span::after { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ivory); margin-left: 48px; vertical-align: middle; opacity: .6; }
@keyframes mq { to { transform: translate3d(-50%, 0, 0); } }

/* Collection strip */
.strip { padding: clamp(72px, 9vw, 140px) 0 0; }
.strip .why-head { padding: 0 var(--gutter); }
.mq { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mq-track { display: flex; gap: 12px; width: max-content; animation: mq 90s linear infinite; }
.mq:hover .mq-track { animation-play-state: paused; }
.mq-item { flex: 0 0 clamp(150px, 15vw, 230px); aspect-ratio: 1; border-radius: 4px; background: var(--paper); overflow: hidden; transition: transform .4s var(--ease); }
.mq-item img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.mq-item:hover { transform: translateY(-6px); }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, 1.2vw, 18px); }
.tile { position: relative; display: block; aspect-ratio: 3 / 4.2; border-radius: 4px; overflow: hidden; color: var(--ivory); text-decoration: none; background: var(--cocoa); }
.tile img { width: 100%; height: 112%; margin-top: -6%; object-fit: cover; transition: transform 1s var(--ease); will-change: transform; }
.tile:hover img { scale: 1.05; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40, 28, 24, 0) 45%, rgba(40, 28, 24, .62)); }
.tile-name { position: absolute; z-index: 2; left: 18px; bottom: 44px; font-size: clamp(40px, 4.6vw, 72px); font-weight: 700; letter-spacing: -.06em; line-height: 1; }
.tile-count { position: absolute; z-index: 2; left: 20px; bottom: 18px; font-size: 14px; font-weight: 700; }
.tile-count::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-right: 8px; box-shadow: 0 0 0 1.5px var(--ivory); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(80px, 10vw, 150px) var(--gutter) 0; }
.story-img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; object-position: 38% 50%; }
.story-copy { max-width: 34em; }
.story-head { font-size: clamp(40px, 5.2vw, 78px); line-height: .98; letter-spacing: -.045em; font-weight: 700; margin-bottom: clamp(24px, 3vw, 40px); }
.story-copy p { font-size: clamp(17px, 1.3vw, 19px); }
.story-copy .btn { margin-top: 28px; }

/* Cocoa join band */
.band { position: relative; margin-top: clamp(100px, 12vw, 180px); background: var(--cocoa); color: var(--ivory); padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(72px, 8vw, 110px); }
.band-wave { position: absolute; left: 0; right: 0; bottom: calc(100% - 1px); height: clamp(30px, 6vw, 90px); overflow: hidden; pointer-events: none; }
.band-edge { display: block; width: 200%; height: 100%; fill: var(--cocoa); animation: mq 18s linear infinite; }
.band-inner { max-width: 1100px; }
.band-head { font-size: clamp(56px, 9vw, 150px); line-height: .88; letter-spacing: -.06em; font-weight: 700; }
.band-copy { margin-top: 24px; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.4; max-width: 30em; color: rgba(243, 235, 223, .88); }
.band-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.band-link { font-weight: 700; text-underline-offset: 4px; min-height: 44px; display: inline-flex; align-items: center; }

/* Range pages */
.range-hero { position: relative; height: 100vh; height: 100svh; min-height: 560px; max-height: 980px; overflow: hidden; color: var(--ivory); background: var(--cocoa); }
.range-main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transform: scale(1.05); animation: settle 2.2s var(--ease) forwards, drift 22s ease-in-out 2.2s infinite alternate; }
.range-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40, 28, 24, .3) 0%, rgba(40, 28, 24, 0) 25%, rgba(40, 28, 24, 0) 55%, rgba(40, 28, 24, .5) 100%); }
.range-hero-inner { position: absolute; inset: auto 0 0; z-index: 2; padding: 0 var(--gutter); overflow: hidden; }
.range-name { font-size: clamp(110px, 24vw, 400px); line-height: .8; letter-spacing: -.065em; font-weight: 700; margin-left: -.04em; margin-bottom: -.06em; }
.range-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(20px, 5vw, 80px); padding: clamp(44px, 6vw, 90px) var(--gutter) clamp(28px, 4vw, 56px); align-items: end; }
.range-line { font-size: clamp(28px, 3.4vw, 52px); line-height: 1.02; letter-spacing: -.045em; font-weight: 700; }
.range-desc { font-size: clamp(17px, 1.4vw, 20px); color: var(--body2); max-width: 28em; }
.shop { padding: 0 var(--gutter); }
.shop-bar { position: sticky; top: var(--bar); z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; margin-bottom: 18px; background: var(--ivory); border-bottom: 1px solid var(--line); }
.filters { display: flex; gap: 6px; }
.filters button { min-height: 44px; padding: 0 18px; border: 0; border-radius: 999px; background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 700; font-size: 14px; cursor: pointer; transition: background .2s, color .2s; }
.filters button[aria-pressed=true] { background: var(--cocoa); color: var(--ivory); box-shadow: none; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 44px) clamp(12px, 1.4vw, 20px); grid-auto-flow: dense; }
.grid-look { grid-column: span 2; position: relative; margin: 0; display: flex; flex-direction: column; }
.grid-look-tall { grid-row: span 2; }
.grid-look img { width: 100%; border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; }
.grid-look-tall img { flex: 1; min-height: 0; aspect-ratio: auto; }
.grid-look figcaption, .seen-fig figcaption { margin-top: 10px; font-size: 14px; font-weight: 700; }
.card.is-hidden { display: none; }
.others-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.2vw, 18px); }
.other { position: relative; display: block; aspect-ratio: 3 / 2; border-radius: 4px; overflow: hidden; color: var(--ivory); text-decoration: none; }
.other img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.other:hover img { transform: scale(1.05); }
.other::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(40, 28, 24, .55)); }
.other span { position: absolute; z-index: 2; left: 16px; bottom: 10px; font-size: clamp(34px, 3.6vw, 56px); font-weight: 700; letter-spacing: -.06em; }

/* Product cards */
.card { position: relative; min-width: 0; }
.card-link { display: block; text-decoration: none; }
.card-img { position: relative; aspect-ratio: 1; background: var(--paper); border-radius: 4px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: transform .6s var(--ease), opacity .25s; }
.card-link:hover .card-img img { transform: scale(1.04); }
.card-img img.swap, .pdp-img img.swap { opacity: 0; }
.card-img .alt { position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease); }
.card-link:hover .card-img .alt { opacity: 1; }
.card-link:hover .card-img img:not(.alt) { opacity: 0; transform: none; }
.want {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(248, 243, 235, .92); color: var(--cocoa); display: grid; place-items: center;
  transition: transform .2s var(--ease), background .2s, color .2s;
}
.want::before { content: ""; width: 18px; height: 18px; background: currentColor; -webkit-mask: var(--heart-line) center/contain no-repeat; mask: var(--heart-line) center/contain no-repeat; }
.want[aria-pressed=true] { background: var(--cocoa); color: var(--ivory); }
.want[aria-pressed=true]::before { -webkit-mask-image: var(--heart-fill); mask-image: var(--heart-fill); }
.pop { animation: pop .35s var(--ease); }
@keyframes pop { 50% { transform: scale(1.16); } }
.card-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-top: 12px; }
.card-name { font-size: 15px; font-weight: 700; letter-spacing: -.01em; line-height: 1.25; }
.card-for { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.card-colour { font-size: 13px; color: var(--muted); margin-top: 2px; }
.swatches { display: flex; flex-wrap: wrap; margin-top: 4px; margin-left: -8px; }
.sw { position: relative; width: 38px; height: 38px; border: 0; padding: 0; cursor: pointer; background: none; border-radius: 50%; }
.sw::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.sw::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; box-shadow: 0 0 0 1.5px transparent; transition: box-shadow .2s; }
.sw[aria-pressed=true]::after { box-shadow: 0 0 0 1.5px var(--cocoa); }
.swatches-lg { margin-top: 6px; }
.swatches-lg .sw { width: 50px; height: 50px; }
.swatches-lg .sw::before { inset: 10px; }

.rail { display: flex; gap: clamp(12px, 1.4vw, 20px); overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter); margin: 0 calc(var(--gutter) * -1); padding: 4px var(--gutter) 16px; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail .card { flex: 0 0 clamp(200px, 21vw, 300px); scroll-snap-align: start; }

/* Product page */
.pdp { padding: 18px var(--gutter) 0; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 18px; min-height: 32px; }
.crumbs a { font-weight: 700; color: var(--cocoa); text-decoration: none; }
.pdp-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.pdp-media { position: sticky; top: calc(var(--bar) + 16px); }
.pdp-img { position: relative; aspect-ratio: 1; background: var(--paper); border-radius: 4px; overflow: hidden; }
.pdp-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transition: opacity .25s; }
.pdp-gallery, .dots { display: none; }
.thumbs { display: flex; gap: 10px; margin-top: 10px; }
.thumb { width: 84px; aspect-ratio: 1; padding: 0; border: 0; border-radius: 4px; background: var(--paper); cursor: pointer; overflow: hidden; transition: box-shadow .2s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.thumb[aria-pressed=true] { box-shadow: 0 0 0 1.5px var(--cocoa); }
.pdp-info { padding-top: clamp(0px, 2vw, 24px); }
.pdp-range { font-size: 14px; color: var(--muted); font-weight: 700; }
.pdp-name { font-size: clamp(38px, 4.6vw, 68px); line-height: .98; letter-spacing: -.05em; font-weight: 700; margin-top: 8px; }
.pdp-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 6px 14px; border-radius: 999px; background: var(--paper); font-size: 14px; font-weight: 700; }
.pdp-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.pdp-colour { margin-top: 26px; }
.pdp-colour > p { font-size: 15px; }
.pdp-colour strong { color: var(--cocoa); font-size: 15px; }
.pdp-desc { margin-top: 20px; font-size: 18px; line-height: 1.5; max-width: 30em; }
.pdp-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 30px; max-width: 480px; }
.pdp-save .save-on { display: none; }
.pdp-save[aria-pressed=true] { background: var(--cocoa); color: var(--ivory); box-shadow: none; }
.pdp-save[aria-pressed=true] .save-on { display: inline; }
.pdp-save[aria-pressed=true] .save-off { display: none; }
.pdp-note { margin-top: 16px; font-size: 14px; color: var(--muted); max-width: 32em; }
.pdp-facts { display: grid; grid-template-columns: 1fr 1fr; margin-top: 36px; border-top: 1px solid var(--line); }
.pdp-facts div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.pdp-facts dt { font-size: 13px; color: var(--muted); }
.pdp-facts dd { font-weight: 700; font-size: 15px; }
.seen .h2, .pairs .h2, .others .h2 { margin-bottom: clamp(20px, 2.4vw, 32px); }
.seen-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.4vw, 20px); align-items: start; }
.seen-row.one { grid-template-columns: 1fr; max-width: 1000px; }
.seen-fig img { width: 100%; border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; }
.seen-fig.tall img { aspect-ratio: 4 / 5; }
.sticky-cta { display: none; }

/* About */
.about-hero { position: relative; height: 88vh; height: 88svh; min-height: 520px; overflow: hidden; background: var(--cocoa); }
.about-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40, 28, 24, .3), transparent 25%, transparent 55%, rgba(40, 28, 24, .55)); }
.about-hero-inner { position: absolute; inset: auto 0 0; z-index: 2; padding: 0 var(--gutter) clamp(24px, 4vw, 48px); }
.about-story { padding: clamp(72px, 9vw, 140px) var(--gutter) 0; max-width: 1400px; }
.about-story .story-head { max-width: 12em; }
.about-cols { columns: 2; column-gap: clamp(32px, 5vw, 80px); font-size: clamp(17px, 1.3vw, 19px); }
.about-cols p { break-inside: avoid; margin-bottom: 1em; }
.about-pair { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(12px, 1.4vw, 20px); padding: clamp(56px, 7vw, 100px) var(--gutter) 0; align-items: end; }
.about-pair img { width: 100%; border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; }
.about-pair figure:last-child img { aspect-ratio: 4 / 5; }
.about-ranges { padding: clamp(72px, 9vw, 140px) var(--gutter) 0; }
.about-ranges .h2 { margin-bottom: 28px; }
.about-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.about-range { text-decoration: none; padding-top: 18px; border-top: 2px solid var(--accent); transition: transform .3s var(--ease); }
.about-range:hover { transform: translateY(-4px); }
.about-range h3 { font-size: clamp(32px, 3.2vw, 48px); letter-spacing: -.055em; line-height: 1; }
.about-range p { margin-top: 10px; font-size: 16px; color: var(--body2); }
.about-quote { padding: clamp(80px, 11vw, 170px) var(--gutter) 0; text-align: center; }
.about-quote p { font-size: clamp(44px, 7vw, 110px); line-height: .95; letter-spacing: -.06em; font-weight: 700; }

/* Waitlist */
.wl { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 110px); align-items: start; padding: clamp(40px, 6vw, 90px) var(--gutter) 0; }
.perks-stack { margin-top: clamp(36px, 4vw, 56px); grid-template-columns: 1fr 1fr; }
.wl-panel { position: sticky; top: calc(var(--bar) + 20px); background: var(--paper); border-radius: 6px; padding: clamp(24px, 3vw, 44px); }
.full { display: grid; gap: 20px; }
.field { display: grid; gap: 6px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-size: 14px; font-weight: 700; padding: 0; margin-bottom: 4px; }
.full input:not([type=checkbox]), .full select, .full textarea {
  width: 100%; height: 52px; padding: 0 2px; border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0;
  background: transparent; color: var(--cocoa); font-size: 18px; outline: none; transition: border-color .2s;
}
.full textarea { height: auto; padding: 12px 2px; resize: vertical; line-height: 1.5; }
.full input:not([type=checkbox]):focus, .full select:focus, .full textarea:focus { border-bottom-color: var(--cocoa); }
.full select { appearance: none; -webkit-appearance: none; cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2359423c' stroke-width='1.6'/%3E%3C/svg%3E") right 4px center/12px no-repeat; }
.full [aria-invalid=true] { border-bottom-color: #c0392b !important; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: inline-flex; align-items: center; height: 44px; padding: 0 20px; border-radius: 999px; box-shadow: inset 0 0 0 1.5px var(--line); font-weight: 700; font-size: 15px; transition: background .2s, color .2s, box-shadow .2s; }
.chips input:checked + span { background: var(--cocoa); color: var(--ivory); box-shadow: none; }
.chips input:focus-visible + span { outline: 2px solid var(--cocoa); outline-offset: 3px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--body2); cursor: pointer; }
.consent input { width: 22px; height: 22px; margin: 0; accent-color: var(--cocoa); flex-shrink: 0; }
.consent.bad span { color: #c0392b; }
.picks-note { font-size: 14px; color: var(--muted); }
.full .btn { min-height: 56px; font-size: 16px; }
.form-msg:empty { display: none; }
.full .form-msg { font-size: 14px; color: #c0392b; }
.done-head { font-size: clamp(34px, 3.6vw, 52px); line-height: 1; letter-spacing: -.045em; font-weight: 700; }
.done-copy { margin-top: 14px; color: var(--body2); }
.entries { margin-top: 24px; font-size: 17px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.entries-n { font-size: clamp(64px, 7vw, 104px); line-height: .8; font-weight: 700; letter-spacing: -.06em; }
.share-head { margin-top: 28px; font-size: 20px; letter-spacing: -.02em; }
.share { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.share-url { flex: 1 1 240px; min-width: 0; height: 50px; padding: 0 18px; border-radius: 999px; border: 0; background: var(--ivory); color: var(--cocoa); font-size: 16px; outline: none; }
.profile { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.profile-q { width: 100%; font-size: 14px; font-weight: 700; }
.profile .btn { min-height: 44px; }
.draw-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.4vw, 36px); margin-top: 28px; }
.draw-list li { padding-top: 18px; border-top: 2px solid var(--cocoa); }
.draw-list h3 { font-size: clamp(30px, 2.8vw, 40px); letter-spacing: -.05em; line-height: 1; }
.draw-list p { margin-top: 10px; color: var(--body2); }
.draw { padding-bottom: clamp(80px, 10vw, 140px); }

/* FAQ, contact, doc */
.page-head { padding: clamp(48px, 7vw, 110px) var(--gutter) 0; }
.faq { max-width: 980px; padding: clamp(36px, 5vw, 72px) var(--gutter) 0; }
.faq-group + .faq-group { margin-top: clamp(40px, 5vw, 64px); }
.faq-h { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 64px; padding: 14px 0; cursor: pointer; font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; letter-spacing: -.02em; line-height: 1.25; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex-shrink: 0; width: 14px; height: 14px; background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 100% no-repeat; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 22px; max-width: 42em; color: var(--body2); font-size: 17px; }
.faq-item[open] p { animation: fadeUp .35s var(--ease); }
.faq-more { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; font-weight: 700; font-size: 19px; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); padding: clamp(40px, 6vw, 90px) var(--gutter) clamp(80px, 10vw, 140px); align-items: start; }
.contact-img { margin-top: 40px; }
.contact-img img { width: 100%; border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; }
.contact-panel { background: var(--paper); border-radius: 6px; padding: clamp(24px, 3vw, 44px); }
.sent .btn { margin-top: 24px; }
.doc { max-width: 720px; padding: clamp(48px, 7vw, 110px) var(--gutter) clamp(80px, 10vw, 140px); }
.doc h2 { font-size: 21px; letter-spacing: -.02em; margin: 36px 0 10px; }
.doc .page-title { margin-bottom: 32px; }
.doc ul { padding-left: 1.1em; }
.nf { padding-bottom: clamp(80px, 10vw, 140px); }
.nf .band-actions { margin-top: 28px; }

/* Footer */
.foot { padding: clamp(72px, 9vw, 120px) var(--gutter) calc(28px + var(--safe-b)); }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(56px, 7vw, 100px); }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; }
.foot-col h2 { font-size: 14px; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.foot-col a { text-decoration: none; font-weight: 700; font-size: 17px; min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; }
.foot-col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.foot-join { max-width: 480px; justify-self: end; width: 100%; }
.foot-join p { font-size: 17px; margin-bottom: 8px; }
.foot-mark { width: 100%; height: auto; }
.signoff { margin-top: clamp(20px, 3vw, 36px); font-size: clamp(20px, 2vw, 28px); font-weight: 700; letter-spacing: -.02em; text-align: center; }
.foot-row { display: flex; justify-content: space-between; gap: 16px; margin-top: clamp(48px, 6vw, 90px); padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.foot-row a { text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: calc(20px + var(--safe-b)); z-index: 80; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: var(--cocoa); color: var(--ivory); padding: 0 8px 0 20px; min-height: 48px; display: flex; align-items: center; gap: 4px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: opacity .3s, transform .3s var(--ease); white-space: nowrap; box-shadow: 0 12px 30px -12px rgba(40, 28, 24, .5); }
.toast.on { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast a { padding: 0 12px; min-height: 40px; display: inline-flex; align-items: center; text-underline-offset: 3px; }
.has-sticky .toast { bottom: calc(96px + var(--safe-b)); }

.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); }
.split.in .w > span { transform: none; }
.rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .perks-4 { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  :root { --bar: 60px; }
  .bar { grid-template-columns: auto 1fr; }
  .bar-nav, .bar-cta { display: none; }
  .menu-btn { display: block; }
  .bar-logo { width: 72px; height: 44px; }
  .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .hero-mark { width: min(80vw, 600px); }
  .hero-side { width: min(460px, 100%); justify-items: center; }
  .quick .form-msg { left: 0; right: 0; text-align: center; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .story, .wl, .contact { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 4 / 3; }
  .range-intro { grid-template-columns: 1fr; }
  .wl-panel { position: static; }
  .about-list { grid-template-columns: 1fr 1fr; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-media { position: static; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-join { grid-column: 1 / -1; justify-self: stretch; max-width: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { min-height: 560px; }
  .hero-img img { object-position: 50% 18%; }
  .hero-mark { width: 84vw; }
  .hero-side { gap: 12px; }
  .hero-offer { font-size: 15px; max-width: 22em; }
  .quick:not(.quick-line) { flex-direction: column; border-radius: 28px; gap: 4px; }
  .quick:not(.quick-line) input[type=email] { height: 50px; text-align: center; }
  .quick:not(.quick-line) .btn { width: 100%; min-height: 52px; }
  .quick.ok:not(.quick-line) { flex-direction: row; border-radius: 999px; font-size: 15px; }
  .quick.ok .btn { width: auto !important; }
  .why-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter); margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 8px; scrollbar-width: none; }
  .why-row::-webkit-scrollbar { display: none; }
  .perk { flex: 0 0 74vw; scroll-snap-align: start; }
  .perk-big .num { font-size: 72px; }
  .quick-lg input[type=email] { height: 54px; }
  .mq-item { flex-basis: 34vw; }
  .ticker span { font-size: 13px; padding: 0 16px; }
  .ticker span::after { margin-left: 32px; }
  .tiles { gap: 8px; }
  .tile { aspect-ratio: 3 / 4; }
  .tile-name { left: 14px; bottom: 36px; font-size: 38px; }
  .tile-count { left: 15px; bottom: 14px; font-size: 13px; }
  .band-actions .btn { width: 100%; min-height: 56px; }
  .band-actions { gap: 4px; }
  .band-link { width: 100%; justify-content: center; }
  .range-hero { height: 78svh; min-height: 460px; }
  .range-name { font-size: 30vw; }
  .shop-bar { margin: 0 calc(var(--gutter) * -1) 16px; padding: 8px var(--gutter); }
  .shop-bar .muted { font-size: 13px; }
  .filters button { padding: 0 14px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 26px 10px; }
  .grid-look, .grid-look-tall { grid-column: 1 / -1; grid-row: auto; margin: 6px 0; }
  .grid-look img, .grid-look-tall img { aspect-ratio: 4 / 3; flex: none; }
  .grid-look-tall img { aspect-ratio: 4 / 5; }
  .card-meta { flex-direction: column; gap: 0; margin-top: 10px; }
  .card-name { font-size: 14px; }
  .card-for, .card-colour { font-size: 12px; }
  .want { top: 4px; right: 4px; }
  .others-row { grid-template-columns: 1fr; gap: 8px; }
  .other { aspect-ratio: 5 / 2; }
  .other img { object-position: 50% 30%; }
  .rail .card { flex-basis: 44vw; }
  .pdp { padding-top: 6px; }
  .crumbs { margin-bottom: 8px; }
  .pdp-media { margin: 0 calc(var(--gutter) * -1); }
  .pdp-img, .thumbs { display: none; }
  .pdp-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; background: var(--paper); overscroll-behavior-x: contain; }
  .pdp-gallery::-webkit-scrollbar { display: none; }
  .pdp-gallery img { flex: 0 0 100%; width: 100%; aspect-ratio: 1; object-fit: cover; mix-blend-mode: multiply; scroll-snap-align: center; }
  .dots { display: flex; justify-content: center; gap: 6px; padding: 12px 0 0; }
  .dots span { width: 6px; height: 6px; border-radius: 3px; background: var(--line); transition: background .2s, width .25s var(--ease); }
  .dots span.on { background: var(--cocoa); width: 18px; }
  .pdp-name { font-size: 42px; }
  .pdp-actions { display: none; }
  .pdp-facts { margin-top: 28px; }
  .has-sticky .foot { padding-bottom: calc(110px + var(--safe-b)); }
  .sticky-cta {
    display: grid; grid-template-columns: 56px 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 10px var(--gutter) calc(10px + var(--safe-b));
    background: rgba(243, 235, 223, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -1px 0 var(--line); transform: translateY(110%); transition: transform .4s var(--ease);
  }
  .sticky-cta.on { transform: none; }
  .sticky-cta .want { position: static; width: 56px; height: 56px; background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--line); }
  .sticky-cta .want[aria-pressed=true] { background: var(--cocoa); box-shadow: none; }
  .sticky-cta .btn { min-height: 56px; font-size: 16px; }
  .seen-row { grid-template-columns: 1fr; }
  .about-hero { height: 70svh; }
  .about-cols { columns: 1; }
  .about-pair { grid-template-columns: 1fr; }
  .about-pair figure:last-child img { aspect-ratio: 4 / 3; }
  .about-list { grid-template-columns: 1fr; gap: 24px; }
  .wl { padding-top: 28px; gap: 40px; }
  .wl-panel, .contact-panel { margin: 0 calc(var(--gutter) * -1); border-radius: 0; }
  .contact { gap: 32px; }
  .contact-img { display: none; }
  .draw-list { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 18px; }
  .foot-row { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
  .share .btn { flex: 1; }
}
@media (hover: none) {
  .card-link:hover .card-img img, .tile:hover img, .other:hover img { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv, .menu-main a, .menu-sub, .menu-cta, .up { opacity: 1; transform: none; }
  .split .w > span { transform: none; }
  .tile img { margin-top: 0; height: 100%; }
}
