/* =====================================================================
   Black Thread Society — storefront design system
   Dark editorial streetwear with a rock edge: condensed poster type,
   a blackletter brand mark, bone-white on ink, one red thread.
   ===================================================================== */

:root {
  --ink-0: #050506;
  --ink-1: #0a0a0c;
  --ink-2: #111114;
  --ink-3: #17171b;
  --ink-4: #212127;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .15);
  --bone: #f3efe7;
  --bone-2: #cdc7bc;
  --ash: #8f8c93;
  --ash-2: #626068;
  --blood: #a3122e;
  --blood-2: #d51c42;
  --blood-glow: rgba(213, 28, 66, .35);
  --ok: #57b889;
  --warn: #e0a43c;

  --font-display: 'Anton', 'Impact', 'Arial Narrow Bold', sans-serif;
  --font-gothic: 'UnifrakturCook', 'Old English Text MT', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Newsreader', 'Georgia', serif;

  --maxw: 1440px;
  --gutter: clamp(16px, 4vw, 48px);
  --header-h: 72px;
  --radius: 2px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .85);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink-1);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed; inset: -50%;
  background-image: var(--grain);
  opacity: .045;
  pointer-events: none;
  z-index: 9999;
  animation: grain 1.2s steps(3) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0); } 33% { transform: translate(-3%, 2%); } 66% { transform: translate(2%, -3%); } 100% { transform: translate(0, 0); } }
body.no-scroll { overflow: hidden; }

img, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--blood-2); color: #fff; }
:focus-visible { outline: 2px solid var(--blood-2); outline-offset: 3px; }
.icon { flex: none; display: inline-block; vertical-align: middle; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--bone); color: var(--ink-1); padding: 10px 16px; font-weight: 600; }
.skip-link:focus { top: 12px; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.02; font-weight: 400; text-wrap: balance; }
.tile-title, .hero-title, .pc-name { text-wrap: balance; }
h1, h2, .display { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; line-height: 1.3; letter-spacing: 0; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--bone-2);
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blood-2); }
.eyebrow.no-rule::before { display: none; }
.gothic { font-family: var(--font-gothic); text-transform: none; letter-spacing: 0; font-weight: 700; }
.muted { color: var(--ash); }
.text-red { color: var(--blood-2); }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--bone); --btn-bd: var(--line-2);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; line-height: 1;
  cursor: pointer; overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), transform .2s var(--ease), box-shadow .35s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--btn-hover, var(--bone)); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { color: var(--btn-hover-fg, var(--ink-1)); border-color: var(--btn-hover, var(--bone)); }
.btn:active { transform: translateY(1px); }
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
.btn-primary { --btn-bg: var(--blood); --btn-fg: #fff; --btn-bd: var(--blood); --btn-hover: var(--blood-2); --btn-hover-fg: #fff; box-shadow: 0 14px 40px -18px var(--blood-glow); }
.btn-primary:hover { box-shadow: 0 18px 50px -14px var(--blood-glow); }
.btn-light { --btn-bg: var(--bone); --btn-fg: var(--ink-1); --btn-bd: var(--bone); --btn-hover: var(--blood-2); --btn-hover-fg: #fff; }
.btn-outline { --btn-bd: var(--bone); }
.btn-ghost { --btn-bd: var(--line-2); }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: .7rem; }
.btn[disabled], .btn.is-loading { opacity: .55; pointer-events: none; }
.btn.is-loading::after { content: ''; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--line-2); padding-bottom: 6px; transition: border-color .3s, gap .3s var(--ease); }
.link-arrow:hover { border-color: var(--blood-2); gap: 14px; }
.link-arrow.is-mail { max-width: 100%; text-transform: none; letter-spacing: .01em; font-size: .92rem; overflow-wrap: anywhere; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: 999px; font-size: .78rem; font-weight: 500; color: var(--bone-2); background: rgba(255,255,255,.02); transition: all .25s var(--ease); white-space: nowrap; }
.chip:hover, .chip.active { color: var(--ink-1); background: var(--bone); border-color: var(--bone); }

