/* ============================================================
   Printograf — design system (single bundle)
   ============================================================ */

:root {
  --ink: #0b0b0b;
  --ink-soft: #161616;
  --ink-elev: #1d1d1d;
  --paper: #ffffff;
  --bone: #f5f1ea;
  --bone-soft: #efeae1;
  --fog: #c8c5bf;
  --mute: #8a8a8a;
  --line: rgba(11, 11, 11, 0.08);
  --line-strong: rgba(11, 11, 11, 0.16);
  --line-inverse: rgba(255, 255, 255, 0.1);
  --line-inverse-strong: rgba(255, 255, 255, 0.18);
  --accent: #3b6eff;
  --accent-soft: rgba(59, 110, 255, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 30px 80px -40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px -24px rgba(0, 0, 0, 0.18);
  --shadow-elev: 0 24px 60px -28px rgba(0, 0, 0, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1440px;
  --header-h: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input[type="email"], input[type="text"], input[type="tel"], input[type="date"], textarea {
  background: transparent; border: 0; outline: 0;
}
ul, ol { list-style: none; padding: 0; margin: 0; }
table { border-collapse: collapse; }

/* Base */
html { color-scheme: light; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3.5rem); }

/* Surfaces */
.surface-ink { background: var(--ink); color: var(--bone); }
.surface-paper { background: var(--paper); color: var(--ink); }
.surface-bone { background: var(--bone); color: var(--ink); }
.surface-bone-soft { background: var(--bone-soft); color: var(--ink); }

/* Type scale */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
}
.eyebrow-light { color: rgba(245, 241, 234, 0.5); }
.display-xl { font-family: var(--font-display); font-weight: 500; line-height: 0.95; letter-spacing: -0.035em; font-size: clamp(3rem, 9vw, 8.5rem); }
.display-lg { font-family: var(--font-display); font-weight: 500; line-height: 0.98; letter-spacing: -0.03em; font-size: clamp(2.5rem, 6.5vw, 5.5rem); }
.display-md { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.025em; font-size: clamp(2rem, 4.5vw, 3.5rem); }
.display-sm { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; font-size: clamp(1.5rem, 3vw, 2rem); }
.lede { font-size: 17px; line-height: 1.6; color: var(--mute); max-width: 52ch; }
.muted { color: var(--mute); }

/* Grain overlay — kept subtle, no mix-blend-mode (would force fullscreen repaint on every scroll frame) */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60; opacity: 0.04;
  transform: translateZ(0);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .grain { display: none; }
}

/* Header */
.header {
  position: fixed; top: 0; inset-inline: 0; z-index: 50;
  padding: 18px 0;
  transition: padding 400ms var(--ease), background-color 400ms var(--ease), border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
  will-change: transform;
  color: var(--bone);
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line-inverse);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.header__logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); color: var(--bone); }
.header__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--bone);
}
.header__logo:hover .header__wordmark { letter-spacing: 0.06em; transition: letter-spacing 280ms var(--ease); }
.header__nav { display: none; gap: 32px; align-items: center; font-size: 13px; }
.header__nav a { color: rgba(245, 241, 234, 0.7); transition: color 240ms var(--ease); position: relative; padding: 4px 0; }
.header__nav a:hover, .header__nav a.is-active { color: var(--bone); }
.header__nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 320ms var(--ease); }
.header__nav a:hover::after, .header__nav a.is-active::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 18px; }
.header__cart {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--bone);
  position: relative;
}
.header__cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px; background: var(--bone); color: var(--ink);
  font-size: 11px;
}
.header__cart:not(.has-items) .header__cart-count { display: none; }
.header__menu-btn {
  display: inline-flex; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line-inverse); align-items: center; justify-content: center;
  color: var(--bone);
  transition: border-color 240ms var(--ease);
}
.header__menu-btn:hover { border-color: var(--bone); }
@media (min-width: 1024px) { .header__nav { display: flex; } .header__menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: var(--bone);
  padding: calc(var(--header-h) + 24px) 0 24px;
  transform: translateY(-100%); transition: transform 420ms var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__list a { font-family: var(--font-display); font-size: 32px; letter-spacing: -0.025em; padding: 10px 0; border-bottom: 1px solid var(--line); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  transition: transform 280ms var(--ease), background-color 280ms var(--ease), color 280ms var(--ease), border-color 280ms var(--ease);
  border: 1px solid transparent; white-space: nowrap;
}
.btn-lg { height: 50px; padding: 0 28px; font-size: 15px; }
.btn-sm { height: 36px; padding: 0 18px; font-size: 13px; }
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-outline-light { border-color: var(--line-inverse); color: var(--bone); background: transparent; }
.btn-outline-light:hover { border-color: var(--bone); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--accent); }
.btn .arrow { width: 16px; height: 16px; transition: transform 320ms var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }

/* Pills / chips */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: -0.005em;
  border: 1px solid var(--line); color: var(--mute);
  transition: border-color 240ms var(--ease), color 240ms var(--ease), background-color 240ms var(--ease);
}
.pill:hover { color: var(--ink); border-color: var(--ink); }
.pill.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.pill .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* Badges (Best Seller / New / Low MOQ) */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  height: 22px; padding: 0 8px; border-radius: 999px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
}
.badge-best { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.badge-new { background: var(--accent); color: white; border-color: var(--accent); }
.badge-low { background: var(--bone); color: var(--ink); border-color: var(--ink); }

/* Trust bar */
.trust { border-block: 1px solid var(--line); padding: 18px 0; }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust__chip { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mute); white-space: nowrap; }
.trust__chip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@media (max-width: 768px) {
  .trust__row { overflow: hidden; }
  .trust__row { animation: marquee 28s linear infinite; flex-wrap: nowrap; width: max-content; gap: 40px; }
}
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* Mockup surfaces (placeholder visuals) */
.mock {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e 60%, #000);
  transition: transform 700ms var(--ease);
}
.mock::before {
  content: ""; position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.6) 0 1px, transparent 1px 8px);
}
.mock::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  pointer-events: none;
}
.mock-box     { background: linear-gradient(135deg, #1a1a1a, #0e0e0e 60%, #000); aspect-ratio: 4/5; }
.mock-label   { background: linear-gradient(135deg, #f5f1ea, #ece5d6 60%, #dccfb6); aspect-ratio: 3/4; }
.mock-card    { background: linear-gradient(135deg, #fafafa, #efefef 60%, #dadada); aspect-ratio: 5/7; }
.mock-tube    { background: linear-gradient(180deg, #1f1f1f, #0d0d0d 60%, #000); aspect-ratio: 2/5; }
.mock-tissue  { background: linear-gradient(135deg, #fff, #f3eee5 60%, #e8e0cf); aspect-ratio: 5/4; }
.mock-merch   { background: linear-gradient(135deg, #0b0b0b, #1d1d1d 60%, #0b0b0b); aspect-ratio: 4/5; }
.mock-sticker { background: linear-gradient(135deg, #3b6eff, #2349c4 60%, #0e1a3a); aspect-ratio: 1/1; }
.mock--rounded-sm { border-radius: var(--radius-sm); }
.mock--rounded-lg { border-radius: var(--radius-lg); }
.mock--rounded-xl { border-radius: var(--radius-xl); }
.mock--free-aspect { aspect-ratio: auto; height: 100%; }
.mock--free-aspect.mock-box,
.mock--free-aspect.mock-label,
.mock--free-aspect.mock-card,
.mock--free-aspect.mock-tube,
.mock--free-aspect.mock-tissue,
.mock--free-aspect.mock-merch,
.mock--free-aspect.mock-sticker { aspect-ratio: auto; }
.mock__label {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Real uploaded photos — same dimensions/rounding as gradient mocks */
.mock-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.mock-img.mock--rounded-sm { border-radius: var(--radius-sm); }
.mock-img.mock--rounded-lg { border-radius: var(--radius-lg); }
.mock-img.mock--rounded-xl { border-radius: var(--radius-xl); }

/* Hero */
.hero { position: relative; padding: calc(var(--header-h) + 64px) 0 96px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero__heading { font-family: var(--font-display); font-weight: 500; line-height: 0.95; letter-spacing: -0.035em; font-size: clamp(2.6rem, 8vw, 7.2rem); }
.hero__sub { max-width: 52ch; color: var(--mute); font-size: 17px; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__visual { position: relative; height: 460px; }
.hero__visual .float { position: absolute; transition: transform 800ms var(--ease); will-change: transform; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-elev); }
.hero__visual .float-1 { right: 8%; top: 2%; width: 58%; aspect-ratio: 4/5; transform: rotate(-6deg); }
.hero__visual .float-2 { left: 0; top: 34%; width: 44%; aspect-ratio: 5/4; transform: rotate(4deg); }
.hero__visual .float-3 { right: 2%; bottom: 0; width: 40%; aspect-ratio: 5/7; transform: rotate(-2deg); }
.hero__visual .float .mock-img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hero__visual .float .mock { width: 100%; height: 100%; aspect-ratio: auto; }
.hero__visual .glow { position: absolute; inset: -40px; z-index: -1; border-radius: 50%; opacity: 0.5; filter: blur(60px); background: radial-gradient(closest-side, var(--accent-soft), transparent 70%); }
@media (min-width: 1024px) {
  .hero { padding: calc(var(--header-h) + 96px) 0 128px; }
  .hero__grid { grid-template-columns: 7fr 5fr; gap: 32px; }
  .hero__visual { height: 560px; }
}

/* Hero — dark variant matching screenshot */
.hero--dark { background: var(--ink); color: var(--bone); }
.hero--dark .hero__heading { color: var(--bone); }
.hero--dark .hero__sub { color: rgba(245, 241, 234, 0.66); }
.hero--dark .eyebrow { color: rgba(245, 241, 234, 0.55); }

/* Sections */
section { position: relative; }
.section { padding: 96px 0; }
.section-lg { padding: 128px 0; }
.section__head {
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.section__head-row {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section__head-row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--mute); transition: color 240ms var(--ease); }
.link-arrow:hover { color: var(--ink); }

/* PACKS strip (the new conversion magnet) */
.packs { padding: 96px 0; }
.packs__grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 700px) { .packs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .packs__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.pack-card {
  position: relative; border-radius: var(--radius-lg);
  background: var(--ink); color: var(--bone);
  overflow: hidden; aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}
.pack-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.pack-card__visual { position: absolute; inset: 0; transition: transform 700ms var(--ease); }
.pack-card:hover .pack-card__visual { transform: scale(1.04); }
.pack-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.pack-card__body { position: relative; padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.pack-card__name { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.pack-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(245, 241, 234, 0.65); }
.pack-card__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 8px; }
.pack-card__price b { font-family: var(--font-display); font-size: 18px; }
.pack-card__price s { color: rgba(245, 241, 234, 0.45); font-size: 12px; }
.pack-card__badges { position: absolute; top: 18px; left: 18px; display: flex; gap: 6px; z-index: 2; }

/* Categories grid */
.cats { display: grid; gap: 20px; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 700px) { .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cats { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
.cat {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--bone-soft); aspect-ratio: 4/3;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
  display: block;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cat__visual { position: absolute; inset: 0; transition: transform 700ms var(--ease); }
.cat:hover .cat__visual { transform: scale(1.04); }
.cat::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.cat__body { position: absolute; inset: 0; z-index: 2; padding: 24px 32px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; color: var(--bone); }
.cat__name { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.025em; color: var(--bone); text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.cat__tag { color: rgba(245, 241, 234, 0.78); font-size: 14px; max-width: 28ch; margin-top: 4px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.cat__arrow { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); background: rgba(11,11,11,0.4); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; color: var(--bone); transition: background-color 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease); }
.cat:hover .cat__arrow { background: var(--bone); color: var(--ink); border-color: var(--bone); }
@media (min-width: 768px) { .cat__arrow { display: inline-flex; } }
@media (min-width: 1024px) {
  .cat:nth-child(1) { grid-column: span 7; }
  .cat:nth-child(2) { grid-column: span 5; }
  .cat:nth-child(3) { grid-column: span 5; }
  .cat:nth-child(4) { grid-column: span 7; }
  .cat:nth-child(5) { grid-column: span 12; }
}

/* (Build brand strip — old rules superseded by .build--card variant below) */

/* Product cards (the central ecommerce primitive) */
.product-card {
  display: block; position: relative; isolation: isolate;
}
.product-card__media {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: var(--bone-soft); aspect-ratio: 5/6;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}
.product-card:hover .product-card__media { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product-card__mock { position: absolute; inset: 0; transition: transform 700ms var(--ease); }
.product-card:hover .product-card__mock { transform: scale(1.04); }
.product-card__cat { position: absolute; top: 16px; right: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.85); text-shadow: 0 1px 3px rgba(0,0,0,0.5); z-index: 2; }
.product-card__badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; z-index: 2; }
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.85));
  opacity: 0; transition: opacity 320ms var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  gap: 12px; color: var(--bone);
}
.product-card:hover .product-card__overlay { opacity: 1; }
.product-card__quick {
  display: flex; flex-direction: column; gap: 8px;
}
.product-card__quick-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(245,241,234,0.7); }
.product-card__quick-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; border-radius: 999px; background: var(--bone); color: var(--ink);
  font-size: 13px; font-weight: 500; transition: background-color 240ms var(--ease), color 240ms var(--ease);
}
.product-card__quick-cta:hover { background: var(--accent); color: white; }
.product-card__quick-cta.is-added { background: var(--accent); color: white; }
.product-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 18px; }
.product-card__title { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.015em; }
.product-card__price { font-size: 13px; color: var(--mute); white-space: nowrap; }
.product-card__short { color: var(--mute); font-size: 13px; margin-top: 4px; max-width: 42ch; line-height: 1.5; }

/* Best sellers row */
.best { padding: 96px 0; background: var(--paper); }
.best__row { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none; }
.best__row::-webkit-scrollbar { display: none; }
.best__row > * { flex: 0 0 78%; scroll-snap-align: start; }
@media (min-width: 700px) { .best__row > * { flex: 0 0 50%; } }
@media (min-width: 1100px) { .best__row > * { flex: 0 0 32%; } }

/* Inspiration */
.insp__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) { .insp__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .insp__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.insp__item { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.insp__item.span-tall { grid-row: span 2; aspect-ratio: 3/5; }
.insp__item.span-wide { grid-column: span 2; aspect-ratio: 16/9; }
.insp__item.span-square { aspect-ratio: 1/1; }
.insp__item .mock { width: 100%; height: 100%; aspect-ratio: auto; }
.insp__overlay {
  position: absolute; inset: 0; padding: 16px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  color: var(--bone); opacity: 0; transition: opacity 320ms var(--ease);
}
.insp__item:hover .insp__overlay { opacity: 1; }
.insp__brand { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; }
.insp__caption { font-size: 12px; opacity: 0.85; }

/* Masonry (inspiration page) */
.masonry { columns: 1; column-gap: 16px; }
@media (min-width: 600px) { .masonry { columns: 2; } }
@media (min-width: 1000px) { .masonry { columns: 3; } }
@media (min-width: 1400px) { .masonry { columns: 4; } }
.masonry > * { display: block; break-inside: avoid; margin-bottom: 16px; }

/* Journal */
.journal-row { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .journal-row { grid-template-columns: repeat(3, 1fr); } }
.article-card__media { aspect-ratio: 5/4; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 20px; }
.article-card__media .mock { width: 100%; height: 100%; aspect-ratio: auto; transition: transform 700ms var(--ease); }
.article-card:hover .article-card__media .mock { transform: scale(1.04); }
.article-card__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); letter-spacing: -0.025em; line-height: 1.05; max-width: 18ch; transition: color 240ms var(--ease); }
.article-card:hover .article-card__title { color: var(--accent); }
.article-card__excerpt { color: var(--mute); font-size: 14px; margin-top: 12px; max-width: 42ch; }
.article-card__meta { display: flex; gap: 8px; font-size: 11px; color: var(--mute); margin-top: 12px; }

/* Final CTA */
.final-cta { padding: 128px 0; background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.final-cta__glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: var(--accent-soft); filter: blur(80px); border-radius: 50%; }
.final-cta__inner { position: relative; max-width: 36ch; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 24px; align-items: center; }

/* Footer */
.footer { background: var(--ink); color: var(--bone); padding: 80px 0 28px; margin-top: 96px; }
.footer__grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 5fr 2fr 2fr 3fr; } }
.footer__tag { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em; line-height: 1.1; max-width: 16ch; color: var(--bone); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: rgba(245, 241, 234, 0.7); font-size: 14px; transition: color 240ms var(--ease); }
.footer__col a:hover { color: var(--bone); }
.footer__newsletter { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-inverse); padding-bottom: 8px; }
.footer__newsletter input { flex: 1; color: var(--bone); }
.footer__newsletter input::placeholder { color: rgba(245, 241, 234, 0.4); }
.footer__newsletter button { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bone); }
.footer__newsletter button:hover { color: var(--accent); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-inverse); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(245, 241, 234, 0.5); }

/* Cart drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(11, 11, 11, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 280ms var(--ease); z-index: 80; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 100%; max-width: 440px;
  background: var(--bone); z-index: 81;
  transform: translateX(100%); transition: transform 420ms var(--ease);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { padding: 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer__title { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.drawer__line { display: flex; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer__line .mock { width: 80px; aspect-ratio: 4/5; flex: none; border-radius: var(--radius-sm); }
.drawer__line-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.drawer__line-name { font-size: 14px; font-weight: 500; }
.drawer__line-config { font-size: 12px; color: var(--mute); }
.drawer__line-row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.qty-stepper { display: inline-flex; align-items: center; gap: 8px; padding: 4px 8px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; }
.qty-stepper button { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }
.qty-stepper button:hover { color: var(--accent); }
.qty-stepper input { width: 40px; text-align: center; }
.drawer__remove { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--mute); }
.drawer__remove:hover { color: var(--ink); }
.drawer__foot { padding: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.drawer__subtotal { display: flex; justify-content: space-between; align-items: center; }
.drawer__subtotal b { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Shop page */
.shop-grid {
  display: grid; gap: 48px 32px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 700px) { .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 56px; }

/* Product page */
.product { padding: calc(var(--header-h) + 56px) 0 96px; }
.product__grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: flex-start; }
@media (min-width: 1024px) { .product__grid { grid-template-columns: 7fr 5fr; gap: 80px; } }
.product__gallery { display: flex; flex-direction: column; gap: 16px; }
.product__gallery-main { aspect-ratio: 4/5; background: var(--bone-soft); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.product__gallery-main .mock { position: absolute; inset: 48px; transition: transform 600ms var(--ease); }
.product__gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product__gallery-thumb { aspect-ratio: 4/5; background: var(--bone-soft); border-radius: var(--radius-md); overflow: hidden; padding: 16px; cursor: pointer; border: 1px solid var(--line); transition: border-color 240ms var(--ease); }
.product__gallery-thumb.is-active { border-color: var(--ink); border-width: 2px; }
.product__gallery-thumb .mock { width: 100%; height: 100%; aspect-ratio: auto; }
@media (min-width: 1024px) { .product__gallery { position: sticky; top: calc(var(--header-h) + 24px); } }
.product__features { display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.product__feature { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.product__feature svg { width: 16px; height: 16px; color: var(--accent); }

/* Configurator */
.cfg { display: flex; flex-direction: column; gap: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.cfg__group { display: flex; flex-direction: column; gap: 12px; }
.cfg__group-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--mute); }
.cfg__materials { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cfg__material { text-align: left; padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid var(--line); transition: border-color 240ms var(--ease), background-color 240ms var(--ease); cursor: pointer; }
.cfg__material:hover { border-color: var(--ink); }
.cfg__material.is-active { border-color: var(--ink); background: var(--paper); border-width: 1.5px; }
.cfg__material-name { font-size: 14px; }
.cfg__material-weight { font-size: 12px; color: var(--mute); margin-top: 4px; }
.cfg__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cfg__pill { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; cursor: pointer; transition: all 240ms var(--ease); }
.cfg__pill.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.cfg__pill:hover:not(.is-active) { border-color: var(--ink); }
.cfg__qty-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cfg__qty-stepper { display: inline-flex; align-items: center; height: 36px; padding: 0 8px; border-radius: 999px; border: 1px solid var(--line); }
.cfg__qty-stepper button { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }
.cfg__qty-stepper input { width: 60px; text-align: center; font-variant-numeric: tabular-nums; font-size: 13px; }
.cfg__bulk { width: 100%; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; }
.cfg__bulk-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--mute); }
.cfg__bulk-row b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* Upload */
.upload {
  border: 1.5px dashed var(--line-strong); border-radius: var(--radius-md);
  padding: 24px; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: center;
  text-align: center; transition: border-color 240ms var(--ease), background-color 240ms var(--ease);
  cursor: pointer; min-height: 140px;
}
.upload:hover, .upload.is-drag { border-color: var(--ink); background: var(--paper); }
.upload__icon { width: 28px; height: 28px; color: var(--mute); }
.upload__title { font-size: 14px; font-weight: 500; }
.upload__hint { font-size: 12px; color: var(--mute); }
.upload__list { width: 100%; display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.upload__item { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--paper); border-radius: var(--radius-sm); font-size: 12px; }
.upload__item .x { color: var(--mute); }
.upload__item .x:hover { color: var(--ink); }

/* Price ticker */
.price-ticker { font-family: var(--font-display); font-size: 32px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* Sticky bottom bar (mobile) */
.sticky-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: flex; gap: 12px; align-items: center; padding: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elev);
  transform: translateY(140%); transition: transform 480ms var(--ease);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar .mock { width: 44px; aspect-ratio: 1/1; border-radius: var(--radius-sm); flex: none; }
.sticky-bar__price { flex: 1; display: flex; flex-direction: column; line-height: 1.1; }
.sticky-bar__price small { color: var(--mute); font-size: 11px; }
.sticky-bar__price b { font-family: var(--font-display); font-size: 16px; }
@media (min-width: 1024px) { .sticky-bar { display: none; } }

/* Pack detail */
.pack-detail { padding: calc(var(--header-h) + 56px) 0 96px; }
.pack-detail__hero { background: var(--ink); color: var(--bone); border-radius: var(--radius-xl); padding: 40px; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .pack-detail__hero { grid-template-columns: 1fr 1fr; padding: 64px; } }
.pack-detail__hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.025em; line-height: 1; }
.pack-detail__visual { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.pack-detail__visual .mock { width: 100%; height: 100%; aspect-ratio: auto; }
.pack-detail__pricing { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; }
.pack-detail__pricing .total { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.025em; }
.pack-detail__pricing .savings { color: var(--accent); font-size: 13px; }
.pack-detail__items { margin-top: 64px; display: flex; flex-direction: column; gap: 16px; }
.pack-item { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 20px; background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line); }
@media (min-width: 700px) { .pack-item { grid-template-columns: 100px 1fr auto; align-items: center; } }
.pack-item .mock { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-sm); }
.pack-item__meta b { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.015em; }
.pack-item__meta small { display: block; color: var(--mute); margin-top: 4px; }
.pack-item__price { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }

/* Cart page */
.cart-page { padding: calc(var(--header-h) + 56px) 0 96px; }
.cart-line { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .cart-line { grid-template-columns: 100px 1fr auto; align-items: center; } }
.cart-line .mock { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md); }
.cart-line__meta b { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.015em; }
.cart-line__meta small { display: block; color: var(--mute); margin-top: 4px; font-size: 12px; }
.cart-line__price { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.cart-summary { padding: 32px; background: var(--paper); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.cart-summary__row.total { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; padding-top: 16px; border-top: 1px solid var(--line); }

/* Quote form */
.quote-form { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .quote-form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--mute); }
.field input, .field textarea, .field select {
  height: 48px; padding: 0 14px; border-radius: var(--radius-md); border: 1px solid var(--line);
  background: var(--paper); font-size: 14px;
}
.field textarea { height: 140px; padding: 14px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); outline: 0; }
.field--full { grid-column: 1 / -1; }
.field__error { color: #c0382b; font-size: 12px; }

/* Studio process */
.process-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { padding-top: 24px; border-top: 1px solid var(--line-inverse); display: flex; flex-direction: column; gap: 16px; }
.process-step .num { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(245, 241, 234, 0.5); }
.process-step h3 { font-family: var(--font-display); font-size: 22px; color: var(--bone); }
.process-step p { color: rgba(245, 241, 234, 0.65); font-size: 14px; }

/* Service blocks */
.service-block { display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 56px; border-top: 1px solid var(--line); }
@media (min-width: 800px) { .service-block { grid-template-columns: 80px 6fr 4fr; gap: 32px; } }
.service-block__num { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--mute); }
.service-block__visual { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.service-block__visual .mock { width: 100%; height: 100%; aspect-ratio: auto; }

/* Samples */
.sample-pack { padding: 32px; border-radius: var(--radius-xl); border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; gap: 24px; height: 100%; }
.sample-pack__visual { aspect-ratio: 5/4; margin: -16px -16px 0; border-radius: var(--radius-lg); overflow: hidden; }
.sample-pack__visual .mock { width: 100%; height: 100%; aspect-ratio: auto; }
.sample-pack__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.sample-pack__head h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; }
.sample-pack__price { color: var(--accent); font-size: 14px; }

/* Errors */
.errpage { padding: 200px 0; text-align: center; }

/* Toast */
.toast {
  position: fixed; bottom: 80px; right: 24px; z-index: 90;
  background: var(--ink); color: var(--bone);
  padding: 14px 20px; border-radius: 999px; font-size: 13px;
  box-shadow: var(--shadow-elev);
  transform: translateY(20px); opacity: 0; transition: all 320ms var(--ease);
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

/* Utilities */
.flex { display: flex; }
.grid { display: grid; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.relative { position: relative; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
}

/* ============================================================
   v2 LAYOUT — match reference screenshot
   ============================================================ */

/* Hero — single big composite image right */
/* Hero with full-bleed image right + fade overlay */
.hero--bleed {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 56px) 0 56px;
  min-height: 460px;
  display: flex; align-items: center;
}
.hero--bleed .container { position: relative; z-index: 2; width: 100%; }
.hero--bleed .hero__content {
  max-width: 540px;
}
.hero--bleed .hero__heading {
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
}
.hero--bleed .hero__sub { color: rgba(245, 241, 234, 0.72); font-size: 15px; }
.hero--bleed .hero__cta { gap: 8px; flex-wrap: wrap; }
@media (max-width: 700px) { .hero--bleed .hero__cta .btn { font-size: 13px; height: 40px; padding: 0 16px; } }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-img {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.hero__bg-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 30%, rgba(11,11,11,0.85) 50%, rgba(11,11,11,0.35) 68%, rgba(11,11,11,0) 82%),
    linear-gradient(180deg, rgba(11,11,11,0.3) 0%, rgba(11,11,11,0) 30%, rgba(11,11,11,0) 70%, rgba(11,11,11,0.4) 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero--bleed { min-height: 640px; padding: calc(var(--header-h) + 96px) 0 120px; }
  .hero--bleed .hero__content { max-width: 580px; }
  .hero__bg-img { object-position: 75% center; }
  .hero__bg-fade {
    background:
      linear-gradient(90deg, var(--ink) 0%, var(--ink) 32%, rgba(11,11,11,0.85) 48%, rgba(11,11,11,0.3) 64%, rgba(11,11,11,0) 78%),
      linear-gradient(180deg, rgba(11,11,11,0.2) 0%, rgba(11,11,11,0) 30%, rgba(11,11,11,0) 70%, rgba(11,11,11,0.3) 100%);
  }
}
@media (min-width: 1440px) {
  .hero__bg-fade {
    background:
      linear-gradient(90deg, var(--ink) 0%, var(--ink) 28%, rgba(11,11,11,0.8) 44%, rgba(11,11,11,0.25) 60%, rgba(11,11,11,0) 75%),
      linear-gradient(180deg, rgba(11,11,11,0.15) 0%, rgba(11,11,11,0) 30%, rgba(11,11,11,0) 70%, rgba(11,11,11,0.25) 100%);
  }
}
@media (max-width: 700px) {
  .hero--bleed { min-height: auto; padding: calc(var(--header-h) + 56px) 0 72px; }
  .hero__bg-img { opacity: 0.45; object-position: center; }
  .hero__bg-fade {
    background: linear-gradient(180deg, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.85) 100%);
  }
}

/* btn-light — light pill on dark bg (used in hero) */
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: var(--paper); transform: translateY(-2px); }

/* CATEGORIES v2 — 5 columns equal, image bottom, title top */
.cats-section { padding: 64px 0 32px; }
.cats--row {
  display: grid; gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 480px) { .cats--row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 700px) { .cats--row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .cats--row { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; } }

/* override — neutralizez regulile vechi `.cat:nth-child(N) span 7/5/12` din asymmetric grid */
.cats--row > .cat2 { grid-column: span 1 !important; }

.cat2 {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink); color: var(--bone);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/6;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}
.cat2:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.cat2__head { position: relative; z-index: 2; padding: 20px 22px 0; pointer-events: none; }
.cat2__name { font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.015em; color: var(--bone); margin: 0; word-break: break-word; }
.cat2__tag { font-size: 12px; line-height: 1.45; color: rgba(245, 241, 234, 0.7); margin: 6px 0 0; max-width: 22ch; }
@media (min-width: 1024px) { .cat2__name { font-size: 18px; letter-spacing: -0.02em; } }
.cat2__arrow {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; width: 30px; height: 30px;
  align-items: center; justify-content: center;
  color: var(--bone); transition: transform 280ms var(--ease);
}
.cat2:hover .cat2__arrow { transform: translateX(4px); }
.cat2__visual {
  position: absolute; inset: 0; z-index: 0;
  transition: transform 700ms var(--ease);
}
.cat2:hover .cat2__visual { transform: scale(1.04); }
.cat2__visual .mock-img,
.cat2__visual .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.cat2::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,11,0.45) 0%, rgba(11,11,11,0) 35%, rgba(11,11,11,0) 70%, rgba(11,11,11,0.65) 100%);
}

