* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #EEEAE2;
  --fg: #101828;
  --accent: #E84A1D;
  --muted: #9A9A95;
  --ink: #1A1A1F;
  --surface: #F5F4EF;
  --blue: #3C5572;
  --brass: #B5945A;
  --electric: #1E8FFF;
  --green: #3FCB6E;
  --line: rgba(16, 24, 40, 0.12);
  --line-strong: rgba(16, 24, 40, 0.25);
  --line-dark: rgba(238, 234, 226, 0.15);
}

html, body { background: var(--bg); color: var(--fg); }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
svg { display: block; }

a { color: inherit; }

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

/* Type system */
.display {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--fg);
}
.display--xl { font-size: clamp(48px, 8.4vw, 148px); }
.display--lg { font-size: clamp(40px, 6.8vw, 120px); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.muted { color: var(--muted); }
.body { font-size: 15px; line-height: 1.6; }

/* Top bar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 32px;
  mix-blend-mode: difference;
  color: #EEEAE2;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.wordmark {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  line-height: 0.82;
  display: inline-flex; flex-direction: column;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}
.wordmark--lg { font-size: 28px; line-height: 0.85; }

.topnav {
  display: flex; gap: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topnav a {
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.25s ease;
}
.topnav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.topnav a:hover::after { transform: scaleX(1); }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #1A1A1A;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.05) brightness(0.92);
  animation: hero-in 1.6s ease-out;
}
@keyframes hero-in {
  from { transform: scale(1.08); filter: grayscale(0.55) contrast(1.05) brightness(0.7); }
  to { transform: scale(1); filter: grayscale(0.55) contrast(1.05) brightness(0.92); }
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(0,0,0,0.55), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero__anchor {
  position: absolute;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  background: #EEEAE2;
  mix-blend-mode: difference;
}
.hero__overlay {
  position: absolute;
  left: 32px; bottom: 96px; right: 32px;
  color: #EEEAE2;
  max-width: 1200px;
}
.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.85;
}
.hero__title {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #EEEAE2;
  max-width: 11ch;
}
.hero__sub {
  margin-top: 24px;
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(238, 234, 226, 0.85);
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 13px 22px;
  border: 1px solid rgba(238, 234, 226, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #EEEAE2;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hero__cta:hover { background: #EEEAE2; color: var(--ink); border-color: #EEEAE2; }

.hero__status {
  position: absolute;
  right: 32px; bottom: 32px;
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px;
  background: rgba(238, 234, 226, 0.08);
  border: 1px solid rgba(238, 234, 226, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EEEAE2;
}

.dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Meta strip */
.meta-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.meta-strip__row {
  display: flex; gap: 14px; align-items: center; justify-content: center;
  padding: 14px 24px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-wrap: wrap;
}
.meta-strip__time { color: var(--fg); font-variant-numeric: tabular-nums; }

/* Marquee */
.marquee {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 120px 0 140px;
  overflow: hidden;
}
.marquee__track {
  display: flex; align-items: center; gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 10.5vw, 180px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--fg);
  will-change: transform;
}
.marquee__t--a { color: var(--accent); }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee__break {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  object-fit: cover;
  border-radius: 50%;
  background: var(--surface);
  padding: 18px;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.22));
  animation: break-in 1.4s ease-out 0.3s both;
}
@keyframes break-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7) rotate(-12deg); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
}

/* Section head (universal) */
.section-head {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 56px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
}
.section-head__eyebrow { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.section-head .display { padding-bottom: 6px; }
.section-head--lineup { margin-bottom: 0; padding-bottom: 56px; }
.section-head--dark { color: var(--bg); border-bottom-color: var(--line-dark); }
.section-head--dark .eyebrow { color: rgba(238, 234, 226, 0.5); }
.section-head--dark .display { color: var(--bg); }
.section-head--dark .section-head__eyebrow { border-bottom-color: var(--line-dark); }

/* Manifesto */
.manifesto {
  padding: 140px 0 120px;
  background: var(--bg);
}
.manifesto__inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.manifesto .section-head { border-bottom: none; padding-bottom: 0; }
.manifesto .display { margin: 32px 0 80px; max-width: 19ch; }
.manifesto__cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin-left: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.manifesto__col-a {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.manifesto__col-b {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 46ch;
}

/* Lineup */
.lineup { background: var(--bg); padding: 0 0 80px; }
.sku {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 88px;
  align-items: center;
  border-top: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  outline: none;
}
.sku:nth-child(even) { grid-template-columns: 1fr 1.15fr; }
.sku:nth-child(even) .sku__body { order: -1; }
.sku:last-child { border-bottom: 1px solid var(--line); }

.sku__media {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
}
.sku__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.06));
  pointer-events: none;
}
.sku__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.02);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.5s ease;
}
.sku:hover .sku__media img,
.sku:focus-visible .sku__media img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}