/* ---------------- Store-closed banner + announcement ---------------- */
.closed-banner {
  position: relative; z-index: 70; overflow: hidden;
  background: var(--blood);
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.18) 0 14px, transparent 14px 28px);
  border-bottom: 1px solid rgba(0,0,0,.4);
  color: #fff;
}
.marquee { display: flex; width: max-content; animation: marquee var(--marquee-speed, 32s) linear infinite; }
.marquee-group { display: flex; align-items: center; flex: none; }
.closed-banner .marquee-group span { display: inline-flex; align-items: center; gap: 18px; padding: 11px 18px; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.closed-banner .icon { opacity: .85; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.announce { position: relative; z-index: 69; background: var(--ink-0); border-bottom: 1px solid var(--line); overflow: hidden; }
.announce .marquee { --marquee-speed: 40s; }
.announce .marquee-group span { display: inline-flex; align-items: center; gap: 18px; padding: 9px 24px; font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-2); white-space: nowrap; }
.announce .marquee-group span::after { content: '✦'; color: var(--blood-2); font-size: .6rem; margin-left: 24px; }

/* Owner bar (only visible to the logged-in admin) */
.owner-bar { position: relative; z-index: 71; display: flex; align-items: center; gap: 6px 18px; flex-wrap: wrap; padding: 7px var(--gutter); background: #000; border-bottom: 1px solid var(--line); font-size: .74rem; color: var(--ash); }
.owner-bar a { color: var(--bone-2); display: inline-flex; align-items: center; gap: 6px; }
.owner-bar a:hover { color: #fff; }
.owner-bar .pill { padding: 2px 10px; border-radius: 99px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .64rem; }
.owner-bar .pill.open { background: rgba(87,184,137,.15); color: var(--ok); }
.owner-bar .pill.closed { background: rgba(213,28,66,.18); color: #ff8aa1; }
.owner-bar .spacer { flex: 1; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: rgba(10, 10, 12, .82);
  backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.has-hero .site-header { position: fixed; left: 0; right: 0; top: var(--header-offset, 0px); background: linear-gradient(180deg, rgba(0,0,0,.55), transparent); border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.has-hero .site-header.is-solid { top: 0; background: rgba(10, 10, 12, .88); border-color: var(--line); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px); }
.header-inner { height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.brand { justify-self: center; display: flex; align-items: center; }
.brand img { height: var(--logo-h, 56px); width: auto; max-width: 240px; object-fit: contain; }
.wordmark { display: flex; flex-direction: column; align-items: center; line-height: .9; }
.wordmark .wm-top { font-family: var(--font-gothic); font-size: 1.75rem; letter-spacing: .01em; }
.wordmark .wm-top b { color: var(--blood-2); font-weight: 700; }
.wordmark .wm-sub { margin-top: 5px; font-size: .56rem; font-weight: 600; letter-spacing: .62em; padding-left: .62em; color: var(--bone-2); }

.main-nav { display: flex; align-items: center; gap: 4px; justify-self: start; }
.main-nav > a, .main-nav > .nav-item > a {
  position: relative; display: inline-flex; align-items: center; gap: 6px; height: var(--header-h);
  padding: 0 12px; font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--bone-2);
  transition: color .25s;
}
.main-nav > a::after, .main-nav > .nav-item > a::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 22px; height: 1px; background: var(--blood-2); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.main-nav > a:hover, .main-nav > a.active, .main-nav > .nav-item:hover > a, .main-nav > .nav-item > a.active { color: #fff; }
.main-nav > a:hover::after, .main-nav > a.active::after, .main-nav > .nav-item:hover > a::after, .main-nav > .nav-item > a.active::after { transform: scaleX(1); }
.nav-item { position: static; }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: rgba(10,10,12,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .3s var(--ease);
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner { max-width: var(--maxw); margin: 0 auto; padding: 36px var(--gutter) 44px; display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 48px; }
.mega h4 { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ash); margin-bottom: 18px; }
.mega-links a { display: block; padding: 7px 0; font-family: var(--font-display); font-size: 1.45rem; text-transform: uppercase; letter-spacing: .02em; color: var(--bone-2); transition: color .2s, transform .3s var(--ease); }
.mega-links a:hover { color: #fff; transform: translateX(6px); }
.mega-feature { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3); }
.mega-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.mega-feature:hover img { transform: scale(1.05); }
.mega-feature span { position: absolute; left: 20px; bottom: 18px; font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; text-shadow: 0 4px 20px rgba(0,0,0,.7); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 4px; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; background: none; color: var(--bone-2); cursor: pointer; border-radius: 50%; transition: color .2s, background .2s; }
.icon-btn:hover { color: #fff; background: rgba(255,255,255,.06); }
.bag-count { position: absolute; top: 6px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px; background: var(--blood-2); color: #fff; font-size: .62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; }
.bag-count[data-count="0"] { display: none; }
.nav-toggle { display: none; }

/* Search overlay */
.search-panel { position: fixed; inset: 0; z-index: 80; background: rgba(5,5,6,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: all .35s var(--ease); }
.search-panel.open { opacity: 1; visibility: visible; }
.search-panel .container { padding-top: clamp(80px, 16vh, 160px); }
.search-form { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line-2); padding-bottom: 14px; }
.search-form input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; color: #fff; font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4.5rem); text-transform: uppercase; letter-spacing: .01em; }
.search-form input::placeholder { color: var(--ash-2); }
.search-suggest { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.search-close { position: absolute; top: 18px; right: var(--gutter); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.mobile-menu .scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .35s var(--ease); }
.mobile-menu .panel { position: absolute; inset: 0 auto 0 0; width: min(420px, 92vw); background: var(--ink-1); border-right: 1px solid var(--line); transform: translateX(-102%); transition: transform .45s var(--ease); display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain; }
.mobile-menu.open { pointer-events: auto; }
.mobile-menu.open .scrim { opacity: 1; }
.mobile-menu.open .panel { transform: none; }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 14px 24px; border-bottom: 1px solid var(--line); }
.mm-search { display: flex; align-items: center; gap: 10px; margin: 20px 24px 6px; padding: 0 14px; height: 48px; border: 1px solid var(--line-2); }
.mm-search input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; color: #fff; font-size: 1rem; }
.mm-links { padding: 14px 24px; }
.mm-links a { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; font-family: var(--font-display); font-size: 1.9rem; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.mm-sub { padding: 6px 24px 20px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 16px; }
.mm-sub h4 { grid-column: 1 / -1; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ash); margin: 16px 0 6px; }
.mm-sub a { padding: 7px 0; color: var(--bone-2); font-size: .95rem; }
.mm-foot { margin-top: auto; padding: 20px 24px 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }

/* ---------------- Flash messages ---------------- */
.flash-wrap { position: fixed; z-index: 95; top: calc(var(--header-h) + 16px); right: 16px; left: 16px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; pointer-events: none; }
.alert { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; border: 1px solid var(--line-2); background: var(--ink-2); font-size: .9rem; line-height: 1.45; max-width: 460px; pointer-events: auto; box-shadow: var(--shadow); }
.flash-wrap .alert { animation: toast-in .5s var(--ease) both; }
.alert-success { border-color: rgba(87,184,137,.5); }
.alert-success .icon { color: var(--ok); }
.alert-error { border-color: rgba(213,28,66,.6); }
.alert-error .icon { color: var(--blood-2); }
.alert-info { border-color: rgba(224,164,60,.5); }
.alert-info .icon { color: var(--warn); }
.alert .alert-close { margin-left: auto; background: none; border: 0; color: var(--ash); cursor: pointer; padding: 0; }
.page-alert { max-width: none; box-shadow: none; margin-bottom: 20px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px); } }

/* ---------------- Hero ---------------- */
.hero { position: relative; height: 100svh; min-height: 560px; max-height: 1200px; overflow: hidden; background: var(--ink-0); }
.hero.h-large { height: 86svh; }
.hero.h-medium { height: 68svh; min-height: 460px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.2s var(--ease), visibility 1.2s; }
.hero.t-slide .hero-slide { transition: transform 1s var(--ease), opacity 1s var(--ease), visibility 1s; transform: translateX(6%); }
.hero-slide.active { opacity: 1; visibility: visible; transform: none; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: var(--fx, 50%) var(--fy, 50%); }
.hero-slide.kb.active .hero-media img { animation: kenburns var(--kb-dur, 9s) ease-out both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(0deg, rgba(5,5,6,.92) 0%, rgba(5,5,6,.35) 38%, rgba(5,5,6,0) 62%),
  linear-gradient(180deg, rgba(5,5,6,.55) 0%, rgba(5,5,6,0) 25%),
  rgba(5,5,6, var(--overlay, .35)); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: var(--jv, flex-end); align-items: var(--ja, flex-start); text-align: var(--ta, left); padding: calc(var(--header-h) + 40px) var(--gutter) clamp(90px, 13vh, 150px); max-width: var(--maxw); margin: 0 auto; }
.hero-content > * { max-width: 920px; }
.hero-slide.align-center .hero-content { --ja: center; --ta: center; }
.hero-slide.align-right .hero-content { --ja: flex-end; --ta: right; }
.hero-slide.valign-center .hero-content { --jv: center; }
.hero-slide.valign-top .hero-content { --jv: flex-start; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.4rem, 10vw, 9.5rem); line-height: .86; text-transform: uppercase; margin: 18px 0 22px; text-shadow: 0 10px 60px rgba(0,0,0,.5); }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--bone-2); max-width: 560px; margin-bottom: 32px; }
.align-center .hero-sub { margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.align-center .hero-ctas { justify-content: center; }
.align-right .hero-ctas { justify-content: flex-end; }
.hero-slide .reveal-line { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero-slide.active .reveal-line { opacity: 1; transform: none; }
.hero-slide.active .reveal-line:nth-child(2) { transition-delay: .12s; }
.hero-slide.active .reveal-line:nth-child(3) { transition-delay: .24s; }
.hero-slide.active .reveal-line:nth-child(4) { transition-delay: .36s; }
.hero-ui { position: absolute; z-index: 5; left: 0; right: 0; bottom: 30px; }
.hero-ui .container { display: flex; align-items: center; gap: 24px; }
.hero-progress { display: flex; gap: 8px; flex: 1; max-width: 380px; }
.hero-progress button { position: relative; flex: 1; height: 24px; border: 0; background: none; cursor: pointer; padding: 0; }
.hero-progress button::before, .hero-progress button i { content: ''; position: absolute; left: 0; right: 0; top: 11px; height: 2px; background: rgba(255,255,255,.22); }
.hero-progress button i { right: auto; width: 0; background: #fff; }
.hero-progress button.done i { width: 100%; }
.hero-progress button.active i { animation: progress var(--dur, 7s) linear forwards; }
.hero.paused .hero-progress button.active i { animation-play-state: paused; }
@keyframes progress { to { width: 100%; } }
.hero-count { font-family: var(--font-display); font-size: 1rem; letter-spacing: .1em; color: var(--bone-2); }
.hero-count b { color: #fff; font-weight: 400; }
.hero-arrows { margin-left: auto; display: flex; gap: 8px; }
.hero-arrows button { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.2); color: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .25s; backdrop-filter: blur(6px); }
.hero-arrows button:hover { background: #fff; color: var(--ink-1); border-color: #fff; }
.scroll-cue { position: absolute; z-index: 5; left: 50%; bottom: 22px; transform: translateX(-50%); width: 1px; height: 46px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue::after { content: ''; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: #fff; animation: cue 2s var(--ease) infinite; }
@keyframes cue { to { top: 100%; } }
.hero-empty { position: relative; min-height: 88svh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(ellipse at 50% 30%, #1d1d22 0%, var(--ink-0) 70%); }

/* ---------------- Store closed home block ---------------- */
.soon { position: relative; padding: clamp(80px, 12vw, 160px) 0; text-align: center; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 0%, rgba(163,18,46,.28), transparent 60%), var(--ink-0); }
.soon h2 { font-size: clamp(3rem, 9vw, 8rem); line-height: .88; margin: 18px 0 20px; }
.soon p { color: var(--bone-2); max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.countdown { display: flex; justify-content: center; gap: clamp(10px, 3vw, 28px); margin: 0 0 36px; }
.countdown div { min-width: clamp(64px, 12vw, 110px); padding: 16px 8px 12px; border: 1px solid var(--line-2); background: rgba(255,255,255,.02); }
.countdown b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.countdown span { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ash); }

/* ---------------- Email capture ---------------- */
.email-form { display: flex; max-width: 520px; margin: 0 auto; border: 1px solid var(--line-2); background: rgba(0,0,0,.25); transition: border-color .3s; }
.email-form:focus-within { border-color: var(--bone); }
.email-form input[type=email] { flex: 1; min-width: 0; height: 56px; padding: 0 20px; border: 0; background: none; color: #fff; font-size: 1rem; outline: 0; }
.email-form input::placeholder { color: var(--ash); }
.email-form .btn { min-height: 56px; border: 0; }
.email-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { margin-top: 12px; font-size: .78rem; color: var(--ash); }
.form-msg { margin-top: 12px; font-size: .88rem; min-height: 1.4em; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: #ff8aa1; }

/* ---------------- Sections ---------------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head h2 { margin: 14px 0 0; }
.section-head p { color: var(--ash); max-width: 460px; margin: 10px 0 0; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; }
.border-top { border-top: 1px solid var(--line); }

/* Big keyword marquee */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--ink-0); }
.ticker .marquee { --marquee-speed: 48s; }
.ticker .marquee-group > * { display: inline-flex; align-items: center; gap: 36px; padding-right: 36px; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1; text-transform: uppercase; white-space: nowrap; }
.ticker .outline { color: transparent; -webkit-text-stroke: 1px rgba(243,239,231,.55); }
.ticker .icon { color: var(--blood-2); width: .7em; height: .7em; }
.ticker:hover .marquee { animation-play-state: paused; }

/* Home intro */
.intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 6vw, 96px); align-items: end; }
.intro h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); line-height: .9; margin: 16px 0 0; }
.intro p { color: var(--bone-2); font-size: 1.1rem; max-width: 520px; }
.intro .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }

/* Collection / vibe tiles */
.tiles { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.tile { position: relative; display: block; overflow: hidden; background: var(--ink-3); isolation: isolate; min-height: 280px; }
.tiles > .tile:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 620px; }
.tiles > .tile:nth-child(2), .tiles > .tile:nth-child(3) { grid-column: span 5; }
.tiles > .tile:nth-child(n+4) { grid-column: span 4; }
/* the last row always fills: two leftovers share it, a single leftover takes the full width */
@media (min-width: 1081px) {
  .tiles > .tile:nth-child(3n+5):last-child, .tiles > .tile:nth-child(3n+4):nth-last-child(2) { grid-column: span 6; }
  .tiles > .tile:nth-child(3n+4):last-child { grid-column: span 12; min-height: 340px; }
}
@media (min-width: 641px) and (max-width: 1080px) {
  .tiles > .tile:nth-child(2n):last-child { grid-column: 1 / -1; }
}
.cat-grid .tile { min-height: 0; aspect-ratio: 4 / 5; }
.cat-grid .tile-title { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter .6s; filter: saturate(.85) brightness(.78); }
.tile:hover img { transform: scale(1.06); filter: saturate(1) brightness(.9); }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,5,6,.9) 0%, rgba(5,5,6,0) 60%); z-index: 0; }
.tile-body { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: clamp(18px, 3vw, 32px); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.tile-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 3.2rem); line-height: .92; text-transform: uppercase; }
.tiles > .tile:nth-child(1) .tile-title { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.tile-meta { display: block; margin-top: 8px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-2); font-family: var(--font-body); }
.tile-arrow { flex: none; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; transition: all .35s var(--ease); }
.tile:hover .tile-arrow { background: var(--blood-2); border-color: var(--blood-2); transform: rotate(-45deg); }
.tile-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.06); }
.tile-fallback .icon { width: 40%; height: 40%; }

