/* ── Home fold: hero + promo + fulfillment + peek of products ── */
:root {
  --home-top-chrome: calc(30px + 64px);
  --home-promo-stack: 84px;
  --home-stock-stack: 180px;
  --home-product-peek: 148px;
}

/* ── Hero slider ── */
.hero-slider {
  --hero-arrow-size: 44px;
  --hero-arrow-inset: 16px;
  --hero-arrow-gap: 12px;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: clip;
  border-bottom: 0;
  isolation: isolate;
}

.hero-slider__viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Банери 1915×821; висота контейнера −30% → 1915 / (821 * 0.7) */
  aspect-ratio: 1915 / 574.7;
  height: auto;
  background: var(--bg-2);
  overflow: hidden;
  overflow-x: clip;
  contain: layout paint;
}

.hero-slider__track {
  position: absolute;
  inset: 0;
  overflow: hidden;
  overflow-x: clip;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-x: clip;
  transition: opacity .85s var(--ease), visibility .85s var(--ease);
  z-index: 0;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider__slide--has-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(243, 241, 236, .92) 0%,
    rgba(243, 241, 236, .72) 38%,
    rgba(243, 241, 236, .08) 68%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-slider__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  overflow-x: clip;
  z-index: 0;
}

.hero-slider__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.1s var(--ease);
  -webkit-user-drag: none;
  user-select: none;
}

.hero-slider__hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.hero-slider__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(100%, 560px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 28px 56px;
  color: var(--ink);
  pointer-events: none;
}

.hero-slider--has-nav .hero-slider__panel {
  padding-left: max(
    28px,
    calc(var(--hero-arrow-inset) + var(--hero-arrow-size) + var(--hero-arrow-gap))
  );
}

.hero-slider__panel > * {
  pointer-events: auto;
}

.hero-slider__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.hero-slider__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: .95;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-slider__title-main {
  display: inline;
  color: var(--ink);
}

.hero-slider__title-accent {
  display: inline;
  color: var(--accent-2);
}

.hero-slider__subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink-2);
  max-width: 36ch;
}

.hero-slider__usp {
  display: inline-block;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .72);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.35;
}

.hero-slider__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
  width: min(100%, 270px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-slider__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.hero-slider__feature-icon {
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .82);
  color: var(--accent-2);
}

.hero-slider__feature-glyph {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
  overflow: visible;
}

.hero-slider__feature-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.3;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.hero-slider__cta:hover {
  background: var(--accent-2);
  color: var(--paper);
}

.hero-slider__cta-arrow {
  font-family: inherit;
  line-height: 1;
}

.hero-slider__arrow svg {
  display: block;
  flex-shrink: 0;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: var(--hero-arrow-size);
  height: var(--hero-arrow-size);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(214, 210, 200, .8);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(10, 10, 10, .08);
  transform: translateY(-50%);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.hero-slider__arrow:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.hero-slider__arrow--prev {
  left: var(--hero-arrow-inset);
}

.hero-slider__arrow--next {
  right: var(--hero-arrow-inset);
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  max-width: calc(100% - 24px);
}

.hero-slider__dot {
  width: 28px;
  height: 3px;
  background: rgba(20, 18, 14, .22);
  transition: background .25s var(--ease), transform .25s var(--ease);
  flex: none;
}

.hero-slider__dot.is-active {
  background: var(--ink);
}

.hero-slider__dot:hover {
  background: var(--accent-2);
}

/* ── Hero slider: dark (accent wordmark) theme ── */
.hero-slider__slide--dark.hero-slider__slide--has-panel::after {
  background: linear-gradient(
    90deg,
    rgba(6, 8, 14, .90) 0%,
    rgba(6, 8, 14, .70) 38%,
    rgba(6, 8, 14, .10) 68%,
    transparent 100%
  );
}

.hero-slider__slide--dark .hero-slider__eyebrow {
  color: rgba(255, 255, 255, .68);
}

.hero-slider__slide--dark .hero-slider__title {
  text-transform: none;
  letter-spacing: -.02em;
}

.hero-slider__slide--dark .hero-slider__title-main {
  color: #fff;
}

.hero-slider__slide--dark .hero-slider__title-accent {
  color: #4f8cff;
}

.hero-slider__slide--dark .hero-slider__subtitle {
  color: rgba(255, 255, 255, .78);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-slider__slide--dark .hero-slider__usp {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.hero-slider__slide--dark .hero-slider__features {
  display: flex;
  flex-direction: column;
  width: auto;
  gap: 4px;
}

.hero-slider__slide--dark .hero-slider__feature {
  flex-direction: row;
  align-items: baseline;
  text-align: left;
}

.hero-slider__slide--dark .hero-slider__feature-icon {
  display: none;
}

.hero-slider__slide--dark .hero-slider__feature-text {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, .82);
}

.hero-slider__slide--dark .hero-slider__cta {
  background: #fff;
  color: #0a0a0a;
}

.hero-slider__slide--dark .hero-slider__cta:hover {
  background: #4f8cff;
  color: #fff;
}

/* ── Hero promo strip ── */
.hero-promo {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: var(--paper);
}

.hero-promo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.hero-promo__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid rgba(0, 0, 0, .1);
  min-width: 0;
}

.hero-promo__item:last-child {
  border-right: 0;
}

.hero-promo__icon {
  position: relative;
  flex: none;
  width: 44px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.hero-promo__hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: color-mix(in srgb, var(--accent-2) 55%, var(--line));
}

.hero-promo__glyph {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--accent-2);
}