.sku__glow {
  position: absolute;
  left: 50%; bottom: -56px;
  transform: translateX(-50%);
  width: 65%; height: 110px;
  background: var(--accent-glow, var(--accent));
  filter: blur(56px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.5s ease, filter 0.5s ease;
  z-index: -1;
}
.sku:hover .sku__glow,
.sku:focus-visible .sku__glow { opacity: 0.85; filter: blur(40px); }

.sku[data-accent="orange"]   { --accent-glow: #E84A1D; }
.sku[data-accent="ink"]      { --accent-glow: #1A1A1F; }
.sku[data-accent="blue"]     { --accent-glow: #3C5572; }
.sku[data-accent="brass"]    { --accent-glow: #B5945A; }
.sku[data-accent="electric"] { --accent-glow: #1E8FFF; }

.sku__body {
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.sku__num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.sku__name {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 9.5vw, 152px);
  line-height: 0.86;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-top: -4px;
}
.sku__size {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.sku__compare {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: lowercase;
  margin-left: 6px;
}
.sku__aud { font-size: 15.5px; line-height: 1.55; color: var(--ink); max-width: 50ch; }
.sku__price {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--fg);
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.sku__price-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-left: 4px;
}
.sku__meta {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.sku__link {
  align-self: flex-start;
  margin-top: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--fg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.sku__link:hover { gap: 14px; color: var(--accent); border-bottom-color: var(--accent); }

/* Scale */
.scale {
  background: var(--surface);
  padding: 120px 0 120px;
  border-top: 1px solid var(--line);
}
.scale__row {
  max-width: 1400px;
  margin: 56px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.scale__step {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  position: relative;
}
.scale__step:not(:last-child)::after {
  content: ''; position: absolute; right: -12px; bottom: 28px;
  width: 1px; height: 60%;
  background: var(--line);
}
.scale__frame {
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%; min-height: 360px;
}
.scale__step img {
  display: block;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.14));
  transition: transform 0.4s ease;
}
.scale__step:hover img { transform: translateY(-6px); }
.scale__step--micro .scale__frame { min-height: 90px; }
.scale__step--classic .scale__frame { min-height: 160px; }
.scale__step--designer .scale__frame { min-height: 200px; }
.scale__step--mega .scale__frame { min-height: 280px; }
.scale__step--architect .scale__frame { min-height: 360px; }
.scale__step--micro img { max-height: 90px; }
.scale__step--classic img { max-height: 160px; }
.scale__step--designer img { max-height: 200px; }
.scale__step--mega img { max-height: 280px; }
.scale__step--architect img { max-height: 360px; }
.scale__step figcaption {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.scale__num { font-size: 28px; color: var(--fg); font-variant-numeric: tabular-nums; }
.scale__unit { font-size: 14px; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 500; }
.scale__caption {
  max-width: 1400px; margin: 56px auto 0; padding: 0 32px;
  font-size: 13px; line-height: 1.6; color: var(--muted);
  max-width: 60ch; margin-left: auto; margin-right: auto;
  text-align: center;
}

/* Custom / B2B */
.custom { background: var(--bg); padding: 120px 0 140px; }
.custom .section-head { margin-bottom: 0; padding-bottom: 56px; }
.custom__body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.custom__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 64ch;
  margin-bottom: 14px;
}
.custom__note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 48px;
}
.pigments {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0 0 56px;
}
.pigments li {
  aspect-ratio: 1;
  background: var(--c);
  padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #EEEAE2;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
}
.pigments li::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}
.pigments li:hover { transform: translateY(-8px); }
.pigments li:nth-child(3),
.pigments li:nth-child(11) { color: var(--ink); }
.pigments li:nth-child(8) { color: var(--bg); }
.pigments__name { font-weight: 600; }
.pigments__code { font-size: 10px; opacity: 0.85; letter-spacing: 0.16em; }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--fg);
  color: var(--fg);
  background: transparent;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
  align-self: flex-start;
}
.cta-ghost:hover { background: var(--fg); color: var(--bg); gap: 16px; }

/* Studio / Production */
.studio {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0 120px;
}
.studio__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.studio__lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(238, 234, 226, 0.78);
  max-width: 70ch;
  margin: 56px 0 80px;
}
.qc {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.qc__item {
  padding: 36px 22px 36px 0;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 12px;
}
.qc__item:last-child { border-right: none; padding-right: 0; }
.qc__item:not(:first-child) { padding-left: 22px; }
.qc__num {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.qc__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
}
.qc__desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(238, 234, 226, 0.55);
}
.qc__item--accent .qc__num { color: var(--brass); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 32px 40px;
  border-top: 1px solid var(--line-dark);
}
.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand .wordmark--lg { color: var(--bg); }
.footer__tag {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(238, 234, 226, 0.7);
  margin-top: 16px;
  max-width: 32ch;
}
.footer__tag--mute { color: rgba(238, 234, 226, 0.45); font-size: 12.5px; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__h {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 234, 226, 0.45);
  margin-bottom: 16px;
}
.footer__col p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--bg);
}