/* ---------------- Product grid + cards ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px) clamp(10px, 1.6vw, 22px); }
.product-grid-compact { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.product-card { position: relative; display: flex; flex-direction: column; }
.pc-media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.pc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.pc-media .pc-img-2 { opacity: 0; }
.product-card:hover .pc-media .pc-img-2 { opacity: 1; }
.product-card:hover .pc-media img { transform: scale(1.04); }
.pc-badges { position: absolute; z-index: 2; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; background: var(--bone); color: var(--ink-1); }
.badge.red { background: var(--blood-2); color: #fff; }
.badge.dark { background: rgba(0,0,0,.65); color: var(--bone); backdrop-filter: blur(6px); }
.pc-quick { position: absolute; z-index: 2; left: 12px; right: 12px; bottom: 12px; display: flex; justify-content: center; align-items: center; gap: 8px; padding: 12px; background: rgba(10,10,12,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease); }
.product-card:hover .pc-quick { opacity: 1; transform: none; }
.pc-sizes { color: var(--ash); letter-spacing: .1em; }
.pc-info { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.pc-cat { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ash); }
.pc-name { font-size: .98rem; font-weight: 500; line-height: 1.35; color: var(--bone); margin: 0; }
.pc-name a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--blood-2); text-underline-offset: 4px; }
.pc-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.price { font-weight: 600; font-size: 1rem; letter-spacing: .01em; }
.price-compare { color: var(--ash); text-decoration: line-through; font-size: .9rem; margin-left: 8px; font-weight: 400; }
.price-sale { color: var(--blood-2); }
.swatches { display: flex; gap: 6px; }
.swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); box-shadow: inset 0 0 0 2px var(--ink-1); }
.pc-soon { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blood-2); font-weight: 600; }

/* Closed store: product imagery is greyed out and can't be inspected */
.store-closed .pc-media img, .store-closed .pdp-media img, .store-closed .pdp-thumbs img, .store-closed .cart-thumb img, .store-closed .mega-feature img, .store-closed .tile img, .store-closed .product-shot { filter: grayscale(1) brightness(.62) contrast(1.05) !important; }
.store-closed .pc-media::after { content: 'Coming soon'; position: absolute; z-index: 2; inset: auto 0 0; padding: 12px; text-align: center; background: rgba(0,0,0,.6); font-size: .66rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-2); }
.store-closed .pc-quick { display: none; }

