/* ══════════════════════════════════════════════════════════════
   PACE — Premium Sportswear  |  Design System v2
   Inspired by Nike.com + Adidas.com + Apple minimalism
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --lime:   #c8f500;
  --grey-05: #f4f4f4;
  --grey-10: #e8e8e8;
  --grey-40: #888;
  --grey-70: #2e2e2e;
  --red:    #e8001a;

  --font-hero: 'Anton', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-ui:   'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 68px;
  --container: 1440px;
  --pad: clamp(20px, 5vw, 80px);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-ui); background: var(--white); color: var(--black); line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

/* ─── Layout helpers ──────────────────────────────────────── */
.wrap    { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section--black  { background: var(--black); color: var(--white); }
.section--grey   { background: var(--grey-05); }
.section--grey10 { background: var(--grey-10); }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
/* Dark nav (over hero) */
.nav--dark { background: transparent; }
.nav--dark.nav--scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
/* Light nav (sub-pages) */
.nav--light { background: transparent; }
.nav--light.nav--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--grey-10);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  font-family: var(--font-hero);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav--light .nav__logo,
.nav--light.nav--scrolled .nav__logo { color: var(--black); }
.nav--dark.nav--scrolled .nav__logo  { color: var(--white); }

/* Centre links */
.nav__links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav__link {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.25s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after,
.nav__link--active::after { transform: scaleX(1); transform-origin: left; }
.nav--light .nav__link,
.nav--light.nav--scrolled .nav__link { color: var(--grey-40); }
.nav--light .nav__link:hover,
.nav--light.nav--scrolled .nav__link:hover { color: var(--black); }

/* Right icons */
.nav__actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav__btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav__btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav--light .nav__btn,
.nav--light.nav--scrolled .nav__btn { color: var(--grey-40); }
.nav--light .nav__btn:hover,
.nav--light.nav--scrolled .nav__btn:hover { color: var(--black); background: rgba(0,0,0,0.05); }

.nav__badge {
  position: absolute; top: 4px; right: 4px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--black); color: var(--white);
  font-family: var(--font-ui); font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav--dark .nav__badge, .nav--dark.nav--scrolled .nav__badge { background: var(--lime); color: var(--black); }
.nav--light .nav__badge { background: var(--black); color: var(--white); }

/* Hamburger */
.nav__ham { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav__ham span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform 0.3s var(--ease-out), opacity 0.3s; }
.nav--light .nav__ham span { background: var(--black); }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__ham   { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 800;
  background: var(--black);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 24px) var(--pad) 48px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer__link {
  font-family: var(--font-hero);
  font-size: clamp(40px, 9vw, 80px);
  color: var(--white); display: block;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.drawer__link:hover { color: var(--lime); padding-left: 12px; }
.drawer__sub {
  margin-top: 40px;
  display: flex; gap: 24px; flex-wrap: wrap;
}
.drawer__sub a {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.drawer__sub a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════════════════════ */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--lime); width: 0%; z-index: 9999;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Full Screen
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px); /* Zabezpieczenie przed nav */
  background: var(--black); overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  will-change: transform;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.06);
  animation: hero-zoom 10s var(--ease-out) forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.75) 80%,
    rgba(0,0,0,0.92) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) clamp(48px, 7vw, 96px);
  width: 100%;
}
.hero__kicker {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime);
  margin-bottom: 18px;
  opacity: 0; animation: up 0.7s 0.5s var(--ease-out) forwards;
}
.hero__headline {
  font-family: var(--font-hero);
  font-size: clamp(48px, min(10vw, 15vh), 140px);
  line-height: 0.9; text-transform: uppercase; color: var(--white);
  max-width: 14ch; margin-bottom: 24px;
  opacity: 0; animation: up 0.9s 0.7s var(--ease-out) forwards;
}
.hero__sub {
  font-family: var(--font-cond); font-size: clamp(15px,1.8vw,18px); font-weight: 400;
  color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.6; margin-bottom: 36px;
  opacity: 0; animation: up 0.7s 0.9s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: up 0.7s 1.1s var(--ease-out) forwards;
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute; right: var(--pad); bottom: clamp(32px,5vw,64px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4);
  opacity: 0; animation: up 0.7s 1.4s var(--ease-out) forwards;
}
.hero__scroll-text {
  writing-mode: vertical-rl;
  font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: line-drop 1.8s ease-in-out infinite;
}
@keyframes line-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   TICKER STRIP
   ═══════════════════════════════════════════════════════════ */