.footer__bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  display: flex; align-items: center; gap: 16px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 234, 226, 0.45);
  flex-wrap: wrap;
}
.footer__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.footer__sep { color: rgba(238, 234, 226, 0.25); }

/* Mobile */
@media (max-width: 720px) {
  .topbar { padding: 16px 20px; }
  .topnav { gap: 16px; font-size: 10.5px; letter-spacing: 0.1em; }
  .wordmark { font-size: 16px; }

  .hero { min-height: 560px; }
  .hero__overlay { left: 20px; right: 20px; bottom: 80px; }
  .hero__title { font-size: clamp(56px, 18vw, 120px); }
  .hero__sub { font-size: 13px; }
  .hero__anchor { top: 32px; }
  .hero__status { right: 20px; bottom: 20px; font-size: 9.5px; padding: 6px 10px; }

  .meta-strip__row { font-size: 9.5px; gap: 10px; padding: 12px 16px; justify-content: flex-start; }

  .marquee { padding: 80px 0 90px; }
  .marquee__track { gap: 28px; }
  .marquee__break { width: 130px; height: 130px; padding: 10px; }

  .section-head { grid-template-columns: 1fr; gap: 16px; padding: 0 20px 36px; }
  .section-head__eyebrow { padding-bottom: 8px; }

  .manifesto { padding: 80px 0 70px; }
  .manifesto__inner { padding: 0 20px; }
  .manifesto .display { margin: 24px 0 48px; }
  .manifesto__cols { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  .manifesto__col-a { font-size: 22px; }
  .manifesto__col-b { font-size: 14px; }

  .sku {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 56px 20px 48px;
  }
  .sku:nth-child(even) .sku__body { order: 0; }
  .sku__name { font-size: clamp(56px, 18vw, 96px); }
  .sku__price { font-size: 22px; }

  .scale { padding: 80px 0 70px; }
  .scale__row { flex-wrap: nowrap; gap: 8px; padding: 0 12px; }
  .scale__frame { min-height: 0 !important; }
  .scale__step--micro img { max-height: 50px; }
  .scale__step--classic img { max-height: 90px; }
  .scale__step--designer img { max-height: 110px; }
  .scale__step--mega img { max-height: 160px; }
  .scale__step--architect img { max-height: 220px; }
  .scale__step:not(:last-child)::after { display: none; }
  .scale__num { font-size: 18px; }
  .scale__caption { font-size: 11.5px; padding: 0 20px; }

  .custom { padding: 80px 0 100px; }
  .custom__body { padding: 0 20px; }
  .custom__lead { font-size: 15px; }
  .pigments { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 40px; }
  .pigments li { padding: 12px; font-size: 9.5px; }
  .pigments__code { font-size: 8.5px; }

  .studio { padding: 80px 0; }
  .studio__inner { padding: 0 20px; }
  .studio__lead { font-size: 14px; margin: 40px 0 48px; }
  .qc { grid-template-columns: 1fr 1fr; }
  .qc__item { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 24px 0; }
  .qc__item:nth-child(2n) { border-left: 1px solid var(--line-dark); padding-left: 16px; }
  .qc__item:not(:first-child) { padding-left: 16px; }
  .qc__item:nth-child(2n+1) { padding-left: 0; }
  .qc__num { font-size: 40px; }

  .footer { padding: 64px 20px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { font-size: 9.5px; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__img, .marquee__break { animation: none; }
  .dot { animation: none; }
  .sku__media img, .scale__step img, .pigments li { transition: none; }
}
