:root {
  --ink: #070604;
  --ink-2: #12100c;
  --paper: #eee9df;
  --white: #fffaf0;
  --muted: #766f63;
  --line: rgba(7, 6, 4, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #c8a45d;
  --accent-dark: #a77d36;
  --danger: #ff554d;
  --success: #c8a45d;
  --radius: 2px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  --header-h: 112px;
  --display: "Syne", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
body.admin-mode .site-header,
body.admin-mode .site-footer { display: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
::selection { color: var(--ink); background: var(--accent); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--accent);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.announcement {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: 100%;
  height: 81px;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--ink);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.08em;
  transform: rotate(-4deg);
}
.brand-name { font-family: var(--display); font-size: 12px; line-height: 0.93; letter-spacing: -0.05em; }
.brand-light { color: var(--white); }
.brand-light .brand-mark { color: var(--ink); background: var(--accent); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.5vw, 40px); }
.desktop-nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 5px; }
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.icon-button:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.icon-button svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--ink);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 900;
}
.menu-toggle { display: none; }
.menu-toggle span { width: 20px; height: 1.5px; background: currentColor; }
.menu-toggle span + span { margin-top: 5px; }

.mobile-menu, .menu-scrim { display: none; }

main { min-height: 70vh; overflow: hidden; }
.page-enter { animation: pageIn 0.45s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } }

.container { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: clamp(76px, 9vw, 140px) 0; }
.section-compact { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-white { background: var(--white); }
.section-accent { background: var(--accent); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 70px);
}
.section-head h2, .section-title {
  max-width: 900px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 6.3vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}