.hero-promo__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.hero-promo__title {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-promo__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-2);
}

@media (min-width: 900px) {
  .hero-slider {
    --hero-arrow-inset: max(20px, env(safe-area-inset-left, 0px));
  }

  .hero-slider__panel {
    padding: 36px 40px 64px;
    gap: 16px;
  }

  .hero-slider--has-nav .hero-slider__panel {
    padding-left: max(
      40px,
      calc(var(--hero-arrow-inset) + var(--hero-arrow-size) + var(--hero-arrow-gap))
    );
  }

  .hero-slider__dots {
    bottom: 22px;
  }

  .hero-slider__arrow--prev {
    left: var(--hero-arrow-inset);
  }

  .hero-slider__arrow--next {
    right: max(20px, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 641px) and (max-width: 899px) {
  .hero-slider__panel {
    width: min(100%, 480px);
    padding: 24px 24px 52px;
  }

  .hero-slider--has-nav .hero-slider__panel {
    padding-left: max(
      24px,
      calc(var(--hero-arrow-inset) + var(--hero-arrow-size) + var(--hero-arrow-gap))
    );
  }
}

@media (max-width: 640px) {
  :root {
    --home-top-chrome: calc(30px + 56px);
    --home-promo-stack: 210px;
    --home-stock-stack: 320px;
    --home-product-peek: 96px;
  }

  .hero-slider__viewport {
    /* Мобіль: вищий блок (~2:1), як на референс-скріні; desktop лишає −30% */
    aspect-ratio: 2 / 1;
    height: auto;
    min-height: 168px;
  }

  .hero-slider__media img {
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    object-fit: cover;
    /* Текст запечений зліва — тримаємо лівий край */
    object-position: left center;
    transform: none;
  }

  .hero-slider__panel {
    top: auto;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 16px 44px;
  }

  .hero-slider__title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-slider__subtitle {
    font-size: 12.5px;
    max-width: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  }

  .hero-slider__usp {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  }

  .hero-slider__features {
    gap: 10px 10px;
    width: min(100%, 240px);
  }

  .hero-slider__feature-icon {
    width: 32px;
    height: 32px;
  }

  .hero-slider__feature-glyph {
    width: 18px;
    height: 18px;
  }

  .hero-slider__feature-text {
    font-size: 8px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  }

  .hero-slider__cta {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 11px;
  }

  .hero-slider__dots {
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    gap: 6px;
    max-width: calc(100% - 16px);
  }

  .hero-slider__dot {
    width: 22px;
  }

  .hero-slider {
    --hero-arrow-size: 34px;
    --hero-arrow-inset: max(6px, env(safe-area-inset-left, 0px));
    --hero-arrow-gap: 10px;
  }

  .hero-slider--has-nav .hero-slider__panel {
    padding-left: max(
      16px,
      calc(var(--hero-arrow-inset) + var(--hero-arrow-size) + var(--hero-arrow-gap))
    );
  }

  .hero-slider__arrow--next {
    right: max(6px, env(safe-area-inset-right, 0px));
  }

  .hero-promo__grid {
    grid-template-columns: 1fr;
  }

  .hero-promo__item {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }

  .hero-promo__item:last-child {
    border-bottom: 0;
  }

  .hero-promo__icon {
    width: 40px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide,
  .hero-slider__media img,
  .hero-slider__dot,
  .hero-slider__arrow,
  .hero-slider__cta {
    transition: none;
  }
}

/* ── Legacy hero (unused) ── */
.hero {
  position: relative;
  padding: 28px 28px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 14px 0 36px;
  color: var(--ink-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.hero-meta b { color: var(--ink); font-weight: 500; }

.hero-stack { padding: 32px 0 16px; position: relative; }

.hero-line {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  overflow: hidden;
  line-height: .84;
}

.hero-line h1 {
  font-size: clamp(40px, 8.5vw, 120px);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  text-transform: uppercase;
  line-height: .9;
}

.hero-line h1 .accent { color: var(--accent); }
.hero-line h1 em { font-style: italic; font-weight: 500; }

.hero-line .marker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0 0 12px 12px;
  flex: none;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.hero-line h1 .row { display: inline-block; overflow: hidden; }
.hero-line h1 .row > span {
  display: inline-block;
  animation: rise 1s var(--ease) forwards;
}

.hero-line:nth-child(1) h1 .row > span { animation-delay: .08s; }
.hero-line:nth-child(2) h1 .row > span { animation-delay: .16s; }
.hero-line:nth-child(3) h1 .row > span { animation-delay: .24s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: end;
  padding: 36px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}

.hero-blurb { font-size: 18px; line-height: 1.45; max-width: 42ch; font-weight: 500; }
.hero-blurb b { font-weight: 700; }

.hero-actions { display: flex; gap: 10px; justify-self: end; align-items: center; }

/* ── Hero strip ── */
.hero-strip {
  display: grid;
  grid-template-columns: 1.2fr .6fr 1fr;
  gap: 14px;
  padding: 0 0 28px;
}

.hs-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 1.3;
  border: 1px solid var(--line);
}

.hs-card.tall { aspect-ratio: .72; }
.hs-card.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.hs-img { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.hs-img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hs-card:hover .hs-img { transform: scale(1.04); }

a.hs-card { display: block; color: inherit; text-decoration: none; }

.hs-label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
  background: rgba(251, 250, 246, .85);
  padding: 5px 9px;
  border-radius: 2px;
}

.hs-card.dark .hs-label { color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); }

.hs-foot {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  mix-blend-mode: difference;
}

.hs-foot .ttl {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.02em;
}

.hs-foot .meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; text-align: right; }
.hs-card.dark .hs-foot { mix-blend-mode: normal; color: var(--bg); }

/* ── Brands section ── */
.brands {
  background: var(--ink);
  color: var(--bg);
  padding: 48px 28px 56px;
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.brands-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.brands-head h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
}

.brands-head h2 .accent { color: var(--accent); }
.brands-head .right { color: rgba(255, 255, 255, .55); font-size: 13px; line-height: 1.5; max-width: 34ch; text-align: right; }

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 32px;
}

.brand-list .b {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 3vw, 40px);
  letter-spacing: -.025em;
  line-height: 1;
  padding: 4px 0;
  color: var(--bg);
  transition: color .25s var(--ease);
  cursor: pointer;
  display: inline-block;
}