/* BUILD — small compact card with fade right + larger title */
.build--card { background: var(--bone-soft); padding: 36px 0; }
.build--card .build__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .build--card .build__grid { grid-template-columns: 4fr 7fr; gap: 40px; }
}
.build--card .build__visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--paper);
}
.build--card .build__visual-img,
.build--card .build__visual .mock-img,
.build--card .build__visual .mock {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
}
.build--card .build__visual-fade {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 35%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245,241,234,0) 0%, rgba(245,241,234,0.45) 60%, var(--bone-soft) 100%);
}
.build--card .build__copy { padding-left: 0; }
.build--card .build__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.025em; line-height: 1.02; color: var(--ink); max-width: 22ch; margin: 0; }
.build--card .build__icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
@media (min-width: 700px) { .build--card .build__icons { grid-template-columns: repeat(6, 1fr); gap: 4px; } }
.build--card .build__icon { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 2px; border-radius: var(--radius-md); background: transparent; font-size: 10px; text-align: center; color: var(--ink); line-height: 1.2; }
.build--card .build__icon svg { width: 16px; height: 16px; opacity: 0.85; }
.build--card .build__cta { margin-top: 18px; }
@media (max-width: 700px) {
  .build--card { padding: 32px 0; }
  .build--card .build__visual { aspect-ratio: 16/10; }
  .build--card .build__visual-fade {
    width: 100%; height: 35%;
    top: auto; bottom: 0; right: 0;
    background: linear-gradient(180deg, rgba(245,241,234,0) 0%, rgba(245,241,234,0.45) 60%, var(--bone-soft) 100%);
  }
}