.section-head p { max-width: 460px; margin: 0; color: var(--muted); }
.section-dark .section-head p { color: #aaa; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.muted { color: var(--muted); }
.accent-text { color: var(--accent); }
.display { font-family: var(--display); text-transform: uppercase; letter-spacing: -0.07em; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-3px); background: var(--ink-2); }
.button-accent { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-accent:hover { background: var(--accent-dark); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--ink); background: transparent; }
.button-ghost:hover { color: var(--paper); background: var(--ink); }
.button-ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); }
.button-ghost-light:hover { color: var(--ink); background: var(--white); }
.button-danger { color: var(--white); background: var(--danger); border-color: var(--danger); }
.button[disabled] { cursor: not-allowed; opacity: 0.45; transform: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-button { padding: 0; color: var(--ink); background: none; border: 0; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-button:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-light { color: var(--white); }
.arrow-link { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.arrow-link span { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .2s ease; }
.arrow-link:hover span { transform: translate(4px, -4px); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: var(--white);
  background: var(--ink);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 130px) clamp(24px, 6vw, 96px);
}
.hero h1 {
  max-width: 880px;
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: 0.79;
  letter-spacing: -0.105em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--accent); }
.hero-copy > p { max-width: 600px; margin: 0 0 36px; color: #c3c3bd; font-size: clamp(16px, 1.5vw, 21px); }
.hero-meta { display: flex; gap: 30px; margin-top: 58px; color: #888; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background: #101010;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 45% 48%, rgba(216,255,62,.25), transparent 28%), linear-gradient(135deg, transparent 0 40%, rgba(255,255,255,.03) 40% 41%, transparent 41% 60%, rgba(216,255,62,.07) 60% 61%, transparent 61%);
  animation: floatField 10s ease-in-out infinite alternate;
}
@keyframes floatField { to { transform: translate3d(-2%, 3%, 0) scale(1.06); } }
.hero-orbit, .hero-orbit::before, .hero-orbit::after { position: absolute; border: 1px solid rgba(216,255,62,.32); border-radius: 50%; }
.hero-orbit { width: 580px; height: 580px; right: -120px; top: 50%; transform: translateY(-50%); }
.hero-orbit::before { content: ""; inset: 70px; }
.hero-orbit::after { content: ""; inset: 160px; background: var(--accent); box-shadow: 0 0 100px rgba(216,255,62,.28); }
.hero-monogram {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 88px);
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(120px, 20vw, 330px);
  letter-spacing: -.13em;
}
.visual-upload-note {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  max-width: 260px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(0,0,0,.62);
  border: 1px solid var(--line-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--accent); }
.trust-item { padding: 24px 30px; border-right: 1px solid rgba(0,0,0,.2); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.filter-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 38px;
  padding: 0 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.filter-chip:hover, .filter-chip.active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.select-clean { min-height: 42px; padding: 0 38px 0 14px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { position: relative; min-width: 0; }
.product-card a { display: block; }
.product-visual {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  color: var(--white);
  background: #171717;
  border: 1px solid rgba(255,255,255,.08);
}
.product-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  right: -10%;
  top: 8%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 80px rgba(255,255,255,.018);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.product-visual::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 28%;
  right: -8%;
  bottom: 10%;
  background: currentColor;
  opacity: .18;
  filter: blur(34px);
  transform: rotate(-13deg);
}
.product-card:hover .product-visual::before { transform: scale(1.15) translate(-7%, 5%); }
.visual-code { position: absolute; z-index: 2; left: 18px; top: 18px; font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.visual-big { position: absolute; z-index: 2; left: 12px; bottom: 38px; font-family: var(--display); font-size: clamp(68px, 7vw, 116px); line-height: .8; letter-spacing: -.12em; opacity: .9; }
.visual-note { position: absolute; z-index: 3; right: 14px; bottom: 14px; left: 14px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.34); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-align: right; }
.tone-acid { color: var(--accent); background: linear-gradient(145deg, #090909, #1b2110); }
.tone-ember { color: #ff493d; background: linear-gradient(145deg, #180808, #44100d); }
.tone-violet { color: #ad7aff; background: linear-gradient(145deg, #0d0816, #261046); }
.tone-silver { color: #d8d9d2; background: linear-gradient(145deg, #0a0a0a, #383936); }
.tone-gold { color: #eac264; background: linear-gradient(145deg, #120e05, #493714); }
.tone-rose { color: #ff9fb3; background: linear-gradient(145deg, #1c0a10, #572636); }
.tone-cyan { color: #55e8ed; background: linear-gradient(145deg, #061313, #103d40); }
.tone-mono { color: #f5f1e9; background: linear-gradient(145deg, #0b0b0b, #272727); }
.badge { position: absolute; z-index: 5; top: 12px; left: 12px; padding: 6px 9px; color: var(--ink); background: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.product-card .badge { left: auto; right: 12px; }
.favorite-button { position: absolute; z-index: 5; top: 14px; left: 14px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; backdrop-filter: blur(8px); }
.favorite-button svg { width: 16px; height: 16px; }
.favorite-button.active { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.product-info { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; padding: 18px 2px 28px; }
.product-info h3 { margin: 0; font-size: 14px; font-weight: 800; }
.product-info p { margin: 0; color: var(--muted); font-size: 11px; }
.product-info strong { grid-row: 1 / 3; grid-column: 2; font-size: 14px; }
.quick-add { width: 100%; min-height: 42px; margin-top: -16px; color: var(--ink); background: transparent; border: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: all .2s ease; }
.quick-add:hover { color: var(--paper); background: var(--ink); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step-card { min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-card .number { font-family: var(--display); font-size: 64px; line-height: 1; letter-spacing: -.08em; }
.step-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: 24px; line-height: .95; letter-spacing: -.05em; text-transform: uppercase; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; }
.step-card:hover { color: var(--ink); background: var(--accent); }
.step-card:hover p { color: var(--ink); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.benefit-card { min-height: 220px; padding: 28px; background: var(--ink); transition: background .2s ease; }
.benefit-card:hover { background: #1b1b1b; }
.benefit-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 60px; color: var(--ink); background: var(--accent); border-radius: 50%; font-weight: 900; }
.benefit-card h3 { margin: 0 0 7px; font-size: 15px; text-transform: uppercase; }
.benefit-card p { margin: 0; color: #92928d; font-size: 13px; }

.review-note { margin: 0 0 22px; padding: 14px 18px; color: #6e5a00; background: #fff3b8; border: 1px solid #d7bf49; font-size: 12px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 28px; background: var(--white); border: 1px solid var(--line); }
.review-card .stars { color: #b28a00; letter-spacing: 3px; }
.review-card blockquote { margin: 45px 0; font-family: Georgia, serif; font-size: 22px; line-height: 1.35; }
.review-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

.marquee { overflow: hidden; padding: 28px 0; color: var(--ink); background: var(--accent); white-space: nowrap; }
.marquee-track { width: max-content; display: flex; gap: 45px; font-family: var(--display); font-size: clamp(48px, 7vw, 100px); line-height: .8; letter-spacing: -.08em; text-transform: uppercase; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

.page-hero { padding: clamp(80px, 9vw, 140px) 0 56px; color: var(--white); background: var(--ink); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { max-width: 1200px; margin: 24px 0; font-family: var(--display); font-size: clamp(58px, 9vw, 142px); line-height: .82; letter-spacing: -.09em; text-transform: uppercase; }
.page-hero p { max-width: 700px; color: #aaa; font-size: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #8b8b86; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--accent); }

.catalog-layout { display: grid; grid-template-columns: 230px 1fr; gap: 42px; }
.filter-sidebar { position: sticky; top: 130px; align-self: start; }
.filter-group { padding: 22px 0; border-bottom: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 14px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.filter-group label { display: flex; align-items: center; gap: 10px; margin: 8px 0; color: #555; font-size: 13px; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.catalog-toolbar p { margin: 0; font-size: 12px; text-transform: uppercase; }

.authenticity-banner { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-bottom: 40px; padding: 22px; color: var(--white); background: #132018; border-left: 5px solid var(--success); }
.authenticity-banner strong { display: block; margin-bottom: 4px; text-transform: uppercase; }
.authenticity-banner p { margin: 0; color: #b7c4ba; font-size: 13px; }
.authenticity-icon { width: 45px; height: 45px; display: grid; place-items: center; color: #0b2516; background: var(--success); border-radius: 50%; font-weight: 900; }

.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 740px; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #111; }
.product-gallery .product-visual:first-child { grid-column: 1 / 3; aspect-ratio: 1.7 / 1; }
.product-gallery .product-visual:not(:first-child) { aspect-ratio: 1 / .82; }
.product-gallery .visual-big { font-size: clamp(82px, 13vw, 200px); }
.product-summary { position: sticky; top: 112px; align-self: start; padding: clamp(40px, 6vw, 90px); background: var(--white); }
.product-summary h1 { margin: 16px 0 6px; font-family: var(--display); font-size: clamp(44px, 5vw, 76px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.product-price { margin: 26px 0; font-size: 26px; font-weight: 800; }
.prototype-price { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 500; text-transform: uppercase; }
.field-label { display: flex; justify-content: space-between; margin: 22px 0 10px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.size-option { min-height: 42px; color: var(--ink); background: transparent; border: 1px solid var(--line); font-size: 11px; }
.size-option:hover, .size-option.active { background: var(--accent); border-color: var(--ink); }
.quantity-row { display: grid; grid-template-columns: 120px 1fr; gap: 8px; margin-top: 24px; }
.quantity-control { display: grid; grid-template-columns: 36px 1fr 36px; border: 1px solid var(--ink); }
.quantity-control button { background: transparent; border: 0; }
.quantity-control span { display: grid; place-items: center; font-weight: 800; }
.detail-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 24px; background: var(--line); border: 1px solid var(--line); }
.detail-meta div { padding: 14px; background: var(--white); }
.detail-meta small { display: block; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.detail-meta strong { font-size: 11px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; color: var(--ink); background: none; border: 0; font-size: 12px; font-weight: 800; text-align: left; text-transform: uppercase; }
.accordion-content { display: none; padding: 0 0 22px; color: #666; font-size: 13px; }
.accordion-item.open .accordion-content { display: block; }
.accordion-item.open .accordion-button span { transform: rotate(45deg); }

.wizard-shell { display: grid; grid-template-columns: 280px 1fr; min-height: 720px; background: var(--white); border: 1px solid var(--line); }
.wizard-sidebar { padding: 34px; color: var(--white); background: var(--ink); }
.wizard-sidebar h2 { margin: 12px 0 40px; font-family: var(--display); font-size: 34px; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.wizard-progress { display: grid; gap: 4px; }
.wizard-progress-item { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; padding: 11px 0; color: #6d6d68; border-bottom: 1px solid var(--line-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.wizard-progress-item.active { color: var(--accent); }
.wizard-progress-item.done { color: var(--white); }
.wizard-content { display: flex; flex-direction: column; padding: clamp(28px, 5vw, 72px); }
.wizard-step-head span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.wizard-step-head h2 { max-width: 760px; margin: 10px 0 14px; font-family: var(--display); font-size: clamp(38px, 5vw, 68px); line-height: .9; letter-spacing: -.065em; text-transform: uppercase; }
.wizard-step-head p { max-width: 650px; margin: 0 0 34px; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-card { min-height: 96px; display: flex; align-items: flex-end; justify-content: space-between; padding: 16px; color: var(--ink); background: var(--paper); border: 1px solid transparent; text-align: left; font-size: 12px; font-weight: 800; text-transform: uppercase; transition: .2s ease; }
.choice-card:hover, .choice-card.active { color: var(--ink); background: var(--accent); border-color: var(--ink); transform: translateY(-2px); }
.choice-card small { color: var(--muted); }
.wizard-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 42px; }
.form-error { margin: 16px 0 0; padding: 12px 14px; color: #8b0f0f; background: #ffe2df; border-left: 3px solid var(--danger); font-size: 12px; }
.color-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.color-field { padding: 18px; background: var(--paper); border: 1px solid var(--line); }
.color-field label { display: block; margin-bottom: 12px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.color-field input { width: 100%; height: 54px; padding: 0; background: none; border: 0; }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 2px var(--accent); }
.form-field small { color: var(--muted); }
.file-drop { padding: 28px; border: 1px dashed #aaa; text-align: center; }
.summary-list { margin: 0; border-top: 1px solid var(--line); }
.summary-list div { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.summary-list dt { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.summary-list dd { margin: 0; font-weight: 700; }

.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line-dark); }
.timeline-item { width: 50%; min-height: 260px; display: grid; grid-template-columns: 100px 1fr; gap: 25px; padding: 30px 60px 30px 0; }
.timeline-item:nth-child(even) { margin-left: 50%; padding: 30px 0 30px 60px; }
.timeline-number { color: var(--accent); font-family: var(--display); font-size: 54px; line-height: .8; }
.timeline-item h3 { margin: 0 0 12px; font-family: var(--display); font-size: 34px; line-height: .95; letter-spacing: -.05em; text-transform: uppercase; }
.timeline-item p { color: #999; }
.timeline-visual { height: 80px; margin-top: 24px; background: repeating-linear-gradient(135deg, rgba(216,255,62,.1) 0 10px, transparent 10px 20px); border: 1px solid var(--line-dark); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.story-grid h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 94px); line-height: .88; letter-spacing: -.08em; text-transform: uppercase; }
.story-copy { font-size: 18px; }
.story-copy p:first-child { font-size: 25px; line-height: 1.35; }
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.value-item { min-height: 180px; padding: 22px; border-right: 1px solid var(--line); }
.value-item strong { display: block; margin-top: 70px; text-transform: uppercase; }
.atelier-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 280px 280px; gap: 10px; }
.atelier-block { position: relative; overflow: hidden; padding: 20px; color: var(--white); background: var(--ink); }
.atelier-block:first-child { grid-row: 1 / 3; }
.atelier-block::before { content: ""; position: absolute; width: 220px; height: 220px; right: -60px; bottom: -60px; border: 30px solid var(--accent); border-radius: 50%; opacity: .5; }
.atelier-block span { position: relative; z-index: 2; font-size: 9px; font-weight: 800; letter-spacing: .12em; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 8vw, 120px); }
.contact-copy h2 { margin: 0 0 22px; font-family: var(--display); font-size: 56px; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.contact-list { margin-top: 45px; border-top: 1px solid var(--line); }
.contact-list div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-grid .full { grid-column: 1 / 3; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 26px 0; color: var(--ink); background: none; border: 0; text-align: left; }
.faq-question strong { font-size: 16px; }
.faq-answer { display: none; max-width: 780px; padding: 0 60px 26px; color: #62625e; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.cart-layout { display: grid; grid-template-columns: 1fr 390px; gap: 50px; }
.cart-item { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { min-height: 145px; }
.cart-thumb.product-visual { aspect-ratio: auto; }
.cart-thumb .visual-big { font-size: 45px; }
.cart-item h3 { margin: 0 0 5px; text-transform: uppercase; }
.cart-item p { margin: 3px 0; color: var(--muted); font-size: 12px; }
.cart-item-price { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; font-weight: 800; }
.cart-summary { position: sticky; top: 135px; align-self: start; padding: 28px; color: var(--white); background: var(--ink); }
.cart-summary h2 { margin: 0 0 28px; font-family: var(--display); font-size: 34px; letter-spacing: -.05em; text-transform: uppercase; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; color: #aaa; font-size: 13px; }
.summary-row.total { margin-top: 14px; padding-top: 20px; color: var(--white); border-top: 1px solid var(--line-dark); font-size: 18px; font-weight: 800; }
.promo-form { display: grid; grid-template-columns: 1fr auto; margin: 22px 0; }
.promo-form input { min-width: 0; padding: 12px; color: var(--white); background: transparent; border: 1px solid var(--line-dark); }
.promo-form button { color: var(--ink); background: var(--accent); border: 0; font-size: 10px; font-weight: 900; }
.empty-state { padding: 80px 30px; text-align: center; border: 1px dashed var(--line); }
.empty-state h2 { font-family: var(--display); font-size: 42px; letter-spacing: -.05em; text-transform: uppercase; }

.checkout-progress { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 45px; border: 1px solid var(--line); }
.checkout-progress div { padding: 14px; color: var(--muted); border-right: 1px solid var(--line); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.checkout-progress div.active { color: var(--ink); background: var(--accent); }
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; }
.checkout-card { padding: clamp(24px, 5vw, 55px); background: var(--white); border: 1px solid var(--line); }
.checkout-card h2 { margin: 0 0 30px; font-family: var(--display); font-size: 38px; letter-spacing: -.05em; text-transform: uppercase; }
.payment-option { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); }
.secure-note { margin-top: 20px; padding: 14px; color: #315c42; background: #e8f8ee; font-size: 12px; }
.confirmation-mark { width: 86px; height: 86px; display: grid; place-items: center; margin-bottom: 30px; color: var(--ink); background: var(--accent); border-radius: 50%; font-size: 34px; }

.auth-shell { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 680px; }
.auth-art { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(32px, 6vw, 80px); color: var(--white); background: var(--ink); overflow: hidden; }
.auth-art::before { content: "SC"; position: absolute; right: -5%; top: 0; color: var(--accent); font-family: var(--display); font-size: 35vw; line-height: .8; letter-spacing: -.15em; opacity: .14; transform: rotate(-10deg); }
.auth-art h1 { position: relative; margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 100px); line-height: .85; letter-spacing: -.08em; text-transform: uppercase; }
.auth-panel { display: flex; align-items: center; justify-content: center; padding: 40px; background: var(--white); }
.auth-form { width: min(520px, 100%); }
.auth-form h2 { margin: 0 0 8px; font-family: var(--display); font-size: 48px; letter-spacing: -.06em; text-transform: uppercase; }
.prototype-note { margin: 22px 0; padding: 12px 14px; color: #705f12; background: #fff7cf; border: 1px solid #e0ce6b; font-size: 12px; }

.dashboard-layout { display: grid; grid-template-columns: 230px 1fr; gap: 45px; }
.account-sidebar { position: sticky; top: 130px; align-self: start; }
.account-sidebar nav { display: grid; border-top: 1px solid var(--line); }
.account-sidebar a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.account-sidebar a:hover, .account-sidebar a.active { padding-left: 10px; color: var(--ink); background: var(--accent); }
.account-content h1 { margin: 0 0 40px; font-family: var(--display); font-size: clamp(48px, 7vw, 96px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; background: var(--white); border: 1px solid var(--line); }
.stat-card span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.stat-card strong { font-family: var(--display); font-size: 44px; line-height: 1; }
.panel { margin-top: 30px; padding: 26px; background: var(--white); border: 1px solid var(--line); }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.panel-head h2 { margin: 0; font-size: 17px; text-transform: uppercase; }
.order-card { padding: 20px 0; border-top: 1px solid var(--line); }
.order-head { display: flex; justify-content: space-between; gap: 20px; }
.status-pill { display: inline-block; padding: 6px 9px; color: #16522d; background: #dff8e7; border-radius: 99px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.status-track { display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 24px; }
.status-track span { position: relative; padding-top: 15px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.status-track span::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: #ddd; }
.status-track span.done::before { background: var(--accent-dark); }

.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 70px; }
.legal-nav { position: sticky; top: 130px; align-self: start; display: grid; gap: 8px; font-size: 11px; text-transform: uppercase; }
.legal-nav a:hover { text-decoration: underline; }
.legal-content { max-width: 850px; }
.legal-content h1 { margin: 0 0 40px; font-family: var(--display); font-size: clamp(48px, 7vw, 92px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.legal-content h2 { margin: 45px 0 14px; font-size: 22px; text-transform: uppercase; }
.legal-content h3 { margin: 28px 0 8px; font-size: 15px; text-transform: uppercase; }
.legal-content p, .legal-content li { color: #4e4e49; }
.placeholder-box { margin: 25px 0; padding: 18px; background: #fff5c6; border: 1px solid #d7bf49; }

.admin-warning { padding: 14px 24px; color: #6d2000; background: #ffd9c9; border-bottom: 1px solid #ff986c; font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; }
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 760px; background: #ecece8; }
.admin-sidebar { padding: 28px 20px; color: var(--white); background: var(--ink); }
.admin-sidebar .brand { margin-bottom: 40px; }
.admin-nav { display: grid; gap: 5px; }
.admin-nav button { padding: 13px 14px; color: #999; background: transparent; border: 0; text-align: left; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.admin-nav button:hover, .admin-nav button.active { color: var(--ink); background: var(--accent); }
.admin-main { padding: clamp(24px, 5vw, 60px); overflow: hidden; }
.admin-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 35px; }
.admin-head h1 { margin: 0; font-family: var(--display); font-size: 52px; letter-spacing: -.06em; text-transform: uppercase; }
.admin-table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-table th, .admin-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.admin-table th { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.admin-actions { display: flex; gap: 6px; }
.mini-button { padding: 6px 8px; color: var(--ink); background: transparent; border: 1px solid var(--line); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.mini-button:hover { background: var(--accent); border-color: var(--ink); }
.admin-form { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; padding: 18px; background: var(--white); border: 1px solid var(--line); }
.admin-form input, .admin-form select, .admin-form textarea { min-width: 0; padding: 10px; border: 1px solid var(--line); }
.admin-form textarea { min-height: 70px; resize: vertical; }

.search-overlay {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  justify-content: center;
  padding: 8vh 24px;
  color: var(--white);
  background: rgba(0,0,0,.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(12px);
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-panel { width: min(1000px, 100%); }
.search-head { display: flex; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); font-size: 10px; letter-spacing: .14em; }
.search-overlay .text-button { color: var(--white); }
.search-input-wrap { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--white); }
.search-input-wrap input { width: 100%; padding: 38px 0; color: var(--white); background: transparent; border: 0; outline: none; font-family: var(--display); font-size: clamp(38px, 6vw, 80px); letter-spacing: -.06em; text-transform: uppercase; }
.search-input-wrap input::placeholder { color: #555; }
.search-input-wrap span { color: var(--accent); font-size: 44px; }
.search-suggestions { display: grid; gap: 8px; padding-top: 25px; }
.search-result { display: grid; grid-template-columns: 100px 1fr auto; gap: 15px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.search-result small { color: #888; text-transform: uppercase; }

.toast-region { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: grid; gap: 10px; pointer-events: none; }
.toast { min-width: 280px; max-width: 380px; padding: 16px 18px; color: var(--ink); background: var(--accent); box-shadow: var(--shadow); font-size: 12px; font-weight: 700; animation: toastIn .3s ease both; }
.toast.error { color: var(--white); background: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

.cookie-banner {
  position: fixed;
  z-index: 600;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 8px 0; font-size: 20px; text-transform: uppercase; }
.cookie-banner p { max-width: 720px; margin: 0; color: #aaa; font-size: 12px; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.cookie-actions .button { min-height: 42px; }
.cookie-actions [hidden] { display: none; }
.cookie-options { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.cookie-options[hidden] { display: none; }
.cookie-options label { display: grid; grid-template-columns: auto 1fr; gap: 0 8px; font-size: 12px; }
.cookie-options small { grid-column: 2; color: #888; }

.site-footer { color: var(--white); background: var(--ink); border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(25px, 5vw, 80px); padding: 80px clamp(24px, 5vw, 70px); }
.footer-brand p { margin: 32px 0; color: #aaa; font-family: Georgia, serif; font-size: 28px; line-height: 1.25; }
.social-row { display: flex; gap: 8px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; font-size: 10px; font-weight: 800; }
.social-row a:hover { color: var(--ink); background: var(--accent); }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin: 0 0 13px; color: #777; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { width: max-content; color: #ddd; font-size: 12px; }
.footer-column a:hover { color: var(--accent); }
.footer-newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; padding: 60px clamp(24px, 5vw, 70px); border-top: 1px solid var(--line-dark); }
.footer-newsletter h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(36px, 5vw, 72px); line-height: .9; letter-spacing: -.07em; text-transform: uppercase; }
.footer-newsletter p { color: #888; }
.inline-form { display: grid; grid-template-columns: 1fr 60px; border-bottom: 1px solid var(--white); }
.inline-form input { min-width: 0; padding: 18px 0; color: var(--white); background: transparent; border: 0; outline: 0; }
.inline-form button { color: var(--accent); background: transparent; border: 0; font-size: 30px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; padding: 22px clamp(24px, 5vw, 70px); color: #666; border-top: 1px solid var(--line-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.third-party-note { padding: 18px clamp(24px, 5vw, 70px) 28px; color: #686863; border-top: 1px solid var(--line-dark); font-size: 10px; }
.noscript { padding: 20px; color: white; background: #b00020; text-align: center; }
.skeleton { position: relative; overflow: hidden; background: #ddd; }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); transform: translateX(-100%); animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: 180px 1fr 150px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 9px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-form { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 96px; }
  .announcement { height: 27px; justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement span:nth-child(n+2) { display: none; }
  .nav-wrap { height: 69px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .desktop-nav { display: none; }
  .nav-actions { grid-column: 2; }
  .nav-actions > a:nth-of-type(1) { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu {
    position: fixed;
    z-index: 350;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 90vw);
    display: flex;
    flex-direction: column;
    padding: 24px;
    color: var(--white);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu-head { display: flex; justify-content: space-between; padding-bottom: 20px; color: #777; border-bottom: 1px solid var(--line-dark); font-size: 10px; }
  .mobile-menu .text-button { color: var(--white); }
  .mobile-menu nav { display: grid; margin: auto 0; }
  .mobile-menu nav a { display: flex; justify-content: space-between; padding: 12px 0; font-family: var(--display); font-size: clamp(30px, 8vw, 48px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
  .mobile-menu nav a span { color: var(--accent); font-family: var(--sans); font-size: 10px; letter-spacing: 0; }
  .mobile-menu-foot { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line-dark); }
  .mobile-menu-foot button, .mobile-menu-foot a { padding: 0; color: #999; background: none; border: 0; font-size: 10px; text-transform: uppercase; }
  .menu-scrim { position: fixed; z-index: 340; inset: 0; display: block; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .mobile-menu.open + .menu-scrim { opacity: 1; pointer-events: auto; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; }
  .hero-visual { min-height: 440px; border-top: 1px solid var(--line-dark); border-left: 0; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1 / 3; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .product-detail { grid-template-columns: 1fr; }
  .product-summary { position: static; }
  .wizard-shell { grid-template-columns: 1fr; }
  .wizard-sidebar { padding: 22px; }
  .wizard-sidebar h2 { margin-bottom: 18px; }
  .wizard-progress { grid-template-columns: repeat(7, 1fr); }
  .wizard-progress-item { display: block; padding: 8px 0; text-align: center; }
  .wizard-progress-item span:last-child { display: none; }
  .story-grid, .contact-layout, .cart-layout, .checkout-layout, .auth-shell, .legal-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .atelier-grid { grid-template-columns: 1fr 1fr; }
  .atelier-block:first-child { grid-row: auto; grid-column: 1 / 3; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding: 30px 0 30px 55px; }
  .cart-summary { position: static; }
  .auth-art { min-height: 440px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; overflow-x: auto; }
  .account-sidebar nav { display: flex; width: max-content; }
  .account-sidebar a { padding: 12px 16px; border: 1px solid var(--line); }
  .legal-nav { display: none; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { padding: 16px; }
  .admin-sidebar .brand { margin-bottom: 16px; }
  .admin-nav { display: flex; overflow-x: auto; }
  .admin-nav button { white-space: nowrap; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1440px); }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head .arrow-link { margin-top: 24px; }
  .hero-copy { min-height: 580px; padding: 62px 18px; }
  .hero h1 { font-size: clamp(58px, 21vw, 100px); }
  .hero-meta { display: grid; gap: 8px; margin-top: 40px; }
  .hero-visual { min-height: 330px; }
  .hero-orbit { width: 370px; height: 370px; right: -130px; }
  .hero-orbit::after { inset: 105px; }
  .visual-upload-note { right: 15px; bottom: 15px; left: 15px; max-width: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.2); }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { aspect-ratio: 1 / 1.03; }
  .steps-grid, .benefit-grid, .review-grid { grid-template-columns: 1fr; }
  .review-card:last-child { grid-column: auto; }
  .step-card { min-height: 240px; }
  .page-hero { padding-top: 72px; }
  .page-hero h1 { font-size: clamp(52px, 17vw, 84px); }
  .filter-bar { align-items: flex-start; flex-direction: column; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery .product-visual:first-child { grid-column: auto; aspect-ratio: 1 / 1; }
  .product-gallery .product-visual:not(:first-child) { display: none; }
  .product-summary { padding: 30px 18px; }
  .size-grid { grid-template-columns: repeat(5, 1fr); }
  .choice-grid, .color-grid { grid-template-columns: 1fr 1fr; }
  .wizard-content { min-height: 620px; padding: 28px 18px; }
  .summary-list div { grid-template-columns: 1fr; gap: 4px; }
  .story-copy p:first-child { font-size: 20px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .atelier-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 220px); }
  .atelier-block:first-child { grid-column: auto; }
  .timeline-item, .timeline-item:nth-child(even) { grid-template-columns: 60px 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .cart-item { grid-template-columns: 90px 1fr; }
  .cart-item-price { grid-column: 2; flex-direction: row; align-items: center; }
  .checkout-progress { grid-template-columns: 1fr; }
  .checkout-progress div { display: none; }
  .checkout-progress div.active { display: block; }
  .auth-panel { padding: 40px 18px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .status-track { grid-template-columns: 1fr; }
  .status-track span { padding: 8px 0 8px 15px; }
  .status-track span::before { width: 3px; height: 100%; }
  .admin-main { padding: 28px 14px; }
  .admin-head { align-items: flex-start; flex-direction: column; }
  .admin-form { grid-template-columns: 1fr; }
  .search-overlay { padding: 5vh 16px; }
  .search-result { grid-template-columns: 1fr auto; }
  .search-result small { display: none; }
  .cookie-banner { right: 8px; bottom: 8px; left: 8px; grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .cookie-actions { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 60px 20px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-legal { grid-column: 1 / 3; }
  .footer-newsletter { padding: 50px 20px; }
  .footer-bottom, .third-party-note { padding-right: 20px; padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   SNEAK CUSTOM — direction artistique noir & or
   -------------------------------------------------------------------------- */

body { background: var(--paper); }
::selection { color: var(--ink); background: var(--accent); }

.announcement {
  color: var(--accent);
  background: var(--ink);
  border-bottom: 1px solid rgba(200, 164, 93, .25);
  font-family: var(--mono);
  font-weight: 500;
}
.announcement-dot { background: var(--accent); }
.site-header {
  color: var(--white);
  background: rgba(7, 6, 4, .92);
  border-bottom-color: rgba(200, 164, 93, .2);
}
.brand-mark {
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--mono);
  letter-spacing: -.09em;
  transform: none;
}
.brand-name { color: var(--white); font-family: var(--display); letter-spacing: -.04em; }
.desktop-nav a, .icon-button { color: var(--white); }
.desktop-nav a { font-family: var(--mono); font-weight: 500; }
.desktop-nav a::after { background: var(--accent); }
.icon-button:hover { color: var(--ink); background: var(--accent); }
.cart-count { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.eyebrow, .section-index, .hero-meta, .trust-item, .visual-code, .visual-note,
.desktop-nav a, .filter-chip, .quick-add, .footer-bottom { font-family: var(--mono); }
.eyebrow::before { height: 1px; background: var(--accent); }
.accent-text { color: var(--accent); }

.button {
  min-height: 56px;
  padding-inline: 26px;
  border-radius: 0;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .08em;
}
.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-accent:hover { color: var(--white); background: var(--accent-dark); border-color: var(--accent-dark); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-ghost-light { color: var(--white); border-color: rgba(200, 164, 93, .55); }
.button-ghost-light:hover { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display: block;
  overflow: hidden;
  background: var(--ink);
}
.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  min-height: 0;
  border: 0;
  background: var(--ink);
}
.hero-visual::before { content: none; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(1.08);
  transform: scale(1.01);
  animation: heroReveal 1.15s cubic-bezier(.2,.75,.2,1) both;
}
@keyframes heroReveal { from { opacity: .2; transform: scale(1.06); } }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.68) 35%, rgba(0,0,0,.12) 72%),
    linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 42%, rgba(0,0,0,.25) 100%);
}
.hero-copy {
  min-height: calc(100svh - var(--header-h));
  justify-content: flex-end;
  padding: clamp(96px, 13vh, 150px) clamp(24px, 4.5vw, 72px) 42px;
}
.hero h1 {
  max-width: 1160px;
  display: grid;
  margin: 20px 0 12px;
  font-size: clamp(76px, 13.8vw, 214px);
  line-height: .73;
  letter-spacing: -.095em;
}
.hero h1 span { display: block; }
.hero .hero-title-line { color: var(--white); }
.hero .hero-title-outline {
  color: transparent;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) rgba(255, 250, 240, .9);
}
.hero-copy > .hero-tagline {
  max-width: none;
  margin: 0 0 28px;
  color: var(--white);
  font-family: var(--mono);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: .1em;
}
.hero-tagline em { color: var(--accent); font-style: normal; }
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(200,164,93,.5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-secondary-link:hover { color: var(--accent); }
.hero-meta {
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 18px;
  color: rgba(255,250,240,.68);
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-side {
  position: absolute;
  right: 18px;
  top: 50%;
  margin: 0;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.trust-strip { color: var(--accent); background: var(--ink); border-top: 1px solid rgba(200,164,93,.2); }
.trust-item { position: relative; border-right-color: rgba(200,164,93,.2); font-weight: 500; }
.trust-item::before { content: "✦"; margin-right: 10px; }

.home-intro { background: var(--paper); }
.home-intro-grid {
  display: grid;
  grid-template-columns: .42fr 1.45fr .72fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}
.section-index { margin: 8px 0 0; font-size: 10px; letter-spacing: .12em; }
.home-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.7vw, 106px);
  line-height: .9;
  letter-spacing: -.075em;
}
.home-intro h2 span { color: var(--accent-dark); }
.home-intro-grid > div { padding-top: 8px; }
.home-intro-grid > div p { margin: 0 0 30px; color: #4e493f; font-size: 17px; line-height: 1.75; }

.home-collection { color: var(--white); background: var(--ink); }
.home-collection .section-head p { color: rgba(255,250,240,.58); }
.home-collection .filter-chip { color: var(--white); border-color: rgba(255,255,255,.2); }
.home-collection .filter-chip:hover,
.home-collection .filter-chip.active { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.home-collection .arrow-link { color: var(--white); }
.home-collection .product-info { color: var(--white); }
.home-collection .product-info p { color: #8f887c; }
.home-collection .quick-add { color: var(--white); border-color: rgba(255,255,255,.2); }
.home-collection .quick-add:hover { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.product-visual { aspect-ratio: 4 / 5; border: 1px solid rgba(200,164,93,.17); }
.product-visual::before {
  background: radial-gradient(circle at 68% 32%, rgba(200,164,93,.26), transparent 25%), linear-gradient(150deg, transparent 0 47%, rgba(200,164,93,.08) 47% 48%, transparent 48%);
}
.product-visual::after { border-color: rgba(200,164,93,.35); }
.tone-acid, .tone-ember, .tone-violet, .tone-silver, .tone-gold, .tone-rose, .tone-cyan, .tone-mono {
  color: var(--accent);
  background: linear-gradient(145deg, #080705, #211b11 62%, #0d0c09);
}
.product-card:nth-child(even) .product-visual { color: #e4d3ac; background: linear-gradient(155deg, #15130f, #302719 58%, #090806); }
.visual-big { opacity: .78; }
.visual-note { color: rgba(255,250,240,.62); }
.badge { color: var(--ink); background: var(--accent); }
.favorite-button.active { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.home-editorial {
  min-height: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: #0b0a08;
}
.home-editorial-media { min-height: 760px; overflow: hidden; }
.home-editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.home-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
  border-left: 1px solid rgba(200,164,93,.2);
}
.home-editorial-copy h2 {
  margin: 28px 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 112px);
  line-height: .84;
  letter-spacing: -.08em;
}
.home-editorial-copy h2 em { color: var(--accent); font-style: normal; }
.home-editorial-copy > p { max-width: 610px; margin: 0 0 34px; color: rgba(255,250,240,.65); font-size: 17px; line-height: 1.7; }
.home-editorial-copy .button { align-self: flex-start; }
.editorial-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 72px 0 0; border-top: 1px solid rgba(200,164,93,.25); }
.editorial-stats div { padding: 18px 16px 0 0; border-right: 1px solid rgba(200,164,93,.15); }
.editorial-stats dt { color: var(--accent); font-family: var(--display); font-size: 28px; }
.editorial-stats dd { margin: 6px 0 0; color: #888175; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }

.home-process .step-card { min-height: 360px; }
.step-card .number { color: var(--accent-dark); }
.step-card:hover { color: var(--white); background: var(--ink); }
.step-card:hover .number { color: var(--accent); }
.step-card:hover p { color: #aaa398; }

.section-dark { background: var(--ink); }
.benefit-grid { border-color: rgba(200,164,93,.2); background: rgba(200,164,93,.2); }
.benefit-card { min-height: 300px; background: #0c0b08; }
.benefit-card:hover { background: #17130c; }
.benefit-icon {
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(200,164,93,.45);
  border-radius: 50%;
  font-family: var(--mono);
}
.benefit-card h3 { font-family: var(--display); font-size: 19px; }

.home-final-cta {
  padding: clamp(88px, 11vw, 170px) 0;
  color: var(--ink);
  background: var(--accent);
  text-align: center;
}
.home-final-cta h2 {
  margin: 24px auto 38px;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 126px);
  line-height: .86;
  letter-spacing: -.08em;
}
.home-final-cta h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--ink); }
.home-final-cta .button { color: var(--white); background: var(--ink); }
.marquee { color: var(--accent); background: var(--ink); border-top: 1px solid rgba(200,164,93,.25); }

.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 88% 30%, rgba(200,164,93,.15), transparent 22%), var(--ink);
}
.page-hero::after {
  content: "SC";
  position: absolute;
  right: -2vw;
  bottom: -8vw;
  color: transparent;
  font-family: var(--display);
  font-size: 28vw;
  line-height: 1;
  letter-spacing: -.12em;
  -webkit-text-stroke: 1px rgba(200,164,93,.13);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { letter-spacing: -.08em; }
.authenticity-banner { background: #17130d; border-left-color: var(--accent); }
.authenticity-icon { color: var(--ink); background: var(--accent); }
.authenticity-banner p { color: #b7ae9f; }
.choice-card:hover, .choice-card.active,
.wizard-progress-item.active,
.account-sidebar a:hover, .account-sidebar a.active { background-color: var(--accent); }
.wizard-progress-item.active { color: var(--accent); background: transparent; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { box-shadow: 0 0 0 2px rgba(200,164,93,.42); }
.timeline-visual { background: linear-gradient(135deg, #15120d, #2a2113); border-color: rgba(200,164,93,.3); }
.atelier-photo { padding: 0; }
.atelier-photo::before, .atelier-photo::after { content: none; }
.atelier-photo img { width: 100%; height: 100%; object-fit: cover; }
.section-accent { background: var(--accent); }

.site-footer { background: #050403; border-top-color: rgba(200,164,93,.22); }
.brand-light .brand-mark { color: var(--accent); background: transparent; }
.footer-brand p { color: #c7bda8; font-family: var(--display); }
.social-row a { border-color: rgba(200,164,93,.32); }
.social-row a:hover { color: var(--ink); background: var(--accent); }
.footer-column a:hover, .inline-form button { color: var(--accent); }
.footer-newsletter, .footer-bottom, .third-party-note { border-color: rgba(200,164,93,.18); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { background: rgba(7,6,4,.97); }
  .home-intro-grid { grid-template-columns: 1fr; }
  .home-intro-grid > div { max-width: 620px; }
  .home-editorial { grid-template-columns: 1fr; }
  .home-editorial-media { min-height: 680px; }
  .home-editorial-copy { border-top: 1px solid rgba(200,164,93,.2); border-left: 0; }
}

@media (max-width: 620px) {
  .hero-copy { min-height: calc(100svh - var(--header-h)); padding: 92px 18px 26px; }
  .hero h1 { margin-top: 26px; font-size: clamp(68px, 24vw, 108px); line-height: .76; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.26)), linear-gradient(0deg, rgba(0,0,0,.9), transparent 58%); }
  .hero-image { object-position: 66% center; }
  .hero-copy .button-row { align-items: flex-start; flex-direction: column; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta span:last-child { display: none; }
  .hero-side { display: none; }
  .trust-item { padding-block: 17px; }
  .home-intro h2 { font-size: clamp(44px, 15vw, 72px); }
  .home-editorial-media { min-height: 500px; }
  .home-editorial-copy { padding: 62px 20px; }
  .home-editorial-copy h2 { font-size: clamp(48px, 15vw, 72px); }
  .editorial-stats { grid-template-columns: 1fr; margin-top: 50px; }
  .editorial-stats div { display: grid; grid-template-columns: 44px 1fr; align-items: center; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(200,164,93,.14); }
  .editorial-stats dd { margin: 0; }
  .home-final-cta h2 { font-size: clamp(44px, 14vw, 68px); }
}