/* ---------------- Shop / collection pages ---------------- */
.page-head { padding: calc(var(--header-h) * .6) 0 clamp(26px, 4vw, 44px); border-bottom: 1px solid var(--line); }
.page-head h1 { margin: 14px 0 12px; }
.page-head p { color: var(--bone-2); max-width: 680px; font-size: 1.05rem; margin: 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--ash-2); }
.toolbar { position: sticky; top: var(--header-h); z-index: 20; background: rgba(10,10,12,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.toolbar-inner { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.toolbar .chips-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; mask-image: linear-gradient(90deg, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 90%, transparent); padding-right: 30px; }
.toolbar .chips-scroll::-webkit-scrollbar { display: none; }
.filters { display: flex; align-items: center; gap: 10px; flex: none; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; height: 40px; padding: 0 38px 0 16px; border: 1px solid var(--line-2); border-radius: 999px; background: transparent; color: var(--bone); font-size: .78rem; font-weight: 500; cursor: pointer; }
.select select option { background: var(--ink-2); }
.select .icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--ash); }
.filter-dot { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; box-shadow: inset 0 0 0 3px var(--ink-1); transition: all .2s; }
.filter-dot.active, .filter-dot:hover { border-color: var(--bone); box-shadow: inset 0 0 0 3px var(--ink-1), 0 0 0 2px var(--blood-2); }
.result-count { font-size: .78rem; color: var(--ash); white-space: nowrap; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 60px; }
.pagination a, .pagination span { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); font-size: .85rem; }
.pagination .active { background: var(--bone); color: var(--ink-1); border-color: var(--bone); }
.empty-state { text-align: center; padding: clamp(60px, 10vw, 120px) 20px; color: var(--ash); }
.empty-state h2, .empty-state h3 { color: var(--bone); }
.empty-state .icon { color: var(--ash-2); margin-bottom: 18px; }

.collection-hero { position: relative; min-height: min(62svh, 620px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink-0); }
.collection-hero .bg { position: absolute; inset: 0; }
.collection-hero .bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.9); }
.collection-hero .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink-1) 0%, rgba(10,10,12,.2) 60%, rgba(10,10,12,.6) 100%); }
.collection-hero .container { position: relative; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(30px, 5vw, 60px); }
.collection-hero h1 { font-size: clamp(3rem, 8vw, 7.4rem); line-height: .88; margin: 16px 0 18px; }
.collection-hero p { color: var(--bone-2); font-size: 1.1rem; max-width: 640px; margin: 0; }