/* BEST SELLERS v2 — 5-col equal grid, dark cards */
.best--grid { padding: 20px 0 56px; background: var(--paper); }
.best__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.025em; }
.best__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}
@media (min-width: 700px) { .best__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .best__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.best-card { display: block; }
.best-card__media {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  aspect-ratio: 4/5;
  transition: transform 380ms var(--ease);
}
.best-card:hover .best-card__media { transform: translateY(-3px); }
.best-card__media .mock-img,
.best-card__media .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  transition: transform 700ms var(--ease);
}
.best-card:hover .best-card__media .mock-img { transform: scale(1.04); }
.best-card__name { font-family: var(--font-display); font-size: 14px; letter-spacing: -0.01em; margin: 14px 0 4px; color: var(--ink); }
.best-card__price { font-size: 12px; color: var(--mute); margin: 0; }

/* INSPIRATION row — 6-col equal squares */
.insp-section { padding: 8px 0 48px; }
.insp__row {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
@media (min-width: 600px) { .insp__row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .insp__row { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.insp__row-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.insp__row-visual { position: absolute; inset: 0; }
.insp__row-visual .mock-img,
.insp__row-visual .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.insp__row-overlay {
  position: absolute; inset: 0; padding: 12px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  color: var(--bone);
  opacity: 0; transition: opacity 280ms var(--ease);
}
.insp__row-item:hover .insp__row-overlay { opacity: 1; }

/* JOURNAL row — 4 horizontal compact cards */
.journal-section { padding: 8px 0 56px; }
.journal-row--compact {
  display: grid; gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 24px;
}
@media (min-width: 700px) { .journal-row--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .journal-row--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.article-card-h {
  display: grid; grid-template-columns: 90px 1fr; gap: 14px; align-items: center;
  padding: 14px; border-radius: var(--radius-md);
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.article-card-h:hover { border-color: var(--ink); transform: translateY(-2px); }
.article-card-h__media {
  position: relative; aspect-ratio: 1/1;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bone-soft);
}
.article-card-h__media .mock-img,
.article-card-h__media .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.article-card-h__body { min-width: 0; }
.article-card-h__title {
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.25; color: var(--ink);
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-h__date { font-size: 11px; color: var(--mute); margin: 6px 0 0; }

/* PAGE HEADER — single column, editorial style: eyebrow + big title + intro below */
.page-head {
  display: flex; flex-direction: column;
  margin-bottom: 64px;
  max-width: 980px;
}
.page-head > div + div { margin-top: 0; } /* normalize legacy split markup */
.page-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin: 12px 0 0;
}
.page-head__intro {
  color: var(--mute);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 24px 0 0;
}
.page-head__aside {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 24px;
}
.page-head__aside .flex { gap: 12px; flex-wrap: wrap; }
.page-section { padding: calc(var(--header-h) + 56px) 0 96px; }
.page-section--bone { background: var(--bone); }

/* /packs index — 3-col grid */
.packs-index {
  display: grid; gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 700px) { .packs-index { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .packs-index { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* /inspiration masonry items polished */
.masonry__item { display: block; }
.masonry__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.masonry__media .mock-img,
.masonry__media .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.masonry__brand { margin-top: 10px; font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.18em; }
.masonry__caption { font-size: 13px; color: var(--mute); margin-top: 2px; }

/* /journal index list */
.journal-list { display: flex; flex-direction: column; }
.journal-list__item {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  display: grid; grid-template-columns: 1fr; gap: 20px;
  color: var(--ink); text-decoration: none;
  transition: opacity 240ms var(--ease);
}
.journal-list__item:hover { opacity: 0.7; }
@media (min-width: 800px) { .journal-list__item { grid-template-columns: 200px 1fr; gap: 40px; align-items: center; } }
.journal-list__media {
  aspect-ratio: 5/4; overflow: hidden; border-radius: var(--radius-md);
  position: relative;
}
.journal-list__media .mock-img,
.journal-list__media .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.journal-list__meta { display: flex; gap: 8px; font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 12px; }
.journal-list__title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.025em; line-height: 1.1; max-width: 28ch; margin: 0; }
.journal-list__excerpt { color: var(--mute); font-size: 14px; max-width: 52ch; margin: 12px 0 0; }

/* /cart empty state */
.cart-empty {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 80px 32px; text-align: center;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.cart-empty p { color: var(--mute); font-size: 16px; margin: 0; }

/* Studio service blocks polished */
.service-block-row { display: flex; flex-direction: column; gap: 0; }
.service-block-row .service-block { padding-top: 48px; border-top: 1px solid var(--line); padding-bottom: 0; margin-top: 0; }
.service-block-row .service-block:first-child { border-top: 0; padding-top: 0; }
.service-block-row .service-block__visual { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-md); position: relative; }
.service-block-row .service-block__visual .mock-img,
.service-block-row .service-block__visual .mock {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

/* FOOTER v2 — match screenshot */
.footer { background: var(--bone); color: var(--ink); padding: 64px 0 28px; margin-top: 0; }
.footer__top { display: flex; flex-direction: column; gap: 8px; padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
@media (min-width: 700px) { .footer__top { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 32px; } }
.footer__brand { color: var(--ink); }
.footer__brand .header__wordmark { color: var(--ink); }
.footer__tagline { color: var(--mute); font-size: 14px; max-width: 32ch; margin: 0; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col .eyebrow { color: var(--ink); margin-bottom: 4px; }
.footer__col .eyebrow-light { color: var(--ink); }
.footer__col a { color: var(--mute); font-size: 13px; transition: color 240ms var(--ease); }
.footer__col a:hover { color: var(--ink); }
.footer__news-body { font-size: 13px; color: var(--mute); margin: 0 0 16px; max-width: 28ch; }
.footer__newsletter { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-strong); padding-bottom: 6px; margin-bottom: 20px; }
.footer__newsletter input { flex: 1; background: transparent; color: var(--ink); padding: 6px 0; font-size: 14px; }
.footer__newsletter input::placeholder { color: var(--mute); }
.footer__newsletter button { width: 32px; height: 32px; border-radius: 999px; background: var(--ink); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 240ms var(--ease); }
.footer__newsletter button:hover { transform: translateX(2px); }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a { color: var(--mute); transition: color 240ms var(--ease); display: inline-flex; }
.footer__social a:hover { color: var(--ink); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--mute); }
@media (min-width: 800px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 24px; } }
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { color: var(--mute); transition: color 240ms var(--ease); }
.footer__legal a:hover { color: var(--ink); }
.footer__made { font-size: 12px; color: var(--mute); }

/* FINAL CTA v2 — dark outer, cream inner island */
.final-cta-2 { padding: 64px 0 80px; background: var(--ink); }
.final-cta-2__grid {
  display: grid; gap: 32px;
  background: var(--bone-soft); border-radius: var(--radius-xl);
  padding: 40px clamp(20px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .final-cta-2__grid { grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; } }
.final-cta-2__title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); margin: 0; }
.final-cta-2__sub { color: var(--mute); margin: 12px 0 24px; }
.final-cta-2__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.final-cta-2__news-body { font-size: 13px; color: var(--mute); margin: 8px 0 16px; max-width: 36ch; }
.final-cta-2__form { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line-strong); padding-bottom: 6px; }
.final-cta-2__form input { flex: 1; padding: 8px 0; font-size: 14px; }
.final-cta-2__form input::placeholder { color: var(--mute); }
.final-cta-2__form button { width: 36px; height: 36px; border-radius: 999px; background: var(--ink); color: var(--bone); display: inline-flex; align-items: center; justify-content: center; transition: transform 280ms var(--ease); }
.final-cta-2__form button:hover { transform: translateX(2px); }

/* ============================================================
   HOMEPAGE DARK MODE — all sections dark except Build + Final CTA
   ============================================================ */

/* Trust bar — dark */
.trust { background: var(--ink); color: var(--bone); border-color: var(--line-inverse); border-block-color: var(--line-inverse); }
.trust__chip { color: rgba(245, 241, 234, 0.6); }

/* Categories section — dark */
.cats-section { background: var(--ink); color: var(--bone); padding: 48px 0 40px; }
@media (min-width: 1024px) { .cats-section { padding: 80px 0 48px; } }

/* Packs section — dark */
.packs { background: var(--ink); color: var(--bone); padding: 64px 0 80px; }

/* Best Sellers — dark */
.best--grid { background: var(--ink) !important; color: var(--bone); }
.best--grid .best__title { color: var(--bone); }
.best--grid .best-card__media { background: var(--ink-soft); }
.best--grid .best-card__name { color: var(--bone); }
.best--grid .best-card__price { color: rgba(245, 241, 234, 0.55); }

/* Inspiration row — dark */
.insp-section { background: var(--ink); color: var(--bone); }
.insp-section .best__title { color: var(--bone); }

/* Journal compact — dark */
.journal-section { background: var(--ink); color: var(--bone); }
.journal-section .best__title { color: var(--bone); }
.journal-section .article-card-h {
  background: var(--ink-soft);
  border-color: var(--line-inverse);
  color: var(--bone);
}
.journal-section .article-card-h:hover { border-color: var(--bone); }
.journal-section .article-card-h__title { color: var(--bone); }
.journal-section .article-card-h__date { color: rgba(245, 241, 234, 0.5); }

/* Section head shared — dark sections */
.cats-section .eyebrow,
.packs .eyebrow,
.best--grid .eyebrow,
.insp-section .eyebrow,
.journal-section .eyebrow { color: rgba(245, 241, 234, 0.55); }

/* Link-arrow on dark sections */
.cats-section .link-arrow,
.packs .link-arrow,
.best--grid .link-arrow,
.insp-section .link-arrow,
.journal-section .link-arrow { color: rgba(245, 241, 234, 0.65); }
.cats-section .link-arrow:hover,
.packs .link-arrow:hover,
.best--grid .link-arrow:hover,
.insp-section .link-arrow:hover,
.journal-section .link-arrow:hover { color: var(--bone); }

/* Footer — dark again */
.footer { background: var(--ink); color: var(--bone); }
.footer__top { border-bottom-color: var(--line-inverse); }
.footer__brand .header__wordmark { color: var(--bone); }
.footer__tagline { color: rgba(245, 241, 234, 0.6); }
.footer__col .eyebrow,
.footer__col .eyebrow-light { color: var(--bone); }
.footer__col a { color: rgba(245, 241, 234, 0.65); }
.footer__col a:hover { color: var(--bone); }
.footer__news-body { color: rgba(245, 241, 234, 0.6); }
.footer__newsletter { border-bottom-color: var(--line-inverse); }
.footer__newsletter input { color: var(--bone); }
.footer__newsletter input::placeholder { color: rgba(245, 241, 234, 0.4); }
.footer__newsletter button { background: var(--bone); color: var(--ink); }
.footer__newsletter button:hover { background: var(--paper); }
.footer__social a { color: rgba(245, 241, 234, 0.55); }
.footer__social a:hover { color: var(--bone); }
.footer__bottom { border-top-color: var(--line-inverse); color: rgba(245, 241, 234, 0.45); }
.footer__legal a { color: rgba(245, 241, 234, 0.5); }
.footer__legal a:hover { color: var(--bone); }
.footer__made { color: rgba(245, 241, 234, 0.45); }

/* ============================================================
   SECONDARY PAGES — DARK MODE WRAPPER (.page-dark)
   Apply on the top-level <section>/<article> of non-home pages.
   Overrides palette vars so descendants adapt automatically;
   adds explicit rules for components that don't use vars.
   ============================================================ */
body.is-page-dark { background: var(--ink); color: var(--bone); }

.page-dark {
  background: var(--ink);
  color: var(--bone);
  --paper: var(--ink-soft);
  --bone: #f5f1ea;
  --bone-soft: var(--ink-soft);
  --line: var(--line-inverse);
  --line-strong: var(--line-inverse-strong);
  --mute: rgba(245, 241, 234, 0.55);
}

.page-dark h1,
.page-dark h2,
.page-dark h3,
.page-dark h4 { color: var(--bone); }

.page-dark .page-head__title { color: var(--bone); }
.page-dark .page-head__intro { color: rgba(245, 241, 234, 0.7); }
.page-dark .eyebrow { color: rgba(245, 241, 234, 0.55); }
.page-dark .lede { color: rgba(245, 241, 234, 0.78); }
.page-dark .muted { color: rgba(245, 241, 234, 0.55); }

.page-dark .link-arrow { color: rgba(245, 241, 234, 0.65); }
.page-dark .link-arrow:hover { color: var(--bone); }

/* Pills & filters */
.page-dark .pill {
  border-color: var(--line-inverse-strong);
  color: rgba(245, 241, 234, 0.7);
  background: transparent;
}
.page-dark .pill:hover { color: var(--bone); border-color: rgba(255,255,255,0.35); }
.page-dark .pill.is-active,
.page-dark .pill[aria-current="page"] {
  background: var(--bone);
  color: #0b0b0b;
  border-color: var(--bone);
}

/* Buttons — invert primary so it stands out on dark */
.page-dark .btn-primary { background: var(--bone); color: #0b0b0b; }
.page-dark .btn-primary:hover { background: #ffffff; }
.page-dark .btn-ghost { color: var(--bone); }
.page-dark .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--bone);
}
.page-dark .btn-outline:hover { border-color: var(--bone); background: rgba(255,255,255,0.05); }

/* Form fields */
.page-dark .field label { color: rgba(245, 241, 234, 0.6); }
.page-dark .field input,
.page-dark .field textarea,
.page-dark .field select {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-inverse-strong);
}
.page-dark .field input::placeholder,
.page-dark .field textarea::placeholder { color: rgba(245, 241, 234, 0.35); }
.page-dark .field input:focus,
.page-dark .field textarea:focus,
.page-dark .field select:focus { border-color: var(--bone); }
.page-dark .field__error { color: #ff9b9b; }

/* Upload zone */
.page-dark .upload {
  background: var(--ink-soft);
  border-color: var(--line-inverse-strong);
  color: rgba(245, 241, 234, 0.6);
}
.page-dark .upload:hover,
.page-dark .upload.is-drag {
  background: rgba(255,255,255,0.04);
  border-color: var(--bone);
}
.page-dark .upload__title { color: var(--bone); }
.page-dark .upload__hint { color: rgba(245, 241, 234, 0.45); }

/* Product card on dark pages (shop & related on product page) */
.page-dark .product-card { color: var(--bone); }
.page-dark .product-card__media { background: var(--ink-soft); }
.page-dark .product-card__title { color: var(--bone); }
.page-dark .product-card__price,
.page-dark .product-card__short,
.page-dark .product-card__cat { color: rgba(245, 241, 234, 0.55); }

/* Sample pack card */
.page-dark .sample-pack {
  background: var(--ink-soft);
  border-color: var(--line-inverse-strong);
  color: var(--bone);
}
.page-dark .sample-pack h3,
.page-dark .sample-pack__price { color: var(--bone); }

/* Studio service block */
.page-dark .service-block { border-top-color: var(--line-inverse); color: var(--bone); }
.page-dark .service-block__num { color: rgba(245, 241, 234, 0.4); }

/* Cart */
.page-dark .cart-line { border-top-color: var(--line-inverse); }
.page-dark .cart-summary { background: var(--ink-soft); }
.page-dark .cart-empty p { color: rgba(245, 241, 234, 0.6); }

/* Journal list */
.page-dark .journal-list__item {
  border-color: var(--line-inverse);
  color: var(--bone);
}
.page-dark .journal-list__title { color: var(--bone); }
.page-dark .journal-list__excerpt { color: rgba(245, 241, 234, 0.65); }
.page-dark .journal-list__meta { color: rgba(245, 241, 234, 0.45); }

/* Inspiration masonry */
.page-dark .masonry__brand { color: rgba(245, 241, 234, 0.5); }
.page-dark .masonry__caption { color: rgba(245, 241, 234, 0.7); }

/* Configurator pills (product page) — keep visible on dark */
.page-dark .cfg__pill {
  border-color: var(--line-inverse-strong);
  color: rgba(245, 241, 234, 0.75);
}
.page-dark .cfg__pill.is-active {
  background: var(--bone);
  color: #0b0b0b;
  border-color: var(--bone);
}
.page-dark .cfg__material {
  border-color: var(--line-inverse-strong);
  color: var(--bone);
}
.page-dark .cfg__material.is-active { border-color: var(--bone); background: rgba(255,255,255,0.04); }
.page-dark .cfg__material-weight,
.page-dark .cfg__group-label { color: rgba(245, 241, 234, 0.5); }
.page-dark .cfg__qty-stepper input { color: var(--bone); }
.page-dark .cfg__qty-stepper button { color: var(--bone); }
.page-dark .cfg__bulk-row { border-color: var(--line-inverse); }

/* Sticky add-to-cart bar (mobile) on dark pages */
.page-dark .sticky-bar { background: var(--ink-soft); border-color: var(--line-inverse); color: var(--bone); }
.page-dark .sticky-bar small { color: rgba(245, 241, 234, 0.55); }

/* Process step (studio) — already light text, keep for safety */
.page-dark .process-step h3 { color: var(--bone); }
.page-dark .process-step p { color: rgba(245, 241, 234, 0.65); }

