:root {
  --bg: #090b0c;
  --panel: rgba(18, 22, 25, 0.88);
  --panel-solid: #121619;
  --text: #edf1f1;
  --muted: #98a3a5;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #b98252;
  --acid: #91aeb9;
  --page-bg-image: url('/assets/collector-originals.webp');
  --page-bg-opacity: 0.12;
  --page-bg-blur: 2px;
  --checkout-bg-image: url('/assets/angel_family.webp');
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --heavy: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --container: 1480px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
}
body.locked { overflow: hidden; }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: var(--page-bg-opacity);
  background-image: var(--page-bg-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,8,7,.68), var(--bg) 88%),
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(255,255,255,.025) 90px);
}

button, input, textarea, select { font: inherit; }
button { cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: #080807; background: var(--acid); }

.noise,
.cursor-glow { display: none; }

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.grid { display: grid; }
.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.display {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 118px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -4px;
}
.display em { color: var(--accent); }
.lead { max-width: 720px; color: #c6bdb4; font-size: 17px; line-height: 1.8; }
.muted { color: var(--muted); }

.announcement {
  height: 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090807;
  color: #cfc5ba;
  font-size: 9px;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 2px;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; min-width: max-content; gap: 30px; animation: marquee 28s linear infinite; }
.marquee-track b { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(8,8,7,.76);
  transition: .25s;
}
.site-header.scrolled { height: 66px; border-bottom-color: var(--line); background: rgba(8,8,7,.96); }
.header-inner {
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 6px; }
.brand-copy strong { display: block; font-family: var(--heavy); font-size: 17px; letter-spacing: 1px; }
.brand-copy small { display: block; color: var(--muted); font-size: 8px; letter-spacing: 1.3px; }
.nav { display: flex; justify-content: center; gap: 30px; }
.nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.nav a::after { content: ''; position: absolute; right: 100%; bottom: 2px; left: 0; height: 2px; background: var(--acid); transition: .25s; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--acid); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 5px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}
.language-switch button {
  min-width: 28px;
  height: 30px;
  padding: 0 5px;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
}
.language-switch button:hover { color: var(--text); }
.language-switch button.active { color: #fffaf2; background: var(--accent); }
.language-switch button:focus-visible { outline: 2px solid var(--acid); outline-offset: 1px; }
.language-switch > span { opacity: .45; }
.icon-btn, .cart-btn, .menu-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.icon-btn { width: 42px; font-size: 21px; }
.cart-btn { padding: 0 14px; }
.cart-btn span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 8px; color: #080807; background: var(--accent); }
.icon-btn:hover, .cart-btn:hover { color: #080807; border-color: var(--acid); background: var(--acid); }
.menu-btn { display: none; width: 46px; padding: 10px; }
.menu-btn span { display: block; height: 2px; margin: 6px 0; background: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: .23s;
}
.button-primary { color: #080807; border-color: var(--accent); background: var(--accent); }
.button-primary:hover { border-color: var(--acid); background: var(--acid); }
.button-ghost:hover { color: var(--acid); border-color: var(--acid); }
.button-block { width: 100%; }
.text-link { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.text-link:hover { color: var(--acid); }

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: attr(data-number);
  position: absolute;
  top: 0;
  right: 4vw;
  color: rgba(255,255,255,.035);
  font-family: var(--heavy);
  font-size: clamp(120px, 20vw, 330px);
  line-height: .8;
}
.page-hero-content { position: relative; z-index: 2; padding: 110px 0 80px; }
.page-hero-content p { max-width: 660px; margin: 24px 0 0; }
.page-kicker { display: flex; align-items: center; gap: 10px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 2px; }
.page-kicker::before { content: ''; width: 38px; height: 2px; background: var(--acid); }

.home-hero { padding: 30px 0 70px; }
.home-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; min-height: calc(100vh - 125px); }
.home-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 70px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18,16,14,.95), rgba(8,8,7,.93));
}
.home-copy::before {
  content: '';
  position: absolute;
  top: -250px;
  left: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid color-mix(in srgb, var(--acid) 26%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(216,255,0,.018), 0 0 0 110px rgba(216,255,0,.01);
}
.home-title {
  position: relative;
  margin: 28px 0 28px;
  font-family: var(--serif);
  font-size: clamp(70px, 8.5vw, 150px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -6px;
}
.home-title em { color: var(--accent); }
.home-title span { color: var(--acid); font-family: var(--heavy); font-size: .56em; letter-spacing: -3px; }
.home-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.home-proof { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 44px; border-top: 1px solid var(--line); }
.home-proof div { padding: 20px 16px 0 0; border-right: 1px solid var(--line); }
.home-proof div + div { padding-left: 16px; }
.home-proof div:last-child { border-right: 0; }
.home-proof strong { display: block; color: var(--accent); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.home-proof span { color: var(--muted); font-size: 8px; letter-spacing: 1.2px; text-transform: uppercase; }
.home-stage { position: relative; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 30%, #34251c, #0e0c0a 46%, #070706 78%); }
.home-stage::before { content: ''; position: absolute; inset: 0; opacity: .24; background: repeating-linear-gradient(90deg, transparent 0 89px, rgba(255,255,255,.075) 90px), repeating-linear-gradient(0deg, transparent 0 89px, rgba(255,255,255,.05) 90px); }
.hero-frame { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.24); background: #111; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(.82); }
.hero-frame-main { top: 8%; left: 10%; width: 53%; height: 74%; transform: rotate(-3deg); }
.hero-frame-float { right: 5%; bottom: 8%; z-index: 2; width: 39%; height: 49%; transform: rotate(5deg); }
.frame-label { position: absolute; right: 0; bottom: 0; left: 0; padding: 13px; border-top: 1px solid var(--line); background: rgba(7,7,6,.94); font-size: 9px; font-weight: 800; letter-spacing: 1px; }
.hero-seal { position: absolute; top: 8%; right: 4%; z-index: 3; display: grid; place-items: center; width: 115px; height: 115px; color: var(--acid); border: 1px solid var(--acid); border-radius: 50%; font-family: var(--heavy); font-size: 11px; line-height: 1.25; text-align: center; transform: rotate(10deg); }
.statement { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--heavy); font-size: clamp(25px, 4.2vw, 68px); line-height: .95; letter-spacing: -2px; text-transform: uppercase; }
.statement div { padding: 28px 4vw; }
.statement div + div { color: #080807; background: var(--accent); }
.statement span { color: var(--acid); text-shadow: 2px 2px #000; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-head p { max-width: 430px; color: var(--muted); line-height: 1.75; }

.collection-grid { display: grid; grid-template-columns: 1.2fr .8fr .55fr; gap: 14px; }
.collection-card { position: relative; min-height: 620px; overflow: hidden; border: 1px solid var(--line); background: var(--panel-solid); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.12); transition: .6s; }
.collection-card:hover img { transform: scale(1.07); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 18%, rgba(0,0,0,.92) 92%); }
.collection-card-content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 30px; }
.collection-card-content h2, .collection-card-content h3 { margin: 12px 0; font-family: var(--heavy); font-size: clamp(35px, 4vw, 72px); line-height: .86; letter-spacing: -3px; }
.collection-card-content p { max-width: 390px; color: #c7beb5; line-height: 1.6; }
.collection-card-acid { color: #080807; background: var(--acid); }
.collection-card-acid::after { display: none; }
.collection-card-acid .eyebrow, .collection-card-acid .text-link, .collection-card-acid p { color: #14150f; }
.collection-symbol { position: absolute; inset: 0; display: grid; place-items: center; opacity: .12; font-family: var(--heavy); font-size: 250px; transform: rotate(-12deg); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter, .select {
  min-height: 42px;
  padding: 0 15px;
  color: white;
  border: 1px solid var(--line);
  background: #0e0d0c;
  outline: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.filter.active, .filter:hover { color: #080807; border-color: var(--acid); background: var(--acid); }
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.search-inline { min-width: 260px; flex: 1; max-width: 540px; }
.search-inline input { width: 100%; min-height: 48px; padding: 0 16px; color: white; border: 1px solid var(--line); background: rgba(10,9,8,.85); outline: none; }
.search-inline input:focus { border-color: var(--acid); }

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: rgba(15,14,13,.95); transition: .28s; content-visibility: auto; contain-intrinsic-size: 390px 650px; }
.product-card:hover { z-index: 2; border-color: color-mix(in srgb, var(--acid) 55%, transparent); transform: translateY(-7px); box-shadow: 0 28px 60px rgba(0,0,0,.6); }
.product-media { position: relative; height: 390px; overflow: hidden; background: #151310; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.product-card:hover .product-media img { transform: scale(1.055); }
.product-badge { position: absolute; top: 13px; left: 13px; padding: 8px 11px; color: #080807; background: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.wish { position: absolute; top: 12px; right: 12px; width: 42px; height: 42px; color: white; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.55); font-size: 19px; }
.wish.active { color: #080807; border-color: var(--acid); background: var(--acid); }
.product-info { padding: 22px; }
.product-collection { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.product-title { margin: 10px 0; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1; }
.product-story { min-height: 76px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.product-meta { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 18px; }
.product-price { font-family: var(--heavy); font-size: 29px; }
.product-price small { display: block; margin-top: 3px; color: var(--muted); font-family: var(--sans); font-size: 8px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.product-edition { color: var(--muted); font-size: 8px; line-height: 1.5; letter-spacing: 1px; text-align: right; text-transform: uppercase; }
.product-actions { display: grid; grid-template-columns: 1fr 52px; border-top: 1px solid var(--line); }
.product-actions button { min-height: 54px; border: 0; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.product-actions button:first-child { color: #080807; background: var(--accent); }
.product-actions button:first-child:hover { background: var(--acid); }
.product-actions .quick { border-left: 1px solid var(--line); font-size: 21px; }
.product-actions .quick:hover { color: #080807; background: var(--acid); }

.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.manifesto-image { position: relative; overflow: hidden; min-height: 680px; }
.manifesto-image img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1) saturate(.78); }
.manifesto-stamp { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px; color: #080807; background: var(--acid); font-family: var(--heavy); font-size: clamp(22px,3vw,50px); text-align: center; }
.manifesto-copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw 6vw; background: rgba(12,11,10,.95); }
.manifesto-copy blockquote { margin: 30px 0; padding-left: 20px; color: var(--acid); border-left: 3px solid var(--acid); font-family: var(--serif); font-size: 28px; line-height: 1.45; }
.manifesto-list { display: grid; gap: 1px; margin-top: 36px; background: var(--line); }
.manifesto-rule { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 22px; background: #0e0d0c; }
.manifesto-rule b { color: var(--acid); font-family: var(--heavy); font-size: 32px; }
.manifesto-rule p { margin: 0; color: var(--muted); line-height: 1.65; }

.process-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { position: relative; z-index: 1; min-height: 330px; overflow: hidden; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(12,11,10,.72); }
.process-step::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; z-index: -1; height: 0; background: var(--accent); transition: .35s; }
.process-step:hover::after { height: 100%; }
.process-step:hover { color: #090807; }
.process-step b { color: var(--acid); font-family: var(--heavy); font-size: 60px; text-shadow: 3px 3px #000; }
.process-step h3 { margin: 34px 0 12px; font-family: var(--heavy); font-size: 24px; }
.process-step p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.process-step:hover p { color: #24160e; }
.process-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 18px; }
.process-detail { min-height: 320px; padding: 32px; border: 1px solid var(--line); background: rgba(13,12,11,.88); }
.process-detail h3 { font-family: var(--serif); font-size: 42px; font-weight: 400; }
.process-detail p { color: var(--muted); line-height: 1.75; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.contact-panel { padding: clamp(28px,4vw,55px); border: 1px solid var(--line); background: rgba(13,12,11,.9); }
.contact-panel h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(40px,5vw,75px); font-weight: 400; line-height: .95; }
.contact-detail { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-detail small { display: block; color: var(--accent); font-size: 8px; letter-spacing: 1.4px; text-transform: uppercase; }
.contact-detail strong { display: block; margin-top: 6px; font-size: 18px; }
.company-panel { grid-column: 1/-1; }
.company-panel h2 { font-size: clamp(38px,4.5vw,68px); }
.company-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin: 28px 0; background: var(--line); }
.company-facts > div { min-width: 0; padding: 20px; background: var(--panel-solid); }
.company-facts small, .checkout-seller small { display: block; margin-bottom: 7px; color: var(--accent); font-size: 8px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.company-facts strong { overflow-wrap: anywhere; font-size: 15px; line-height: 1.45; }
.company-facts .company-fact-wide { grid-column: 1/-1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1/-1; }
.field label { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; color: white; border: 1px solid var(--line); background: #0b0a09; outline: none; }
.field textarea { min-height: 180px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--acid); }
.password-control { display: flex; gap: 8px; align-items: stretch; }
.password-control input { flex: 1 1 auto; min-width: 0; width: auto; }
.password-toggle { flex: 0 0 auto; min-width: 82px; padding: 0 11px; color: var(--muted); border: 1px solid var(--line); background: #0b0a09; font-size: 9px; font-weight: 800; letter-spacing: 1px; }
.password-toggle:hover { color: var(--acid); border-color: var(--acid); }
.password-toggle:focus-visible { outline: 2px solid var(--acid); outline-offset: 1px; }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; }
.form-status { min-height: 24px; color: var(--acid); font-size: 11px; }
.form-status.error { color: #ff8d78; }

.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 120; display: flex; flex-direction: column; width: min(500px,100%); border-left: 1px solid var(--line); background: #0e0d0c; transform: translateX(100%); transition: .36s; }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; height: 78px; padding: 0 22px; border-bottom: 1px solid var(--line); font-family: var(--heavy); font-size: 21px; }
.cart-head button { border: 0; background: transparent; font-size: 30px; }
.cart-items { flex: 1; overflow: auto; padding: 15px; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 84px; height: 105px; object-fit: cover; }
.cart-item b { font-family: var(--serif); font-size: 18px; }
.cart-item small { display: block; margin-top: 6px; color: var(--muted); }
.cart-item button { align-self: start; color: var(--accent); border: 0; background: transparent; }
.cart-empty { margin: auto; padding: 30px; font-family: var(--serif); font-size: 30px; line-height: 1.2; text-align: center; }
.cart-empty small { color: var(--muted); font-family: var(--sans); font-size: 12px; }
.cart-foot { padding: 22px; border-top: 1px solid var(--line); }
.cart-foot-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-foot strong { font-family: var(--heavy); font-size: 30px; }
.backdrop { position: fixed; inset: 0; z-index: 110; opacity: 0; pointer-events: none; background: rgba(0,0,0,.73); transition: .25s; }
.backdrop.open { opacity: 1; pointer-events: auto; }

.modal { position: fixed; inset: 4vh 4vw; z-index: 130; display: grid; grid-template-columns: 1.1fr .9fr; overflow: auto; opacity: 0; pointer-events: none; border: 1px solid var(--line); background: #0d0c0b; transform: scale(.97); transition: .28s; }
.modal.open { opacity: 1; pointer-events: auto; transform: none; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 52px; height: 52px; border: 1px solid var(--line); background: rgba(0,0,0,.6); font-size: 28px; }
.modal-close:hover { color: #080807; background: var(--acid); }
.modal-media { min-height: 650px; background: #151311; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw 5vw; }
.modal-copy h2 { margin: 18px 0; font-family: var(--serif); font-size: clamp(58px,7vw,110px); font-weight: 400; line-height: .84; letter-spacing: -5px; }
.modal-copy p { color: var(--muted); line-height: 1.8; }
.modal-specs { display: grid; grid-template-columns: repeat(3,1fr); margin: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.modal-specs div { padding: 18px; border-right: 1px solid var(--line); }
.modal-specs div:last-child { border-right: 0; }
.modal-specs small { display: block; color: var(--muted); font-size: 7px; letter-spacing: 1px; }
.modal-buy { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.modal-buy strong { font-family: var(--heavy); font-size: 42px; }

.checkout-page::before { background-image: var(--checkout-bg-image); opacity: .18; }
.checkout-shell { min-height: calc(100vh - 110px); padding: 70px 0 100px; }
.checkout-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start; }
.checkout-panel { padding: clamp(24px,4vw,48px); border: 1px solid var(--line); background: rgba(10,9,8,.96); }
.checkout-panel h1, .checkout-panel h2 { margin: 0 0 24px; font-family: var(--serif); font-weight: 400; line-height: .9; }
.checkout-panel h1 { font-size: clamp(52px,6vw,90px); }
.checkout-panel h2 { font-size: 38px; }
.checkout-items { display: grid; gap: 1px; background: var(--line); }
.checkout-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 14px; padding: 14px; background: #0d0c0b; }
.checkout-item img { width: 82px; height: 98px; object-fit: cover; }
.checkout-item b { font-family: var(--serif); font-size: 18px; }
.checkout-item small { display: block; color: var(--muted); margin-top: 5px; }
.checkout-summary { display: grid; gap: 12px; margin: 22px 0; }
.checkout-summary div { display: flex; justify-content: space-between; color: var(--muted); }
.checkout-summary .total { padding-top: 16px; color: white; border-top: 1px solid var(--line); font-family: var(--heavy); font-size: 25px; }
.payment-note { padding: 15px; color: var(--muted); border: 1px solid var(--line); font-size: 12px; line-height: 1.65; }
.vat-note, .collection-shipping-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.vat-note { color: var(--accent); font-weight: 800; }
.checkout-payment-label { display: block; margin-top: 34px; }
.delivery-selector { display: grid; gap: 18px; }
.delivery-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.delivery-choice label, .delivery-carriers label { position: relative; display: flex; gap: 10px; min-width: 0; padding: 14px; border: 1px solid var(--line); background: color-mix(in srgb, var(--panel-solid) 88%, transparent); cursor: pointer; }
.delivery-choice input, .delivery-carriers input { flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--accent); }
.delivery-choice label:has(input:checked), .delivery-carriers label:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.delivery-choice b { display: block; font-size: 11px; line-height: 1.35; }
.delivery-choice small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.delivery-pickup-fields { display: grid; gap: 14px; }
.delivery-carriers { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.delivery-carriers label { align-items: center; justify-content: center; padding: 12px 8px; font-size: 10px; font-weight: 900; text-align: center; text-transform: uppercase; }
.delivery-carriers:empty { display: none; }
.checkout-background-label { display: inline-block; margin-bottom: 18px; padding: 8px 10px; color: #080807; background: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 1px; }
.checkout-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.checkout-consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px; accent-color: var(--accent); }
.checkout-consent a { color: var(--accent); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.success-card { width: min(900px, calc(100% - 32px)); margin: 90px auto; padding: clamp(30px,6vw,80px); border: 1px solid var(--line); background: rgba(10,9,8,.92); text-align: center; }
.success-mark { display: grid; place-items: center; width: 100px; height: 100px; margin: 0 auto 28px; color: #080807; border-radius: 50%; background: var(--acid); font-family: var(--heavy); font-size: 38px; }
.success-card h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px,7vw,100px); font-weight: 400; line-height: .9; }
.success-card p { max-width: 650px; margin: 22px auto; color: var(--muted); line-height: 1.75; }

.builder-layout { display: grid; grid-template-columns: 390px 1fr; min-height: 100vh; }
.builder-sidebar { position: sticky; top: 0; height: 100vh; overflow: auto; padding: 24px; border-right: 1px solid var(--line); background: #0b0a09; }
.builder-preview { min-width: 0; }
.builder-heading { display: flex; align-items: center; gap: 12px; }
.builder-title { font-family: var(--heavy); font-size: 22px; }
.language-switch-builder { flex: 0 0 auto; margin-left: auto; }
.builder-group { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.builder-group h2 { margin: 0 0 14px; color: var(--acid); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.builder-group .field { margin-bottom: 12px; }
.builder-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.builder-check { display: flex; align-items: flex-start; gap: 9px; margin: 10px 0; color: var(--muted); font-size: 11px; line-height: 1.45; cursor: pointer; }
.builder-check input { flex: 0 0 auto; width: 17px; height: 17px; margin: 0; accent-color: var(--accent); }
.builder-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
.product-editor { display: grid; gap: 10px; }
.product-editor-row { padding: 12px; border: 1px solid var(--line); background: #11100f; }
.product-editor-row summary { cursor: pointer; font-weight: 800; }
.product-editor-fields { display: grid; gap: 10px; margin-top: 14px; }
.preview-frame { width: 100%; height: 100vh; border: 0; background: white; }
.builder-status { min-height: 24px; margin-top: 12px; color: var(--acid); font-size: 11px; }
.builder-records { display: grid; gap: 8px; }
.builder-record { display: grid; gap: 5px; padding: 12px; border: 1px solid var(--line); background: #11100f; font-size: 11px; line-height: 1.45; }
.builder-record strong { color: var(--accent); }
.builder-record small { color: var(--muted); }
.builder-order-tools { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(120px,1fr); gap: 9px; }
.builder-order-empty { padding: 18px; border: 1px dashed var(--line); text-align: center; }
.builder-order-count { margin: 5px 0 2px; color: var(--muted); font-size: 11px; }
.builder-order { padding: 0; }
.builder-order > summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px; cursor: pointer; list-style-position: inside; }
.builder-order > summary span { display: grid; min-width: 0; gap: 3px; }
.builder-order > summary strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.builder-order > summary b { flex: 0 0 auto; color: var(--text); font-size: 13px; }
.builder-order-body { display: grid; gap: 12px; padding: 0 13px 13px; border-top: 1px solid var(--line); }
.builder-order-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 12px; background: var(--line); }
.builder-order-meta > span { display: grid; align-content: start; gap: 3px; min-width: 0; padding: 10px; background: #0b0a09; overflow-wrap: anywhere; }
.builder-order-meta a { color: var(--accent); }
.builder-order-items { padding: 11px; border: 1px solid var(--line); }
.builder-order-items p { margin: 6px 0 0; color: var(--text); line-height: 1.65; }
.builder-order-mail { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.builder-order-mail span { padding: 8px; color: #e6b7aa; border: 1px solid #67372d; font-size: 10px; text-align: center; }
.builder-order-mail span.done { color: #c9f6c0; border-color: #3a6334; }
.builder-order-history { padding: 10px; border: 1px solid var(--line); }
.builder-order-history ul { display: grid; gap: 7px; margin: 7px 0 0; padding: 0; list-style: none; }
.builder-order-history li { display: grid; gap: 2px; padding-top: 7px; border-top: 1px solid var(--line); }

.toast { position: fixed; bottom: 24px; left: 50%; z-index: 200; padding: 13px 18px; opacity: 0; color: #080807; background: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; transform: translate(-50%,30px); transition: .28s; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }
.section,
.site-footer { content-visibility: auto; contain-intrinsic-size: auto 800px; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 180px 1fr auto; }
  .nav { gap: 17px; }
  .home-hero-grid, .checkout-grid { grid-template-columns: 1fr; }
  .home-stage { min-height: 720px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card-acid { grid-column: 1/-1; min-height: 360px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .builder-layout { grid-template-columns: 340px 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }
  .announcement { display: none; }
  .noise, .cursor-glow { display: none; }
  .container, .header-inner { width: min(100% - 28px, var(--container)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand-copy { display: none; }
  .nav { position: fixed; top: 70px; right: 0; left: 0; z-index: -1; flex-direction: column; align-items: flex-start; padding: 30px; border-bottom: 1px solid var(--line); background: #090807; transform: translateY(-150%); transition: .3s; }
  .nav.open { transform: none; }
  .menu-btn { display: block; }
  .icon-btn { display: none; }
  .language-switch { min-height: 38px; }
  .language-switch button { min-width: 25px; padding: 0 3px; }
  .cart-btn { width: 42px; padding: 0; font-size: 0; }
  .cart-btn span { margin: 0; font-size: 10px; }
  .section { padding: 74px 0; }
  .home-title { font-size: 72px; letter-spacing: -4px; }
  .home-stage { min-height: 610px; }
  .hero-frame-main { top: 8%; left: 5%; width: 67%; height: 67%; }
  .hero-frame-float { right: 3%; bottom: 7%; width: 48%; height: 43%; }
  .hero-seal { width: 84px; height: 84px; font-size: 8px; }
  .home-proof { grid-template-columns: 1fr; }
  .home-proof div { padding: 13px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .statement { grid-template-columns: 1fr; font-size: 32px; }
  .statement div + div { border-top: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head p { margin-top: 22px; }
  .display { font-size: 62px; letter-spacing: -3px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card, .collection-card-acid { grid-column: auto; min-height: 520px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-media { height: 300px; }
  .product-title { font-size: 23px; }
  .product-story { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-copy { padding: 70px 22px; }
  .process-grid, .process-detail-grid { grid-template-columns: 1fr; }
  .contact-grid, .tracking-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .delivery-choice, .delivery-carriers { grid-template-columns: 1fr; }
  .modal { inset: 2vh 2vw; grid-template-columns: 1fr; }
  .modal-copy { padding: 55px 22px; }
  .modal-copy h2 { font-size: 62px; }
  .modal-specs { grid-template-columns: 1fr; }
  .modal-specs div { border-right: 0; border-bottom: 1px solid var(--line); }
  .builder-layout { display: block; }
  .builder-sidebar { position: relative; width: 100%; height: auto; }
  .preview-frame { height: 760px; }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
  .home-title { font-size: 62px; }
  .home-stage { min-height: 540px; }
  .page-hero { min-height: 490px; }
  .page-hero-content { padding: 80px 0 55px; }
  .collection-card-content h2, .collection-card-content h3 { font-size: 46px; }
  .builder-row, .builder-actions, .builder-order-tools, .builder-order-meta, .builder-order-mail { grid-template-columns: 1fr; }
  .tracking-result-head { display: grid; }
  .tracking-facts { grid-template-columns: 1fr; }
}

/* ============================================================
   V4 — MULTI-PAGE COLLECTION THEMES
   Each collection is a separate page with its own visual world.
============================================================ */

:root {
  --panel-alt: #1a1714;
  --hero-bg-image: url('/assets/hero-angel.webp');
}

html.theme-ready body,
html.theme-ready .site-header,
html.theme-ready .collection-ribbon,
html.theme-ready .home-copy,
html.theme-ready .product-card,
html.theme-ready .cart-drawer,
html.theme-ready .modal,
html.theme-ready .checkout-panel,
html.theme-ready .contact-panel,
html.theme-ready .process-detail,
html.theme-ready .site-footer {
  transition: color .45s ease, background-color .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.lead,
.section-head p,
.product-story,
.product-edition,
.collection-page-copy p,
.collection-facts span,
.collection-story p,
.site-footer p,
.site-footer small { color: var(--muted); }

.announcement {
  color: var(--muted);
  border-color: var(--line);
  background: color-mix(in srgb, var(--panel-solid) 94%, #000);
}

.site-header,
.site-header.scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--panel-solid) 88%, transparent);
}

.nav a::after { background: var(--acid); }
.nav a.active { color: var(--accent); }

.collection-ribbon {
  position: relative;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 91%, transparent);
}
.collection-ribbon-inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 48px;
  margin: auto;
  display: flex;
  align-items: stretch;
}
.collection-ribbon-label {
  display: flex;
  align-items: center;
  padding-right: 25px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
  white-space: nowrap;
}
.collection-ribbon a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 25px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}
.collection-ribbon a small { color: var(--accent); font-size: 8px; }
.collection-ribbon a::after {
  content: '';
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transition: right .25s ease;
}
.collection-ribbon a:hover,
.collection-ribbon a.active { color: var(--text); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.collection-ribbon a:hover::after,
.collection-ribbon a.active::after { right: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 95%, transparent);
}
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; align-items: start; }
.footer-mark { font-family: var(--heavy); font-size: clamp(48px,7vw,100px); line-height: .72; color: var(--accent); }
.footer-logo { width: min(210px, 100%); height: auto; border: 1px solid var(--line); }
.footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.social-links a, .contact-social a { color: var(--accent); font-weight: 800; }
.contact-social { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 5px; }
.footer-note { text-align: right; font-family: var(--heavy); font-size: 17px; line-height: 1.45; }
.footer-note small { font-family: var(--sans); font-size: 9px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.5; }
.footer-legal strong, .footer-legal b { color: var(--text); }
.footer-legal a:last-child { margin-left: auto; color: var(--accent); font-weight: 800; text-transform: uppercase; }
.checkout-seller { display: grid; gap: 7px; margin-top: 18px; padding: 18px; border: 1px solid var(--line); background: color-mix(in srgb, var(--panel-solid) 92%, transparent); font-size: 11px; line-height: 1.5; }
.checkout-seller strong { font-size: 18px; }
.checkout-seller a { color: var(--accent); font-weight: 800; }

/* Sales, returns and consumer information */
.legal-hero .page-hero-content { max-width: 1050px; }
.legal-layout { display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr); gap: 18px; align-items: start; }
.legal-toc { position: sticky; top: 90px; display: grid; gap: 0; padding: 24px; }
.legal-toc .eyebrow { margin-bottom: 14px; }
.legal-toc a { padding: 11px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .4px; }
.legal-toc a:hover { color: var(--accent); }
.legal-document { padding: clamp(28px,5vw,72px); }
.legal-updated { margin-bottom: 34px; color: var(--muted); font-size: 10px; letter-spacing: .6px; text-transform: uppercase; }
.legal-section { scroll-margin-top: 90px; padding: 38px 0; border-top: 1px solid var(--line); }
.legal-section:first-of-type { border-top: 0; }
.legal-section h2 { margin: 10px 0 22px; font-family: var(--serif); font-size: clamp(34px,4vw,58px); font-weight: 400; line-height: 1; letter-spacing: -2px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-section ul { display: grid; gap: 12px; padding-left: 21px; }
.legal-section a { color: var(--accent); }
.legal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; background: var(--line); }
.legal-facts div { min-width: 0; padding: 16px; background: var(--panel-solid); }
.legal-facts .legal-fact-wide { grid-column: 1 / -1; }
.legal-facts dt { margin-bottom: 7px; color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.legal-facts dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 800; }
.legal-warning { padding: 15px; color: #fff4e7 !important; border: 1px solid #a75030; background: rgba(126,45,24,.28); font-size: 11px !important; font-weight: 800; }
.tracking-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: 18px; align-items: start; }
.tracking-panel h2, .tracking-result h2 { margin: 16px 0 18px; font-family: var(--serif); font-size: clamp(38px,4vw,64px); font-weight: 400; line-height: .95; }
.tracking-form { display: grid; gap: 16px; margin-top: 28px; }
.tracking-form input { font-family: var(--mono); letter-spacing: .8px; text-transform: lowercase; }
.tracking-result-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.tracking-result-head h2 { margin-bottom: 0; overflow-wrap: anywhere; }
.tracking-status-badge { flex: 0 0 auto; padding: 10px 12px; color: #080807; background: var(--acid); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; }
.tracking-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 28px 0; background: var(--line); }
.tracking-facts > div { min-width: 0; padding: 17px; background: var(--panel-solid); }
.tracking-facts small, .tracking-items > small { display: block; margin-bottom: 8px; color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; }
.tracking-facts strong { display: block; overflow-wrap: anywhere; font-size: 14px; line-height: 1.45; }
.tracking-items { padding-top: 6px; }
.tracking-items ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.tracking-items li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.tracking-items li b { color: var(--text); white-space: nowrap; }
.tracking-updated { margin-top: 24px; font-size: 11px; }
.withdrawal-copy { margin-top: 20px; padding: clamp(20px,4vw,38px); border: 1px solid var(--line); background: color-mix(in srgb, var(--panel-solid) 92%, transparent); }
.withdrawal-copy p { color: var(--text); }
.withdrawal-access {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 85;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #080807;
  border: 1px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 12px 38px rgba(0,0,0,.32);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.withdrawal-access:hover, .withdrawal-access:focus-visible { color: #080807; border-color: var(--acid); background: var(--acid); }
body[data-page="withdrawal"] .withdrawal-access { display: none; }
body[data-page="withdrawal"] .page-hero { min-height: 360px; }
.withdrawal-layout { display: grid; grid-template-columns: minmax(250px,.72fr) minmax(0,1.28fr); gap: 18px; align-items: start; }
.withdrawal-help { position: sticky; top: 90px; }
.withdrawal-help h2, .withdrawal-panel h2 { font-size: clamp(38px,4vw,62px); }
.withdrawal-help p, .form-privacy, .withdrawal-confirm-block p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.form-privacy { margin: 2px 0 8px; }
.form-privacy a { color: var(--accent); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.withdrawal-scope { margin: 0; padding: 14px; border: 1px solid var(--line); }
.withdrawal-scope legend { padding: 0 6px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.withdrawal-scope label { display: flex; align-items: center; gap: 9px; padding: 6px 0; color: var(--text); font-size: 11px; cursor: pointer; }
.withdrawal-panel .field label, .withdrawal-scope legend { font-size: 12px; }
.withdrawal-scope label { font-size: 14px; }
.withdrawal-panel .button { font-size: 12px; }
.withdrawal-scope input { width: 17px; height: 17px; accent-color: var(--accent); }
.withdrawal-confirm-block { padding: 18px; border: 1px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--panel-solid)); }
.withdrawal-confirm-block p { margin-top: 0; }
.withdrawal-receipt { padding-top: 12px; }
.receipt-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 24px 0; background: var(--line); }
.receipt-facts div { min-width: 0; padding: 16px; background: var(--panel-solid); }
.receipt-facts dt { margin-bottom: 7px; color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.receipt-facts dd { margin: 0; overflow-wrap: anywhere; font-size: 12px; font-weight: 800; }
.receipt-text { overflow: auto; padding: 18px; color: var(--text); border: 1px solid var(--line); background: #0b0a09; font: 12px/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; }
.withdrawal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.privacy-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); }
.privacy-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.privacy-table th, .privacy-table td { padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th:last-child, .privacy-table td:last-child { border-right: 0; }
.privacy-table tr:last-child td { border-bottom: 0; }
.privacy-table th { color: var(--accent); background: var(--panel-alt); font-size: 8px; letter-spacing: 1px; text-transform: uppercase; }
.privacy-table td { color: var(--muted); background: var(--panel-solid); font-size: 12px; line-height: 1.65; }
.privacy-table td:first-child { color: var(--text); font-weight: 800; }

/* Collection landing pages */
.collection-landing {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 158px);
  border-bottom: 1px solid var(--line);
}
.collection-landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 96%, transparent) 0%, color-mix(in srgb, var(--bg) 80%, transparent) 43%, color-mix(in srgb, var(--bg) 12%, transparent) 77%),
    linear-gradient(180deg, transparent 45%, var(--bg) 100%),
    var(--hero-bg-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.collection-landing::after {
  content: attr(data-number);
  position: absolute;
  top: 1vw;
  right: 3vw;
  color: color-mix(in srgb, var(--text) 8%, transparent);
  font-family: var(--heavy);
  font-size: clamp(100px,18vw,300px);
  line-height: .8;
}
.collection-landing-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.collection-page-copy { width: min(720px, 58%); }
.collection-page-copy h1 {
  margin: 26px 0;
  font-family: var(--serif);
  font-size: clamp(70px,9vw,148px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -6px;
}
.collection-page-copy h1 em { color: var(--accent); }
.collection-page-copy p { max-width: 650px; font-size: 17px; line-height: 1.8; }
.collection-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.collection-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 680px;
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.collection-facts div { padding: 20px 16px 0 0; border-right: 1px solid var(--line); }
.collection-facts div + div { padding-left: 16px; }
.collection-facts div:last-child { border-right: 0; }
.collection-facts strong { display: block; color: var(--accent); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.collection-facts span { font-size: 8px; letter-spacing: 1.1px; text-transform: uppercase; }
.collection-art-label {
  position: absolute;
  right: 4vw;
  bottom: 45px;
  z-index: 3;
  min-width: 290px;
  padding: 20px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 96%, #000);
}
.collection-art-label strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.collection-art-label small { display: block; margin-top: 8px; color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: 1.3px; }

.collection-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.collection-story {
  padding: clamp(28px,5vw,70px);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 96%, #000);
}
.collection-story h2 { margin: 15px 0 22px; font-family: var(--serif); font-size: clamp(48px,6vw,94px); font-weight: 400; line-height: .88; letter-spacing: -4px; }
.collection-story h2 em { color: var(--accent); }
.collection-story p { line-height: 1.8; }
.collection-story-image { min-height: 650px; overflow: hidden; border: 1px solid var(--line); }
.collection-story-image img { width: 100%; height: 100%; object-fit: cover; }

/* Light museum world for Angels */
body[data-theme="angels"],
body[data-active-theme="angels"] { color-scheme: light; }
body[data-theme="angels"]::after,
body[data-active-theme="angels"]::after {
  background:
    linear-gradient(180deg, rgba(246,241,232,.5), var(--bg) 90%),
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(77,57,37,.035) 90px);
}
body[data-theme="angels"] .noise,
body[data-active-theme="angels"] .noise { opacity: .02; }
body[data-theme="angels"] .home-copy,
body[data-active-theme="angels"] .home-copy {
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel-solid) 96%, white), color-mix(in srgb, var(--panel-alt) 88%, transparent));
}
body[data-theme="angels"] .home-stage,
body[data-active-theme="angels"] .home-stage {
  background: radial-gradient(circle at 54% 28%, #fffaf1, #ded2c0 47%, #b9a990 100%);
}
body[data-theme="angels"] .home-stage::before,
body[data-active-theme="angels"] .home-stage::before { opacity: .14; }
body[data-theme="angels"] .frame-label,
body[data-active-theme="angels"] .frame-label,
body[data-theme="angels"] .cart-drawer,
body[data-active-theme="angels"] .cart-drawer,
body[data-theme="angels"] .modal,
body[data-active-theme="angels"] .modal,
body[data-theme="angels"] .checkout-panel,
body[data-active-theme="angels"] .checkout-panel {
  background: color-mix(in srgb, var(--panel-solid) 94%, transparent);
}
body[data-theme="angels"] .product-card,
body[data-active-theme="angels"] .product-card,
body[data-theme="angels"] .product-media,
body[data-active-theme="angels"] .product-media,
body[data-theme="angels"] .filter,
body[data-active-theme="angels"] .filter,
body[data-theme="angels"] .select,
body[data-active-theme="angels"] .select,
body[data-theme="angels"] .search-inline input,
body[data-active-theme="angels"] .search-inline input {
  color: var(--text);
  background: color-mix(in srgb, var(--panel-solid) 94%, transparent);
}
body[data-theme="angels"] .collection-card-content p,
body[data-active-theme="angels"] .collection-card-content p { color: #e8dfd4; }
body[data-theme="angels"] .button-primary,
body[data-active-theme="angels"] .button-primary,
body[data-theme="angels"] .product-actions button:first-child,
body[data-active-theme="angels"] .product-actions button:first-child { color: #fffaf2; }
body[data-theme="angels"] .cart-btn span,
body[data-active-theme="angels"] .cart-btn span { color: #fffaf2; }
body[data-theme="angels"] .menu-btn span,
body[data-active-theme="angels"] .menu-btn span { background: var(--text); }

/* Arachnida — obsidian / oxblood / cold bone */
body[data-theme="arachnida"] .collection-landing::before,
body[data-active-theme="arachnida"] .collection-landing::before {
  background-image:
    linear-gradient(90deg, rgba(4,5,6,.98) 0%, rgba(4,5,6,.84) 43%, rgba(4,5,6,.08) 78%),
    linear-gradient(180deg, transparent 45%, var(--bg) 100%),
    var(--hero-bg-image);
}
body[data-theme="arachnida"] .product-card:hover,
body[data-active-theme="arachnida"] .product-card:hover { box-shadow: 0 30px 70px rgba(93,7,20,.32); }

/* Limited — graphite / platinum / imperial violet */
body[data-theme="limited"] .collection-landing::before,
body[data-active-theme="limited"] .collection-landing::before {
  background-image:
    linear-gradient(90deg, rgba(10,8,13,.98) 0%, rgba(10,8,13,.83) 42%, rgba(10,8,13,.12) 76%),
    linear-gradient(180deg, transparent 45%, var(--bg) 100%),
    var(--hero-bg-image);
}
body[data-theme="limited"] .product-card:hover,
body[data-active-theme="limited"] .product-card:hover { box-shadow: 0 30px 70px rgba(91,65,117,.34); }

@media (max-width: 980px) {
  .collection-ribbon-inner { overflow-x: auto; }
  .collection-ribbon-label { display: none; }
  .collection-ribbon a { min-width: max-content; }
  .collection-page-copy { width: min(760px, 80%); }
  .collection-story-grid { grid-template-columns: 1fr; }
  .collection-story-image { min-height: 560px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-note { text-align: left; }
}

@media (max-width: 820px) {
  .collection-ribbon-inner { width: 100%; }
  .collection-ribbon a { padding: 0 18px; }
  .collection-landing { min-height: 720px; }
  .collection-landing-inner { align-items: end; padding: 80px 0 55px; }
  .collection-page-copy { width: 100%; }
  .collection-page-copy h1 { font-size: 70px; letter-spacing: -4px; }
  .collection-art-label { display: none; }
  .collection-facts { grid-template-columns: 1fr; }
  .collection-facts div { padding: 12px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .company-facts { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: 1fr 1fr; }
  .legal-toc .eyebrow { grid-column: 1 / -1; }
  .withdrawal-layout { grid-template-columns: 1fr; }
  .withdrawal-help { position: static; }
}

@media (max-width: 520px) {
  .collection-page-copy h1 { font-size: 59px; }
  .collection-story-image { min-height: 440px; }
  .footer-links { grid-template-columns: 1fr; }
  .company-facts { grid-template-columns: 1fr; }
  .company-facts .company-fact-wide { grid-column: auto; }
  .footer-legal a:last-child { width: 100%; margin-left: 0; }
  .legal-toc, .legal-facts { grid-template-columns: 1fr; }
  .legal-facts .legal-fact-wide { grid-column: auto; }
  .withdrawal-access { right: 10px; bottom: 10px; left: 10px; justify-content: center; }
  body:not([data-page="withdrawal"]):not([data-page="builder"]) { padding-bottom: 64px; }
  .receipt-facts { grid-template-columns: 1fr; }
}

/* Immediate theme defaults before JSON configuration loads */
body[data-theme="angels"] {
  --bg: #eee8de;
  --panel: rgba(248,243,234,.9);
  --panel-solid: #f8f3ea;
  --panel-alt: #e1d6c6;
  --text: #251d17;
  --muted: #74685e;
  --line: rgba(37,29,23,.16);
  --accent: #a67e49;
  --acid: #6d5133;
  --page-bg-image: url('/assets/angels-collection.webp');
  --hero-bg-image: url('/assets/hero-angel.webp');
  --page-bg-opacity: .23;
  --page-bg-blur: 1px;
}
body[data-theme="arachnida"] {
  --bg: #070809;
  --panel: rgba(17,18,21,.9);
  --panel-solid: #111215;
  --panel-alt: #17191c;
  --text: #f0ece5;
  --muted: #9d9690;
  --line: rgba(255,255,255,.13);
  --accent: #9d2835;
  --acid: #c7b69a;
  --page-bg-image: url('/assets/arachnida-collection.webp');
  --hero-bg-image: url('/assets/spider-goliath.webp');
  --page-bg-opacity: .25;
  --page-bg-blur: 1px;
}
body[data-theme="limited"] {
  --bg: #0c0a0f;
  --panel: rgba(24,20,29,.9);
  --panel-solid: #18141d;
  --panel-alt: #211a28;
  --text: #f1ede8;
  --muted: #aaa2ad;
  --line: rgba(255,255,255,.13);
  --accent: #b29b6b;
  --acid: #866ca0;
  --page-bg-image: url('/assets/collector-originals.webp');
  --hero-bg-image: url('/assets/collector-originals.webp');
  --page-bg-opacity: .22;
  --page-bg-blur: 1px;
}

body[data-theme="arachnida"] .button-primary,
body[data-active-theme="arachnida"] .button-primary,
body[data-theme="arachnida"] .product-actions button:first-child,
body[data-active-theme="arachnida"] .product-actions button:first-child,
body[data-theme="arachnida"] .cart-btn span,
body[data-active-theme="arachnida"] .cart-btn span { color: #fff6f3; }
body[data-theme="arachnida"] .statement div + div,
body[data-active-theme="arachnida"] .statement div + div { color: #fff6f3; }
body[data-theme="limited"] .statement div + div,
body[data-active-theme="limited"] .statement div + div { color: #120f15; }
body[data-theme="forge"] {
  --bg: #090b0c;
  --panel: rgba(18,22,25,.9);
  --panel-solid: #121619;
  --panel-alt: #1b2226;
  --text: #edf1f1;
  --muted: #98a3a5;
  --line: rgba(255,255,255,.12);
  --accent: #b98252;
  --acid: #91aeb9;
  --page-bg-image: url('/assets/collector-originals.webp');
  --hero-bg-image: url('/assets/angel_family.webp');
  --page-bg-opacity: .12;
  --page-bg-blur: 2px;
}

/* Fixed premium preview for Limited Editions, independent of current page theme */
.collection-card-acid {
  color: #f1ede8;
  background:
    radial-gradient(circle at 80% 15%, rgba(178,155,107,.28), transparent 28%),
    linear-gradient(145deg, #211a28, #100d13 68%);
}
.collection-card-acid .eyebrow,
.collection-card-acid .text-link { color: #d6c395; }
.collection-card-acid p { color: #bcb3bf; }

html.builder-preview .noise,
html.builder-preview .cursor-glow { display: none; }
html.builder-preview .marquee-track { animation: none; }
html.builder-preview .reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .noise, .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
}