.brand-list .b:hover { color: var(--accent); }
.brand-list .sep { color: rgba(255, 255, 255, .25); font-size: 10px; align-self: center; }
.brand-list .count { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-2); align-self: center; margin-left: 4px; letter-spacing: .06em; }

.brands-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.brands-foot a { color: var(--accent); }
.brands-foot a:hover { text-decoration: underline; }

/* ── Latest / catalog grids: cols via ideal_cols у шаблоні (card_skill ERR-35) ── */

.home-catalog__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.home-catalog__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.home-catalog__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Home catalog grid ── */
section.row {
  padding: 80px 28px;
  border-bottom: 1px solid var(--line);
  max-width: 100%;
  overflow-x: clip;
}

section.row.home-latest {
  padding: 14px 28px 52px;
  border-bottom: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

section.row.home-catalog {
  padding: 28px 28px 84px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.home-latest__grid,
.home-catalog__grid {
  row-gap: 28px;
  padding-bottom: 8px;
}

.home-latest__grid .product:only-child,
.home-catalog__grid .product:only-child {
  max-width: none;
}

.row-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
  min-width: 0;
  max-width: 100%;
}

.row-head h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 84px);
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .92;
  min-width: 0;
  overflow-wrap: anywhere;
}

.row-head h2 .accent { color: var(--accent); }
.row-head .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); padding-bottom: 10px; }
.row-head .all { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.row-head .all:hover { color: var(--accent); border-color: var(--accent); }

/* ── Category tiles ── */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: auto auto; gap: 14px; }