/* Long-form SEO copy */
.prose { color: var(--bone-2); font-size: 1.02rem; line-height: 1.75; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--bone); margin: 1.6em 0 .5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--bone); margin: 1.4em 0 .4em; }
.prose a { color: var(--bone); text-decoration: underline; text-decoration-color: var(--blood-2); text-underline-offset: 4px; text-decoration-thickness: 1px; }
.prose a:hover { color: #fff; text-decoration-thickness: 2px; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose strong { color: var(--bone); font-weight: 600; }
.seo-cols { columns: 2 420px; column-gap: clamp(32px, 5vw, 72px); }
.seo-cols h2 { break-after: avoid; }
.seo-cols p { break-inside: avoid; }

/* FAQ accordion (collections, FAQ page) */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-size: 1.08rem; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { transition: transform .35s var(--ease); color: var(--ash); }
.faq details[open] summary .icon { transform: rotate(45deg); color: var(--blood-2); }
.faq .answer { padding: 0 0 24px; color: var(--bone-2); max-width: 780px; line-height: 1.7; }

/* ---------------- Product page ---------------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); padding: 28px 0 clamp(60px, 8vw, 110px); align-items: start; }
.pdp-gallery { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; max-height: calc(100svh - var(--header-h) - 60px); overflow-y: auto; scrollbar-width: none; }
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumbs button { position: relative; flex: none; width: 84px; aspect-ratio: 4 / 5; padding: 0; border: 1px solid transparent; background: var(--ink-3); cursor: pointer; overflow: hidden; opacity: .55; transition: opacity .25s, border-color .25s; }
.pdp-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs button.active, .pdp-thumbs button:hover { opacity: 1; border-color: var(--bone); }
.pdp-thumbs .vid-mark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.35); }
.pdp-stage { position: relative; }
.pdp-slides { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.pdp-slides::-webkit-scrollbar { display: none; }
.pdp-media { position: relative; flex: 0 0 100%; aspect-ratio: 4 / 5; scroll-snap-align: start; background: var(--ink-3); overflow: hidden; cursor: zoom-in; }
.pdp-media img, .pdp-media video { width: 100%; height: 100%; object-fit: cover; }
.pdp-media.is-hidden { display: none; }
.zoom-lens { position: absolute; inset: 0; background-repeat: no-repeat; background-size: 220%; opacity: 0; transition: opacity .25s; pointer-events: none; }
.pdp-media:hover .zoom-lens.ready { opacity: 1; }
.pdp-stage-ui { position: absolute; z-index: 3; left: 16px; right: 16px; bottom: 16px; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.pdp-stage-ui > * { pointer-events: auto; }
.pdp-expand { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(10,10,12,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--line-2); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.pdp-dots { display: none; gap: 6px; }
.pdp-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all .3s; }
.pdp-dots span.active { background: #fff; width: 18px; border-radius: 3px; }
.store-closed .pdp-media { cursor: default; }
.store-closed .pdp-expand, .store-closed .zoom-lens { display: none; }

.pdp-info { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp-info h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: .95; margin: 16px 0 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.pdp-price .save { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--blood-2); padding: 4px 8px; }
.pdp-perk { display: flex; align-items: center; gap: 8px; color: var(--ash); font-size: .85rem; margin-bottom: 26px; }
.pdp-perk .icon { color: var(--bone-2); }
.opt { margin-bottom: 24px; }
.opt-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); }
.opt-head b { color: var(--bone); font-weight: 600; letter-spacing: .1em; }
.opt-head button { background: none; border: 0; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; color: var(--bone-2); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--line-2); padding-bottom: 3px; }
.opt-head button:hover { color: #fff; border-color: var(--blood-2); }
.colors { display: flex; gap: 12px; }
.color-btn { display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 0 22px 0 10px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-2); transition: all .25s; }
.color-btn i { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); box-shadow: inset 0 0 0 3px var(--ink-1); }
.color-btn:hover { border-color: var(--bone-2); color: #fff; }
.color-btn.selected { border-color: var(--bone); color: #fff; background: rgba(255,255,255,.04); }
.color-btn.selected i { box-shadow: inset 0 0 0 3px var(--ink-1), 0 0 0 2px var(--blood-2); }
.color-btn.unavailable { opacity: .45; }
.sizes { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.sizes.one { grid-template-columns: minmax(0, 180px); }
.size-btn { position: relative; height: 52px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; font-size: .85rem; font-weight: 600; letter-spacing: .06em; color: var(--bone); transition: all .2s; overflow: hidden; }
.size-btn:hover { border-color: var(--bone); }
.size-btn.selected { background: var(--bone); color: var(--ink-1); border-color: var(--bone); }
.size-btn.sold { color: var(--ash-2); border-color: var(--line); }
.size-btn.sold::after { content: ''; position: absolute; left: -10%; right: -10%; top: 50%; height: 1px; background: var(--ash-2); transform: rotate(-24deg); }
.size-btn.sold.selected { background: transparent; color: var(--ash); border-color: var(--ash); }
.size-hint { margin-top: 10px; font-size: .82rem; color: var(--ash); min-height: 1.3em; }
.size-hint.warn { color: #ff8aa1; }
.restock { margin-top: 12px; padding: 16px; border: 1px dashed var(--line-2); display: none; }
.restock.show { display: block; }
.restock p { font-size: .88rem; color: var(--bone-2); margin-bottom: 10px; }
.restock .email-form { margin: 0; }
.restock .email-form input[type=email] { height: 48px; }
.restock .email-form .btn { min-height: 48px; padding: 0 18px; }
.buy-row { display: grid; grid-template-columns: 124px 1fr; gap: 10px; margin: 26px 0 16px; }
.qty { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line-2); height: 56px; }
.qty button { width: 40px; height: 100%; border: 0; background: none; cursor: pointer; color: var(--bone-2); display: flex; align-items: center; justify-content: center; }
.qty button:hover { color: #fff; }
.qty input { width: 40px; text-align: center; border: 0; background: none; color: #fff; font-size: 1rem; font-weight: 600; -moz-appearance: textfield; appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row .btn { min-height: 56px; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0 8px; }
.trust div { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 8px; border: 1px solid var(--line); font-size: .72rem; line-height: 1.35; color: var(--bone-2); }
.trust .icon { color: var(--bone); }
.acc { margin-top: 26px; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .icon { transition: transform .35s var(--ease); color: var(--ash); }
.acc details[open] summary .icon { transform: rotate(45deg); }
.acc .acc-body { padding: 0 0 22px; color: var(--bone-2); font-size: .95rem; line-height: 1.7; }
.acc .acc-body ul { padding-left: 1.1em; margin: 0; }
.share-row { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); }
.share-row a, .share-row button { width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: none; color: var(--bone-2); cursor: pointer; transition: all .2s; }
.share-row a:hover, .share-row button:hover { color: #fff; border-color: var(--bone); }
.soon-box { padding: 24px; border: 1px solid var(--line-2); background: linear-gradient(135deg, rgba(163,18,46,.14), transparent 60%); margin: 22px 0; }
.soon-box h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; text-transform: uppercase; margin-bottom: 8px; }
.soon-box p { color: var(--bone-2); font-size: .92rem; }
.soon-box .email-form { margin: 0; }

.sticky-buy { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(10,10,12,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; transform: translateY(110%); transition: transform .4s var(--ease); }
.sticky-buy.show { transform: none; }
.sticky-buy .sb-info { flex: 1; min-width: 0; }
.sticky-buy .sb-name { font-size: .88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .sb-meta { font-size: .78rem; color: var(--ash); }
.sticky-buy .btn { min-height: 48px; padding: 0 22px; }

/* ---------------- Lightbox ---------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,4,5,.97); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; touch-action: none; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-top { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; }
.lb-count { font-family: var(--font-display); letter-spacing: .1em; color: var(--bone-2); padding-left: 8px; }
.lb-tools { display: flex; gap: 6px; }
.lb-tools button, .lb-nav { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(20,20,24,.7); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.lb-tools button:hover, .lb-nav:hover { background: #fff; color: var(--ink-1); }
.lb-stage { position: relative; flex: 1; min-height: 0; overflow: hidden; cursor: zoom-in; }
.lb-stage.zoomed { cursor: grab; }
.lb-stage.dragging { cursor: grabbing; }
.lb-stage img { position: absolute; left: 0; top: 0; max-width: none; max-height: none; transform-origin: 0 0; user-select: none; -webkit-user-drag: none; will-change: transform; touch-action: none; }
.lb-stage video { position: absolute; max-height: 90%; }
.lb-nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-thumbs { position: relative; z-index: 3; display: flex; justify-content: center; gap: 8px; padding: 12px 16px calc(16px + env(safe-area-inset-bottom)); overflow-x: auto; }
.lb-thumbs button { flex: none; width: 58px; height: 72px; padding: 0; border: 1px solid transparent; background: var(--ink-3); opacity: .5; cursor: pointer; overflow: hidden; }
.lb-thumbs button.active { opacity: 1; border-color: #fff; }
.lb-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.lb-hint { position: absolute; z-index: 3; left: 50%; bottom: 100px; transform: translateX(-50%); padding: 8px 14px; background: rgba(20,20,24,.8); border-radius: 99px; font-size: .72rem; color: var(--bone-2); pointer-events: none; transition: opacity .5s; white-space: nowrap; }
.lb-hint.hide { opacity: 0; }

/* ---------------- Drawers (bag, size guide) ---------------- */
.drawer { position: fixed; inset: 0; z-index: 150; pointer-events: none; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .35s var(--ease); }
.drawer .panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(480px, 100vw); background: var(--ink-1); border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .45s var(--ease); display: flex; flex-direction: column; }
.drawer.wide .panel { width: min(720px, 100vw); }
.drawer.open { pointer-events: auto; }
.drawer.open .scrim { opacity: 1; }
.drawer.open .panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 1.8rem; margin: 0; }
.drawer-content { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 8px 24px; }
.drawer-foot { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--ink-2); }
.ship-meter { margin-bottom: 18px; font-size: .84rem; color: var(--bone-2); }
.ship-meter .bar { height: 3px; background: var(--ink-4); margin-top: 10px; overflow: hidden; }
.ship-meter .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--blood), var(--blood-2)); transition: width .6s var(--ease); }
.line-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.line-item .cart-thumb { display: block; aspect-ratio: 4 / 5; background: var(--ink-3); overflow: hidden; }
.line-item .cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.li-name { font-weight: 500; line-height: 1.35; margin-bottom: 4px; display: block; }
.li-meta { font-size: .8rem; color: var(--ash); margin-bottom: 12px; }
.li-controls { display: flex; align-items: center; gap: 14px; }
.li-controls .qty { height: 40px; }
.li-controls .qty button { width: 34px; }
.li-controls .qty input { width: 30px; font-size: .9rem; }
.li-remove { background: none; border: 0; padding: 0; color: var(--ash); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; border-bottom: 1px solid transparent; }
.li-remove:hover { color: #fff; border-color: var(--blood-2); }
.li-price { font-weight: 600; text-align: right; }
.li-warning { font-size: .78rem; color: #ff8aa1; }
.totals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.totals div { display: flex; justify-content: space-between; color: var(--bone-2); font-size: .92rem; }
.totals .grand { color: #fff; font-size: 1.15rem; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 4px; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.pay-badges span { padding: 4px 8px; border: 1px solid var(--line-2); border-radius: 3px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; color: var(--bone-2); }

.size-table-wrap { overflow-x: auto; margin: 10px 0 20px; border: 1px solid var(--line); }
.size-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 460px; }
.size-table th, .size-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.size-table th { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); background: var(--ink-2); }
.size-table td:first-child, .size-table th:first-child { text-align: left; font-weight: 600; color: var(--bone); }
.size-table tr:hover td { background: rgba(255,255,255,.02); }
.unit-toggle { display: inline-flex; border: 1px solid var(--line-2); border-radius: 99px; padding: 3px; }
.unit-toggle button { border: 0; background: none; padding: 6px 14px; border-radius: 99px; font-size: .72rem; font-weight: 600; cursor: pointer; color: var(--ash); }
.unit-toggle button.active { background: var(--bone); color: var(--ink-1); }
.fit-steps { display: grid; gap: 14px; margin: 20px 0; }
.fit-steps div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.fit-steps b { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--blood-2); line-height: 1; }
.fit-steps p { margin: 0; color: var(--bone-2); font-size: .92rem; }