.ticker { background: var(--lime); overflow: hidden; padding: 0; }
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__item {
  display: inline-flex; align-items: center; gap: 28px;
  font-family: var(--font-hero); font-size: 13px;
  text-transform: uppercase; color: var(--black);
  padding: 12px 0; white-space: nowrap;
  padding-inline: 28px;
}
.ticker__item::after { content: '×'; font-size: 11px; opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s var(--ease-out);
  user-select: none;
}
.btn:active { transform: scale(0.97); }

.btn--solid {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.btn--solid:hover { background: var(--grey-10); border-color: var(--grey-10); }

.btn--outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn--black {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.btn--black:hover { background: var(--grey-70); border-color: var(--grey-70); }

.btn--lime {
  background: var(--lime); color: var(--black); border-color: var(--lime);
}
.btn--lime:hover { background: #b5dc00; border-color: #b5dc00; }

.btn--ghost {
  background: transparent; color: var(--black); border-color: var(--black);
}
.btn--ghost:hover { background: var(--black); color: var(--white); }

.btn--ghost-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════ */
.s-label {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-40);
  margin-bottom: 14px;
}
.s-title {
  font-family: var(--font-hero);
  font-size: clamp(36px, 5.5vw, 80px);
  text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em;
}
.s-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(36px, 5vw, 64px);
}
@media (max-width: 640px) {
  .s-header-row { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD  — Nike/Adidas style
   ═══════════════════════════════════════════════════════════ */
.pcard {
  display: flex; flex-direction: column;
  cursor: pointer;
}

/* Image area — white bg, product uses CONTAIN so full shoe is visible */
.pcard__img-box {
  position: relative;
  background: var(--grey-05);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 14px;
}
.pcard__img {
  width: 100%; height: 100%;
  object-fit: contain;           /* ← KEY FIX: contain shows full shoe */
  object-position: center;
  padding: 14px;                 /* breathing room */
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.pcard:hover .pcard__img { transform: scale(1.08) translateY(-4px); }

/* Hover overlay with quick-add */
.pcard__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px; text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.pcard:hover .pcard__overlay { transform: translateY(0); }

/* Badges */
.pcard__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px 3px;
}
.pcard__badge--new   { background: var(--black); color: var(--white); }
.pcard__badge--lime  { background: var(--lime);  color: var(--black); }
.pcard__badge--sale  { background: var(--red);   color: var(--white); }

/* Wish icon */
.pcard__wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.pcard:hover .pcard__wish { opacity: 1; }

/* Meta */
.pcard__sub  { font-family: var(--font-cond); font-size: 12px; color: var(--grey-40); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.pcard__name { font-family: var(--font-cond); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.pcard__price {
  font-family: var(--font-cond); font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.pcard__price--orig { text-decoration: line-through; color: var(--grey-40); font-weight: 400; }
.pcard__price--sale { color: var(--red); }

/* Colour dots */
.pcard__dots { display: flex; gap: 5px; margin-top: 8px; }
.dot {
  width: 13px; height: 13px; border-radius: 50%;
  border: 1.5px solid transparent; cursor: pointer;
  transition: border-color 0.15s;
}
.dot:hover, .dot--active { border-color: var(--black); }
.dot--ring { box-shadow: 0 0 0 1px #ccc; }  /* for white dots */

/* Grid layouts */
.pgrid {
  display: grid;
  gap: clamp(10px, 2vw, 20px);
}
.pgrid--3 { grid-template-columns: repeat(3, 1fr); }
.pgrid--4 { grid-template-columns: repeat(4, 1fr); }
.pgrid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1200px) { .pgrid--4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .pgrid--3, .pgrid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pgrid--3, .pgrid--4 { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ═══════════════════════════════════════════════════════════
   HERO-CARD  — Big editorial tiles (Nike homepage style)
   ═══════════════════════════════════════════════════════════ */
.hgrid {
  display: grid;
  gap: clamp(8px, 1.5vw, 16px);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 680px) { .hgrid { grid-template-columns: 1fr; } }

.hcard {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(320px, 50vw, 600px);
}
.hcard--tall { min-height: clamp(400px, 65vw, 780px); }
.hcard__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease-out);
}
.hcard:hover .hcard__img { transform: scale(1.04); }
.hcard__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.hcard__content {
  position: relative; z-index: 2;
  padding: clamp(20px, 3vw, 40px);
  width: 100%;
}
.hcard__kicker {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.hcard__title {
  font-family: var(--font-hero);
  font-size: clamp(28px, 4vw, 56px);
  text-transform: uppercase; color: var(--white); line-height: 0.95;
  margin-bottom: 18px;
}
.hcard__cta {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s var(--ease-out);
}
.hcard:hover .hcard__cta { gap: 14px; }

/* ═══════════════════════════════════════════════════════════
   SPLIT (2-col)
   ═══════════════════════════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.split__media { position: relative; min-height: 480px; overflow: hidden; }
.split__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.8s var(--ease-out);
}
.split__media:hover img { transform: scale(1.04); }

.split__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 96px) clamp(32px, 5vw, 80px);
}
.split__body--black { background: var(--black); color: var(--white); }
.split__body--lime  { background: var(--lime); color: var(--black); }
.split__body--grey  { background: var(--grey-05); }

.split__kicker { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.45; margin-bottom: 16px; }
.split__title  { font-family: var(--font-hero); font-size: clamp(36px, 5vw, 72px); text-transform: uppercase; line-height: 0.95; margin-bottom: 20px; }
.split__body-text { font-size: 15px; line-height: 1.75; opacity: 0.7; max-width: 380px; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════════════════
   STATEMENT
   ═══════════════════════════════════════════════════════════ */
.statement {
  background: var(--black); padding: clamp(80px, 10vw, 160px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.statement__ghost {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-hero); font-size: clamp(100px, 20vw, 300px);
  text-transform: uppercase; white-space: nowrap;
  color: rgba(255,255,255,0.03); pointer-events: none; user-select: none;
}
.statement__kicker { font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.statement__title  { font-family: var(--font-hero); font-size: clamp(60px, min(11vw, 16vh), 160px); text-transform: uppercase; color: var(--white); line-height: 0.88; margin-bottom: 36px; }
.statement__title em { font-style: normal; color: var(--lime); }
.statement__sub { font-family: var(--font-cond); font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.45); max-width: 560px; margin: 0 auto 40px; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: clamp(32px, 4.5vw, 60px) clamp(20px, 3vw, 48px);
  border-right: 1px solid var(--grey-10);
}
.stat:last-child { border-right: none; }
@media (max-width: 700px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--grey-10); }
}
.stat__num { font-family: var(--font-hero); font-size: clamp(48px, 7vw, 80px); line-height: 1; margin-bottom: 6px; }
.stat__num sup { font-size: 0.5em; }
.stat__label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-40); }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.nl { background: var(--black); padding: clamp(60px, 8vw, 100px) 0; }
.nl__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
@media (max-width: 768px) { .nl__inner { flex-direction: column; text-align: center; } }
.nl__title { font-family: var(--font-hero); font-size: clamp(36px, 5.5vw, 72px); text-transform: uppercase; color: var(--white); flex: 1; }
.nl__right  { flex: 1; max-width: 460px; }
.nl__hint   { font-family: var(--font-cond); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.nl__form   { display: flex; gap: 0; }
.nl__input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-right: none; color: var(--white); padding: 14px 18px;
  font-family: var(--font-ui); font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.nl__input:focus { border-color: var(--lime); }
.nl__input::placeholder { color: rgba(255,255,255,0.25); }
.nl__submit {
  background: var(--lime); color: var(--black); border: none;
  padding: 14px 24px; font-family: var(--font-cond);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.nl__submit:hover { background: #b5dc00; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black); color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__top {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px;
  padding: clamp(48px, 6vw, 80px) var(--pad);
}
@media (max-width: 900px)  { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px)  { .footer__top { grid-template-columns: 1fr; } }

.footer__logo { font-family: var(--font-hero); font-size: 32px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.footer__desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__soc {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: border-color 0.2s, color 0.2s;
}
.footer__soc:hover { border-color: var(--lime); color: var(--lime); }
.footer__col-h { font-family: var(--font-cond); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-link { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col-link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px var(--pad);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (sub-pages)
   ═══════════════════════════════════════════════════════════ */
.page-head {
  background: var(--black);
  padding: calc(var(--nav-h) + 48px) var(--pad) 56px;
  position: relative; overflow: hidden;
}
.page-head__ghost {
  position: absolute; top: 50%; left: var(--pad);
  transform: translateY(-50%);
  font-family: var(--font-hero); font-size: clamp(80px,16vw,220px);
  text-transform: uppercase; color: rgba(255,255,255,0.04);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.page-head__title {
  position: relative; z-index: 2;
  font-family: var(--font-hero); font-size: clamp(48px, min(8vw, 12vh), 110px);
  text-transform: uppercase; color: var(--white); line-height: 0.92;
}
.page-head__sub {
  position: relative; z-index: 2; margin-top: 16px;
  font-family: var(--font-cond); font-size: 15px; color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════════
   FILTER + SORT BAR (collection pages)
   ═══════════════════════════════════════════════════════════ */
.toolbar {
  border-bottom: 1px solid var(--grey-10);
  position: sticky; top: var(--nav-h); z-index: 100;
  background: var(--white);
}
.toolbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  min-height: 52px; gap: 16px;
}
.chips { display: flex; align-items: center; gap: 6px; overflow-x: auto; padding: 12px 0; flex-wrap: nowrap; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border: 1px solid var(--grey-10);
  white-space: nowrap; cursor: pointer; flex-shrink: 0;
  background: transparent; color: var(--grey-40);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.chip:hover { border-color: var(--black); color: var(--black); }
.chip--active { background: var(--black); color: var(--white); border-color: var(--black); }
.toolbar__sort {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--grey-10); padding: 8px 14px;
  background: transparent; cursor: pointer; outline: none;
  color: var(--grey-40); white-space: nowrap; flex-shrink: 0;
}
.toolbar__count { font-family: var(--font-cond); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-40); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   VALUES / ABOUT
   ═══════════════════════════════════════════════════════════ */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .val-grid { grid-template-columns: 1fr; } }
.val-card { padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px); border-right: 1px solid rgba(0,0,0,0.08); }
.val-card:last-child { border-right: none; }
.section--black .val-card { border-color: rgba(255,255,255,0.07); }
.val-card__num { font-family: var(--font-hero); font-size: 80px; line-height: 1; color: var(--grey-10); margin-bottom: 18px; }
.section--black .val-card__num { color: rgba(255,255,255,0.07); }
.val-card__title { font-family: var(--font-hero); font-size: clamp(26px, 3.5vw, 44px); text-transform: uppercase; margin-bottom: 14px; }
.val-card__text  { font-size: 14px; line-height: 1.75; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero__scroll { display: none; }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 280px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