.cat {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  aspect-ratio: .86;
}

.cat.wide { grid-column: span 2; }
.cat.big { grid-column: span 3; aspect-ratio: 1.4; }

.cat-img { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.08) 0%, rgba(12, 10, 8, 0) 38%, rgba(12, 10, 8, 0.42) 100%);
  pointer-events: none;
}
.cat:hover .cat-img { transform: scale(1.05); }

.cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.cat--dark .cat-tag {
  background: rgba(255, 255, 255, .1);
  color: var(--bg);
  border-color: rgba(255, 255, 255, .2);
}

.cat--dark .cat-meta { color: var(--bg); mix-blend-mode: normal; }
.cat--dark .cat-arrow { background: var(--accent); color: var(--ink); }

.cats-empty {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-2);
  padding: 24px 0;
}

.cat-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--ink);
  mix-blend-mode: difference;
}

.cat-1 .cat-meta { color: var(--bg); }
.cat-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 24px; line-height: 1; letter-spacing: -.025em; text-transform: uppercase; }
.cat.big .cat-name { font-size: 64px; letter-spacing: -.04em; mix-blend-mode: initial; color: var(--bg); }
.cat-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.cat-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: var(--paper);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.cat-1 .cat-arrow { background: var(--accent); color: var(--ink); }
.cat:hover .cat-arrow { opacity: 1; transform: none; }

/* ── Drop banner ── */
.drop-banner {
  --drop-banner-pad-x: clamp(16px, 4vw, 28px);
  padding: clamp(72px, 12vw, 120px) var(--drop-banner-pad-x);
  padding-left: max(var(--drop-banner-pad-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--drop-banner-pad-x), env(safe-area-inset-right, 0px));
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(320px, 48vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.drop-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(10 10 10 / 0.55) 0%, rgb(10 10 10 / 0.72) 48%, rgb(10 10 10 / 0.82) 100%),
    radial-gradient(40% 60% at 50% 100%, rgba(255, 120, 40, .25), transparent 70%);
  pointer-events: none;
}

.drop-banner:not(.drop-banner--has-media)::before {
  inset: auto -10% -40% -10%;
  height: 120%;
  background: radial-gradient(40% 60% at 50% 100%, rgba(255, 120, 40, .25), transparent 70%);
}

.drop-banner__content {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin-inline: auto;
}

.drop-banner .eyebrow {
  color: var(--accent);
  position: relative;
  font-size: clamp(11px, 2.4vw, 13px);
  letter-spacing: .12em;
  line-height: 1.35;
  max-width: 36ch;
  margin-inline: auto;
}

.drop-banner h2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 5.8vw, 110px);
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .95;
  margin: 20px auto 36px;
  max-width: 100%;
  position: relative;
  white-space: nowrap;
}

.drop-banner__title,
.drop-banner h2 .accent {
  display: inline;
  flex: 0 0 auto;
  max-width: none;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
  white-space: nowrap;
}

.drop-banner h2 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: .9em;
  letter-spacing: -.03em;
  line-height: 1;
}

.countdown { display: flex; gap: 24px; justify-content: center; position: relative; margin-bottom: 40px; }
.countdown .unit { display: flex; flex-direction: column; gap: 6px; min-width: 88px; }
.countdown .v { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 72px; line-height: 1; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.countdown .l { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }

.drop-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.drop-banner .btn-primary { background: var(--accent); color: var(--ink); }
.drop-banner .btn-primary:hover { background: var(--paper); }
.drop-banner .btn-ghost { border-color: var(--bg); color: var(--bg); }
.drop-banner .btn-ghost:hover { background: var(--bg); color: var(--ink); }

@media (max-width: 900px) {
  .drop-banner {
    min-height: clamp(280px, 62vw, 420px);
  }

  .drop-banner h2 {
    font-size: clamp(20px, 6.2vw, 56px);
    margin: 16px auto 28px;
    gap: .14em;
  }

  .drop-banner .actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 22rem);
    margin-inline: auto;
  }

  .drop-banner .actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .drop-banner {
    padding-top: 56px;
    padding-bottom: 56px;
    min-height: 0;
  }

  .drop-banner h2 {
    font-size: clamp(18px, 7.2vw, 28px);
    letter-spacing: -.03em;
  }

  .drop-banner .eyebrow {
    font-size: 11px;
    max-width: 28ch;
  }
}