/* ---------------- Cart + checkout pages ---------------- */
.two-col { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: var(--ink-2); border: 1px solid var(--line); padding: clamp(20px, 3vw, 34px); }
.summary h2 { font-size: 1.8rem; margin-bottom: 20px; }
.summary .li-mini { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 10px 0; }
.summary .li-mini .cart-thumb { position: relative; aspect-ratio: 4 / 5; background: var(--ink-3); }
.summary .li-mini .cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary .li-mini .qty-badge { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; border-radius: 99px; background: var(--bone); color: var(--ink-1); font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.checkout-steps { display: flex; align-items: center; gap: 12px; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); margin-bottom: 30px; flex-wrap: wrap; }
.checkout-steps .on { color: #fff; }
.form-section { padding: 26px 0; border-top: 1px solid var(--line); }
.form-section:first-of-type { border-top: 0; padding-top: 0; }
.form-section h2 { font-size: 1.7rem; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.form-section h2 .n { font-size: 1rem; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-body); font-weight: 600; }
.field { position: relative; margin-bottom: 14px; }
.field label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; height: 52px; padding: 0 16px; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  color: var(--bone); font-family: inherit; font-size: 1rem; transition: border-color .2s, background .2s;
}
.field textarea { height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23c9c3b8' stroke-width='1.5'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bone); background: var(--ink-3); }
.field input:invalid:not(:placeholder-shown):not(:focus) { border-color: rgba(213,28,66,.6); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--bone-2); cursor: pointer; margin: 8px 0; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blood-2); flex: none; }
#card-element-wrap { padding: 18px; background: var(--ink-2); border: 1px solid var(--line-2); min-height: 120px; }
.secure-note { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: .78rem; color: var(--ash); margin-top: 14px; }
.addr-pick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

/* ---------------- Thank-you, account, auth, static pages ---------------- */
.ty-hero { text-align: center; padding: clamp(60px, 10vw, 130px) 0 40px; }
.ty-hero .mark { width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--ok); }
.ty-hero h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 16px; }
.ty-hero p { color: var(--bone-2); max-width: 560px; margin: 0 auto; }
.card { background: var(--ink-2); border: 1px solid var(--line); padding: clamp(20px, 3vw, 32px); }
.recap { max-width: 720px; margin: 0 auto 60px; }
.recap-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.recap-head small { display: block; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); margin-bottom: 4px; }
.recap-head b { font-size: 1.1rem; }
.recap-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: .92rem; }
.account-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); padding: 36px 0 90px; }
.account-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.account-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-left: 2px solid transparent; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ash); }
.account-nav a:hover { color: #fff; background: var(--ink-2); }
.account-nav a.active { color: #fff; border-color: var(--blood-2); background: var(--ink-2); }
.account-content h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 8px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 26px 0; }
.stat-grid .card b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 2.6rem; line-height: 1; margin: 8px 0 14px; }
.order-card { background: var(--ink-2); border: 1px solid var(--line); padding: 20px 22px; margin-bottom: 14px; }
.order-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 99px; font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pending { background: rgba(224,164,60,.14); color: var(--warn); }
.status-paid, .status-processing { background: rgba(213,28,66,.16); color: #ff8aa1; }
.status-shipped { background: rgba(80,160,220,.16); color: #8fcaf2; }
.status-delivered { background: rgba(87,184,137,.16); color: var(--ok); }
.status-cancelled, .status-refunded { background: rgba(140,140,140,.16); color: var(--ash); }
.timeline { position: relative; margin: 10px 0 0; padding-left: 22px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--line-2); }
.timeline div { position: relative; padding: 0 0 16px; font-size: .88rem; color: var(--bone-2); }
.timeline div::before { content: ''; position: absolute; left: -22px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--ink-1); border: 2px solid var(--blood-2); }
.timeline small { display: block; color: var(--ash); font-size: .76rem; }
.auth-wrap { min-height: calc(100svh - var(--header-h)); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.auth-art { position: relative; overflow: hidden; background: var(--ink-0); }
.auth-art img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.auth-art .gothic { position: absolute; left: 40px; bottom: 40px; font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1; text-shadow: 0 8px 40px rgba(0,0,0,.7); }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 60px var(--gutter); }
.auth-form > div { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 10px; }
.auth-switch { margin-top: 22px; color: var(--ash); font-size: .9rem; }
.auth-switch a { color: var(--bone); border-bottom: 1px solid var(--blood-2); }
.page-wrap { padding: 20px 0 clamp(70px, 9vw, 120px); }
.page-wrap h1 { margin: 16px 0 26px; }
.page-lead { font-size: 1.15rem; color: var(--bone-2); max-width: 680px; }
.nf { min-height: 72svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.nf .num { font-family: var(--font-display); font-size: clamp(8rem, 26vw, 20rem); line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(243,239,231,.35); position: relative; }
.nf .num .icon { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: .32em; height: .32em; color: var(--blood-2); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 6vw, 96px); align-items: center; }
.split-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,.6); }
.split h2 .gothic { display: block; font-size: 1.15em; text-transform: none; color: var(--blood-2); line-height: 1.1; }
.split p { color: var(--bone-2); font-size: 1.05rem; line-height: 1.75; }
.newsletter { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 130px) 0; text-align: center; background: radial-gradient(ellipse at 50% 120%, rgba(163,18,46,.32), transparent 65%), var(--ink-0); border-top: 1px solid var(--line); }
.newsletter h2 { font-size: clamp(2.6rem, 7vw, 6rem); line-height: .9; margin: 16px 0 16px; }
.newsletter p { color: var(--bone-2); max-width: 520px; margin: 0 auto 30px; }

/* ---------------- Journal ---------------- */
.journal-hero { padding: calc(var(--header-h) * .5) 0 30px; text-align: center; border-bottom: 1px solid var(--line); }
.journal-hero h1 { font-family: var(--font-gothic); text-transform: none; font-size: clamp(3.6rem, 10vw, 8.6rem); letter-spacing: 0; line-height: 1; margin: 14px 0 12px; }
.journal-hero p { color: var(--bone-2); max-width: 600px; margin: 0 auto 26px; }
.journal-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.post-feature { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; margin-bottom: clamp(48px, 6vw, 80px); }
.post-feature .pf-media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ink-3); display: block; position: relative; }
.post-feature .pf-media img, .post-card .pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.post-feature:hover .pf-media img, .post-card:hover .pcard-media img { transform: scale(1.04); }
.post-feature h2 { font-family: var(--font-serif); text-transform: none; font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.08; letter-spacing: -.01em; margin: 16px 0 16px; }
.post-feature p { color: var(--bone-2); font-size: 1.05rem; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ash); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ash-2); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.post-card { display: flex; flex-direction: column; }
.post-card .pcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); display: block; margin-bottom: 18px; }
.post-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.45rem; line-height: 1.2; margin: 10px 0 10px; }
.post-card h3 a:hover { text-decoration: underline; text-decoration-color: var(--blood-2); text-underline-offset: 5px; text-decoration-thickness: 1px; }
.post-card p { color: var(--ash); font-size: .95rem; margin: 0; }
.media-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.07); background: radial-gradient(circle at 30% 20%, #1d1d22, var(--ink-2)); }
.media-fallback .icon { width: 30%; height: 30%; }
.play-mark { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; color: #fff; }

.read-progress { position: fixed; z-index: 65; left: 0; top: 0; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--blood-2); }
.article-head { max-width: 980px; margin: 0 auto; padding: 30px var(--gutter) 34px; text-align: center; }
.article-head h1 { font-family: var(--font-serif); text-transform: none; font-weight: 500; font-size: clamp(2.4rem, 5.4vw, 4.6rem); line-height: 1.04; letter-spacing: -.015em; margin: 20px 0 22px; }
.article-head .standfirst { font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.4rem); color: var(--bone-2); line-height: 1.5; max-width: 740px; margin: 0 auto 24px; }
.article-head .post-meta { justify-content: center; }
.article-cover { max-width: 1320px; margin: 0 auto 60px; padding: 0 var(--gutter); }
.article-cover figure { margin: 0; aspect-ratio: 16 / 8; overflow: hidden; background: var(--ink-3); }
.article-cover img, .article-cover video { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0, 720px) 220px; justify-content: center; gap: clamp(24px, 4vw, 64px); padding: 0 var(--gutter); }
.toc { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; font-size: .84rem; }
.toc h4 { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ash); margin-bottom: 14px; font-weight: 600; }
.toc a { display: block; padding: 7px 0 7px 14px; border-left: 1px solid var(--line-2); color: var(--ash); line-height: 1.4; transition: all .2s; }
.toc a.l3 { padding-left: 26px; font-size: .8rem; }
.toc a:hover { color: #fff; }
.toc a.active { color: #fff; border-color: var(--blood-2); }
.share-rail { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.share-rail .share-row { flex-direction: column; align-items: flex-start; margin: 0; }
.article-body { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.25vw, 1.24rem); line-height: 1.78; color: #e4dfd5; }
.article-body > * { margin-top: 0; }
.pb-p { margin-bottom: 1.35em; }
.pb-lead { font-size: 1.25em; line-height: 1.6; color: var(--bone); }
.article-body > .pb-p:first-child::first-letter { font-family: var(--font-gothic); float: left; font-size: 4.6em; line-height: .8; padding: .08em .12em 0 0; color: var(--blood-2); }
.pb-h { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: var(--bone); letter-spacing: .01em; }
h2.pb-h { font-size: clamp(1.9rem, 3vw, 2.6rem); margin: 1.8em 0 .6em; }
h3.pb-h { font-size: 1.5rem; margin: 1.6em 0 .5em; }
h4.pb-h { font-family: var(--font-body); font-weight: 600; text-transform: none; font-size: 1.1rem; margin: 1.4em 0 .5em; }
.article-body a { color: var(--bone); text-decoration: underline; text-decoration-color: var(--blood-2); text-underline-offset: 4px; text-decoration-thickness: 1px; }
.article-body a:hover { color: #fff; text-decoration-thickness: 2px; }
.article-body strong { color: var(--bone); }
.article-body mark { background: rgba(213,28,66,.3); color: #fff; padding: 0 .15em; }
.article-body code { font-family: ui-monospace, monospace; font-size: .85em; background: var(--ink-3); padding: .1em .35em; }
.pb-list { padding-left: 1.3em; margin: 0 0 1.4em; }
.pb-list li { margin-bottom: .55em; padding-left: .3em; }
.pb-list li::marker { color: var(--blood-2); }
.pb-figure { margin: 2.2em 0; }
.pb-figure img, .pb-figure video { width: 100%; background: var(--ink-3); }
.pb-figure img[data-zoom] { cursor: zoom-in; }
.pb-figure figcaption, .pb-gallery figcaption { margin-top: 12px; font-family: var(--font-body); font-size: .82rem; color: var(--ash); text-align: center; }
.pb-size-wide { margin-left: -12%; margin-right: -12%; }
.pb-size-full { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); max-width: none; }
.pb-gallery { margin: 2.2em 0; }
.pb-gallery-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 8px; }
.pb-gallery.cols-2 { --cols: 2; }
.pb-gallery.cols-4 { --cols: 4; }
.pb-gallery-item { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.pb-gallery-item img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .8s var(--ease); }
.pb-gallery-item:hover img { transform: scale(1.04); }
.pb-embed { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.pb-embed img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.pb-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pb-embed-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 78px; height: 78px; border-radius: 50%; border: 0; background: var(--blood-2); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(0,0,0,.5); transition: transform .3s var(--ease); }
.pb-embed-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.pb-quote { position: relative; margin: 2.2em 0; padding: 0 0 0 1.4em; border-left: 2px solid var(--blood-2); }
.pb-quote p { font-size: 1.5em; line-height: 1.35; font-style: italic; color: var(--bone); margin: 0 0 .5em; }
.pb-quote cite { font-family: var(--font-body); font-style: normal; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ash); }
.pb-callout { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; margin: 1.8em 0; background: var(--ink-2); border: 1px solid var(--line); border-left: 3px solid var(--warn); font-family: var(--font-body); font-size: .98rem; line-height: 1.6; }
.pb-callout-tip { border-left-color: var(--blood-2); }
.pb-callout-info { border-left-color: #8fcaf2; }
.pb-callout .icon { margin-top: 2px; color: var(--bone-2); }
.pb-callout > div > :last-child { margin-bottom: 0; }
.pb-divider { margin: 3em auto; border: 0; height: 1px; background: var(--line-2); max-width: 200px; }
.pb-divider-space { background: none; height: 2em; }
.pb-divider-skull { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--blood-2); margin: 3em 0; }
.pb-divider-skull::before, .pb-divider-skull::after { content: ''; height: 1px; width: 90px; background: var(--line-2); }
.pb-table-wrap { overflow-x: auto; margin: 2em 0; border: 1px solid var(--line); }
.pb-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: .92rem; }
.pb-table th, .pb-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.pb-table th { background: var(--ink-2); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); font-weight: 600; }
.pb-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 2.6em 0; padding: clamp(24px, 4vw, 40px); background: var(--ink-2); border: 1px solid var(--line); font-family: var(--font-body); position: relative; overflow: hidden; }
.pb-cta h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 8px; }
.pb-cta p { margin: 0; color: var(--bone-2); font-size: .98rem; }
.pb-cta-blood { background: linear-gradient(120deg, var(--blood), #5c0a1b); border-color: transparent; }
.pb-cta-blood p { color: rgba(255,255,255,.85); }
.pb-cta-blood .btn-primary { --btn-bg: #fff; --btn-fg: var(--ink-1); --btn-bd: #fff; --btn-hover: var(--ink-1); --btn-hover-fg: #fff; }
.pb-cta-image { background: linear-gradient(90deg, rgba(5,5,6,.92), rgba(5,5,6,.5)), var(--cta-bg) center / cover; }
.pb-faq { margin: 2.4em 0; font-family: var(--font-body); }
.pb-faq-item { border-bottom: 1px solid var(--line); }
.pb-faq-item:first-of-type { border-top: 1px solid var(--line); }
.pb-faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; font-weight: 500; font-size: 1.02rem; color: var(--bone); }
.pb-faq-item summary::-webkit-details-marker { display: none; }
.pb-faq-icon { transition: transform .3s var(--ease); color: var(--ash); }
.pb-faq-item[open] .pb-faq-icon { transform: rotate(45deg); color: var(--blood-2); }
.pb-faq-a { padding: 0 0 20px; color: var(--bone-2); font-size: .98rem; line-height: 1.7; }
.pb-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; align-items: center; margin: 2.4em 0; }
.pb-columns.pb-img-right .pb-col-media { order: 2; }
.pb-col-media { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.pb-col-media img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.pb-col-text h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.9rem; margin-bottom: .4em; }
.pb-products { margin: 2.6em 0; font-family: var(--font-body); }
.pb-products-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.6rem; margin-bottom: 18px; }
.pb-products .product-grid-compact { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.pb-html { margin: 2em 0; }
.pb-html iframe { max-width: 100%; }
.article-foot { max-width: 720px; margin: 50px auto 0; padding: 30px var(--gutter) 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.preview-flag { position: fixed; z-index: 64; left: 50%; bottom: 20px; transform: translateX(-50%); padding: 10px 18px; background: var(--warn); color: #000; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; box-shadow: var(--shadow); }

/* ---------------- Footer ---------------- */
.site-footer { position: relative; background: var(--ink-0); border-top: 1px solid var(--line); padding: clamp(60px, 8vw, 100px) 0 0; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer-brand .wordmark { align-items: flex-start; }
.footer-brand .wordmark .wm-top { font-size: 2.3rem; }
.footer-brand .wordmark .wm-sub { padding-left: 0; }
.footer-brand img { height: 60px; width: auto; }
.footer-brand p { color: var(--ash); font-size: .9rem; margin: 20px 0 22px; max-width: 360px; line-height: 1.7; }
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; color: var(--bone-2); transition: all .25s var(--ease); }
.socials a:hover { color: #fff; border-color: var(--blood-2); background: var(--blood); transform: translateY(-3px); }
.footer-col h3 { font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--bone); margin-bottom: 18px; }
.footer-col a { display: block; padding: 5px 0; color: var(--ash); font-size: .9rem; transition: color .2s, transform .25s var(--ease); }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-giant { font-family: var(--font-display); font-size: clamp(3.4rem, 15.5vw, 16rem); line-height: .78; text-transform: uppercase; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(243,239,231,.12); white-space: nowrap; user-select: none; margin-bottom: -.06em; letter-spacing: -.01em; }
.footer-seo { padding: 26px 0; border-top: 1px solid var(--line); color: var(--ash-2); font-size: .8rem; line-height: 1.7; }
.footer-seo a { color: var(--ash); }
.footer-seo a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap; padding: 22px 0 28px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--ash); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .pay-badges { margin: 0; }

/* ---------------- Reveal animation ---------------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  .article-layout { grid-template-columns: minmax(0, 720px) 200px; }
  .toc { display: none; }
  .pb-size-wide { margin-left: 0; margin-right: 0; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .footer-top .footer-col:last-child { display: none; }
}
@media (max-width: 1080px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-left { display: flex; align-items: center; }
  .brand img { height: var(--logo-h-m, 40px); }
  .wordmark .wm-top { font-size: 1.35rem; }
  .wordmark .wm-sub { font-size: .48rem; letter-spacing: .5em; }
  .hide-md { display: none !important; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tiles > .tile:nth-child(n) { grid-column: span 1; grid-row: auto; min-height: 360px; }
  .tiles > .tile:nth-child(1) { grid-column: 1 / -1; min-height: 460px; }
  .pdp { grid-template-columns: minmax(0, 1fr); padding-top: 12px; }
  .pdp-gallery { position: relative; top: 0; grid-template-columns: minmax(0, 1fr); margin: 0 calc(var(--gutter) * -1); }
  .pdp-thumbs { display: none; }
  .pdp-dots { display: flex; }
  .pdp-info { position: static; }
  .two-col { grid-template-columns: minmax(0, 1fr); }
  .summary { position: static; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 720px); }
  .share-rail { position: static; }
  .share-rail .share-row { flex-direction: row; align-items: center; }
}
@media (max-width: 860px) {
  .intro, .split, .post-feature { grid-template-columns: minmax(0, 1fr); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top .footer-col:last-child { display: block; }
  .account-layout { grid-template-columns: minmax(0, 1fr); padding-top: 20px; }
  .account-nav { position: static; flex-direction: row; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); }
  .account-nav a { border-left: 0; border-bottom: 2px solid transparent; white-space: nowrap; padding: 12px 14px; }
  .account-nav a.active { border-bottom-color: var(--blood-2); }
  .auth-wrap { grid-template-columns: minmax(0, 1fr); }
  .auth-art { display: none; }
  .pb-columns { grid-template-columns: minmax(0, 1fr); }
  .pb-columns.pb-img-right .pb-col-media { order: 0; }
  .hero-arrows { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 10px; }
  .pc-quick { display: none; }
  .pc-name { font-size: .88rem; }
  .price { font-size: .92rem; }
  .tiles { grid-template-columns: minmax(0, 1fr); }
  .tiles > .tile:nth-child(n) { min-height: 320px; }
  .tiles > .tile:nth-child(1) { min-height: 420px; }
  body::after { animation: none; }
  .post-grid { grid-template-columns: minmax(0, 1fr); }
  .field-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .sizes { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .buy-row { grid-template-columns: 110px 1fr; }
  .trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust div { padding: 12px 4px; font-size: .66rem; }
  .colors { flex-wrap: wrap; }
  .color-btn { flex: 1; }
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-ctas .btn { flex: 1; padding: 0 16px; }
  .hero-progress { max-width: none; }
  .scroll-cue { display: none; }
  .email-form { flex-direction: column; border: 0; background: none; gap: 10px; }
  .email-form input[type=email] { border: 1px solid var(--line-2); background: rgba(0,0,0,.3); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .toolbar-inner { flex-wrap: wrap; }
  .toolbar .chips-scroll { flex-basis: 100%; }
  .filters { width: 100%; justify-content: space-between; }
  .line-item { grid-template-columns: 76px 1fr; }
  .line-item .li-price { grid-column: 2; text-align: left; }
  .recap-head { flex-direction: column; }
  .lb-nav { display: none; }
  .article-cover figure { aspect-ratio: 4 / 3; }
  .article-cover { padding: 0; }
  .pb-quote p { font-size: 1.25em; }
  .countdown div { min-width: 0; flex: 1; }
  .ticker { padding: 16px 0; }
  .flash-wrap { top: auto; bottom: 16px; align-items: stretch; }
  .alert { max-width: none; }
}
@media (hover: none) {
  .pc-quick { display: none; }
  .product-card:hover .pc-media .pc-img-2 { opacity: 0; }
  .zoom-lens { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  body::after { animation: none; }
}
@media print {
  .site-header, .site-footer, .announce, .closed-banner, .owner-bar, .sticky-buy, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}