/* ── Editorial ── */
.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; border-bottom: 1px solid var(--line); }

.ed-media { position: relative; background: #1a1916; overflow: hidden; }

.ed-media .frame { position: absolute; inset: 36px; border: 1px solid rgba(255, 255, 255, .18); }
.ed-media .stamp { position: absolute; top: 36px; left: 36px; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); background: rgba(0, 0, 0, .5); padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .2); }

.ed-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--paper);
}

.ed-text h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.ed-text h3 .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.ed-text p { font-size: 15px; line-height: 1.65; color: var(--ink-2); max-width: 42ch; }

/* ── Stats ribbon ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }

.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat:last-child { border-right: 0; }
.stat .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.stat .v { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 48px; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat .v .accent { color: var(--accent); }
.stat .desc { font-size: 12.5px; color: var(--ink-2); line-height: 1.5; max-width: 26ch; margin-top: 4px; }

/* ── Newsletter section ── */
.nl {
  background: var(--accent);
  color: var(--ink);
  padding: 96px 28px;
  border-bottom: 1px solid var(--ink);
}

.nl-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}

.nl h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .88;
}

.nl h2 em { font-style: italic; font-weight: 500; }

.nl-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; justify-self: end; width: 100%; }
.nl-form p { font-size: 14px; line-height: 1.6; color: rgba(0, 0, 0, .65); }

.nl-row {
  display: flex;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
  align-items: center;
  gap: 8px;
}

.nl-row input { flex: 1; background: none; border: 0; outline: 0; font: inherit; font-size: 16px; color: var(--ink); padding: 6px 0; }
.nl-row input::placeholder { color: rgba(0, 0, 0, .45); }

.nl-row button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .3s var(--ease);
}

.nl-row button:hover { transform: translateX(4px); }
.nl-note { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(0, 0, 0, .55); }

/* ── Big wordmark ── */
.big-mark { padding: 24px 28px 16px; overflow: hidden; border-bottom: 1px solid var(--line); }

.big-mark .word {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 12vw, 160px);
  line-height: .86;
  letter-spacing: -.06em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-transform: uppercase;
}

.big-mark .word .em { color: var(--accent); font-style: italic; font-weight: 500; }

.big-mark .word .tiny {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: .1em;
  line-height: 1.4;
  padding-bottom: 12px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: none;
}

@media (max-width: 1100px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .cat.big { grid-column: span 3; aspect-ratio: 1.6; }
  .cat.wide { grid-column: span 2; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hs-card.tall { aspect-ratio: 1.2; }
  .editorial, .nl-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  section.row {
    padding: 48px 16px;
  }

  .home-latest.row {
    padding: 10px 16px 40px;
  }

  .home-catalog.row {
    padding: 20px 16px 64px;
  }

  .home-latest__grid,
  .home-catalog__grid {
    --grid-cols: 2;
    --grid-gap: 10px;
  }

  .home-latest__grid .product:only-child,
  .home-latest__grid .product:last-child:nth-child(odd):not(:only-child) {
    flex-basis: calc((100% - var(--grid-gap)) / var(--grid-cols));
    width: calc((100% - var(--grid-gap)) / var(--grid-cols));
    max-width: calc((100% - var(--grid-gap)) / var(--grid-cols));
  }

  .home-catalog__more {
    margin-top: 28px;
    padding-top: 24px;
  }

  .row-head {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 28px;
  }

  .row-head h2 {
    font-size: clamp(28px, 9.5vw, 44px);
    letter-spacing: -.03em;
  }

  .row-head .num {
    padding-bottom: 0;
  }

  .row-head .all {
    justify-self: start;
  }

  .big-mark {
    padding: 20px 16px 12px;
    overflow-x: clip;
  }

  .big-mark .word {
    font-size: clamp(32px, 13vw, 56px);
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 16px;
  }

  .big-mark .word .tiny {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 9px;
    padding-bottom: 0;
    letter-spacing: .08em;
  }

  .cats { grid-template-columns: repeat(2, 1fr); }
  .cat.big { grid-column: span 2; aspect-ratio: 1.35; }
  .cat.wide { grid-column: span 2; }
  .cat.big .cat-name { font-size: clamp(28px, 8vw, 40px); }

  .countdown { gap: 12px; }
  .countdown .unit { min-width: 64px; }
  .countdown .v { font-size: 48px; }
  .ed-text { padding: 48px 16px; }
}
