/* ══════════════════════════════════════════════
   WANT TO GROW — Clean B&W Streetwear Design
   Two colors only: #0a0a0a (black) & #ffffff (white)
══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --black:        #0a0a0a;
  --white:        #ffffff;
  --grey-50:      #f8f8f8;
  --grey-100:     #f0f0f0;
  --grey-200:     #e0e0e0;
  --grey-400:     #a0a0a0;
  --grey-600:     #666666;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:        64px;
  --announce-h:   36px;
  --offset:       calc(var(--nav-h) + var(--announce-h));

  --r-sm:   6px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.15s;
  --t-base: 0.3s;
  --t-slow: 0.55s;

  --max-w: 1280px;
  --px:    clamp(1.25rem, 5vw, 3rem);
}

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

/* Cursor on mobile */
@media (hover: none) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor, .cursor-ring { display: none !important; }
}

/* ────────────────────────────────────────
   CUSTOM CURSOR
──────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--black);
  border-radius: var(--r-full);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--t-fast), height var(--t-fast), background var(--t-fast);
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--black);
  border-radius: var(--r-full);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  transition: width var(--t-base) var(--ease), height var(--t-base) var(--ease), opacity var(--t-base);
}
body.cursor-hover .cursor { width: 14px; height: 14px; }
body.cursor-hover .cursor-ring { width: 52px; height: 52px; opacity: 0.2; }

/* ────────────────────────────────────────
   TYPOGRAPHY HELPERS
──────────────────────────────────────── */
.overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.6rem;
  display: block;
}

/* ────────────────────────────────────────
   BUTTONS
──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

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

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* ────────────────────────────────────────
   ANNOUNCEMENT BAR
──────────────────────────────────────── */
.announcement {
  height: var(--announce-h);
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.announcement__track .dot { opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────────────────
   NAV
──────────────────────────────────────── */
.nav {
  z-index: 900;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: none;
  transition: box-shadow var(--t-base);
}
.nav.elevated { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Left nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  position: relative;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--black);
  transition: width var(--t-base) var(--ease);
}
.nav__link:hover { color: var(--black); }
.nav__link:hover::after { width: 100%; }

/* Center logo */
.nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  /* The logo has a white background — mix-blend-mode keeps it clean */
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.nav__logo-img:hover { opacity: 0.75; }

/* Footer logo */
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto 0.5rem auto;
}

/* Keep these for any lingering references */
.logo-wordmark { display: none; }


/* Right actions */
.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}
.nav__icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-600);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__icon-btn:hover { color: var(--black); background: var(--grey-100); }
.nav__cart-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-600);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__cart-btn:hover { color: var(--black); background: var(--grey-100); }
.cart-count {
  position: absolute;
  top: 3px; right: 3px;
  min-width: 16px; height: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  transition: transform var(--ease-spring) var(--t-fast);
}
.cart-count.bump { transform: scale(1.5); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* ────────────────────────────────────────
   MOBILE MENU
──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--px);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  border-left: 1px solid var(--grey-200);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--grey-600);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-menu__close:hover { color: var(--black); background: var(--grey-100); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  letter-spacing: 0.03em;
  color: var(--black);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--grey-100);
  transition: opacity var(--t-fast), padding-left var(--t-fast);
}
.mobile-link:hover { opacity: 0.5; padding-left: 0.5rem; }
.mobile-menu__bottom { margin-top: 3rem; }
.mobile-menu__tagline { font-size: 0.8rem; color: var(--grey-600); margin-bottom: 0.25rem; }
.mobile-menu__handle { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; }

/* ==========================================================================
   HERO (CENTERED)
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 4rem) 5% 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--white);
}
.hero__center {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero__title-tech {
  font-family: var(--font-body);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.hero__desc-extended {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--grey-600);
  max-width: 650px;
  line-height: 1.8;
  margin: 0 auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.95s forwards;
}
.hero__cards {
  display: flex;
  gap: 1rem;
  width: 100vw;
  max-width: 100vw;
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 5% 1.5rem 5%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.hero__card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
  .hero__card {
    flex: 0 0 85%;
  }
}
.hero__card {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.hero__card:hover img {
  transform: scale(1.03);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}
.meta-pill {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-full);
  color: var(--grey-600);
}

/* Hero visual (Cinematic) */
.hero__cinematic {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .hero__cinematic {
    aspect-ratio: 4/5;
  }
}
.hero__img-frame {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform var(--t-slow) var(--ease);
}
.hero__img.active {
  opacity: 1;
}
.hero__img-frame:hover .hero__img.active { transform: scale(1.02); }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: var(--px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.5s forwards;
}
.scroll-track {
  width: 30px; height: 1px;
  background: var(--grey-200);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--black);
  animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide { 0%{left:-100%} 50%{left:0} 100%{left:100%} }
.hero__scroll span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* Animations */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ────────────────────────────────────────
   MARQUEE BAR
──────────────────────────────────────── */
.marquee-bar {
  background: var(--black);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-bar__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--grey-600);
  text-transform: uppercase;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ────────────────────────────────────────
   SHOP / PRODUCTS
──────────────────────────────────────── */
.shop {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--px);
}
.shop__header {
  margin-bottom: 3rem;
}
.shop__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.shop__sub {
  font-size: 1rem;
  color: var(--grey-600);
  max-width: 480px;
  line-height: 1.7;
}

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 0;
}
.filter-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding: 0.7rem 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
  padding-right: 1.5rem;
}
.filter-btn:hover { color: var(--black); }
.filter-btn--active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

/* Product card */
.product {
  display: flex;
  flex-direction: column;
}
.product[data-hidden] { display: none; }

.product__media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
}
.product__slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
}
.product__slider::-webkit-scrollbar { display: none; }
.product__img {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  object-fit: contain; /* ensures whole product is visible */
  object-position: center;
  scroll-snap-align: start;
  background: var(--white);
}

.product__slider-nav {
  position: absolute;
  bottom: 0.8rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 5;
}
.product__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grey-200);
  transition: background 0.3s, transform 0.3s;
}
.product__dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* Quick add */
.product__actions {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 100%);
  transform: translateY(150%);
  transition: transform var(--t-base) var(--ease);
  pointer-events: none;
}
.product:hover .product__actions { transform: translateY(0); pointer-events: auto; }
.add-btn {
  width: 100%;
  padding: 0.7rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.add-btn:hover { background: #333; }

/* Badge */
.product__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-sm);
}
.product__badge--limited {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
}

/* Product info */
.product__info { display: flex; flex-direction: column; gap: 0.5rem; }
.product__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.product__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.product__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--black);
}
.product__detail {
  font-size: 0.78rem;
  color: var(--grey-400);
  letter-spacing: 0.05em;
}

/* Sizes */
.product__sizes {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.size-btn {
  width: 36px; height: 36px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  color: var(--grey-600);
  transition: all var(--t-fast);
  display: flex; align-items: center; justify-content: center;
}
.size-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.size-btn--active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.size-btn--soldout {
  color: var(--grey-200);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ────────────────────────────────────────
   EDITORIAL FEATURE
──────────────────────────────────────── */
.nav { border-bottom: none; }
.full-fit {
  padding: 4rem 5%;
  background: var(--black);
  color: var(--white);
  max-width: 100vw;
}
.full-fit__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.full-fit__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grey-100);
}
.full-fit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: clamp(4rem, 8vw, 7rem) var(--px);
}
.feature__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.feature__img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grey-100);
}
.feature__img { width: 100%; height: 100%; object-fit: cover; }
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.feature__list { display: flex; flex-direction: column; gap: 0; }
.feature__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.feature__item:first-child { border-top: 1px solid var(--grey-200); }
.feature__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--grey-200);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.feature__item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
  color: var(--black);
}
.feature__item p {
  font-size: 0.82rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* ────────────────────────────────────────
   SIZE GUIDE
──────────────────────────────────────── */
.sizing {
  padding: clamp(2rem, 4vw, 4rem) var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.sizing__inner { text-align: center; }
.sizing__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.sizing__sub {
  font-size: 0.9rem;
  color: var(--grey-600);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.size-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.size-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--grey-200);
  text-align: center;
}
.size-table td {
  padding: 1.25rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--grey-100);
  transition: background var(--t-fast);
  text-align: center;
}
.size-table tr:last-child td { border-bottom: none; }
.size-table tr:hover td { background: var(--grey-50); }
.sizing__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey-400);
}

/* ────────────────────────────────────────
   ABOUT
──────────────────────────────────────── */
.about {
  padding: clamp(4rem, 8vw, 7rem) var(--px);
  border-top: 1px solid var(--grey-200);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.about__para {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__visual { display: flex; flex-direction: column; gap: 1.5rem; }
.about__img-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grey-50);
  aspect-ratio: 4/5;
}
.about__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.a-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--grey-200);
}
.a-stat:last-child { border-right: none; }
.a-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}
.a-stat__unit {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-left: 2px;
}
.a-stat__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 0.25rem;
}

/* ────────────────────────────────────────
   NEWSLETTER
──────────────────────────────────────── */
.newsletter {
  background: var(--black);
  padding: clamp(4rem, 8vw, 7rem) var(--px);
}
.newsletter__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.newsletter .overline { color: var(--grey-600); }
.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.newsletter__sub {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.newsletter__form {
  display: flex;
  gap: 0;
  border: 1px solid #333;
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t-base);
  margin-bottom: 0.75rem;
}
.newsletter__form:focus-within { border-color: var(--white); }
.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter__input::placeholder { color: #555; }
.newsletter__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}
.newsletter__btn:hover { background: var(--grey-200); }
.newsletter__success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.9rem 0;
}
.newsletter__success[hidden] { display: none; }
.newsletter__disclaimer {
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--grey-200);
  padding: clamp(3rem, 6vw, 5rem) var(--px) 2rem;
  text-align: center;
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 1.5rem;
}
.footer__tagline {
  font-size: 0.82rem;
  color: var(--grey-600);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-600);
  transition: all var(--t-fast);
}
.footer__social-link:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--grey-50);
}
.footer__links-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__col-head {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--grey-600);
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--black); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: var(--grey-400); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.78rem; color: var(--grey-400); transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--black); }

/* ────────────────────────────────────────
   TOAST
──────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1000;
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--ease-spring) var(--t-base), opacity var(--t-base);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* ────────────────────────────────────────
   SCROLL REVEAL
──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero__side-text { display: none; }
  .hero__title { white-space: normal; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  /* Nav */
  .nav__links { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack image above text */
  .hero {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__visual {
    order: -1;
    max-width: 100%;
  }
  .hero__img-frame { aspect-ratio: 4/3; }
  .hero__title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    white-space: normal;
  }
  .hero__scroll { display: none; }
  .hero__side-text { display: none; }

  /* Feature */
  .feature__inner { grid-template-columns: 1fr; }
  .feature__img-wrap { aspect-ratio: 16/9; }

  /* About */
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; }

  /* Newsletter */
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
}

/* Mobile large */
@media (max-width: 640px) {
  :root { --px: 1.1rem; }

  /* Products: 2 per row on medium mobile */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Sizing table scroll */
  .size-table-wrap { font-size: 0.82rem; }

  /* About stats */
  .about__stats { grid-template-columns: repeat(3, 1fr); }

  /* Footer */

  /* Logo smaller on mobile */
  .nav__logo-img { height: 44px; }
}

/* Mobile small */
@media (max-width: 480px) {
  /* Products: 1 per row */
  .products-grid { grid-template-columns: 1fr; }

  /* Hero title wraps naturally */
  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    white-space: normal;
  }

  /* Buttons stack */
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Newsletter form stacks */
  .newsletter__form {
    flex-direction: column;
    border-radius: var(--r-md);
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .newsletter__input { padding: 0.6rem 0.75rem; }
  .newsletter__btn { border-radius: var(--r-sm); justify-content: center; }

  /* Footer */
  .footer__bottom { flex-direction: column; align-items: center; gap: 0.75rem; }

  /* Nav logo on smallest screens */
  .nav__logo-img { height: 38px; }

  /* Feature image smaller */
  .feature__img-wrap { aspect-ratio: 1/1; }

  /* Sizing table */
  .sizing__inner { text-align: center; }
}

/* Full Fit specific contrast */
.full-fit .size-btn { border: 1px solid var(--grey-600); color: var(--grey-200); }
.full-fit .size-btn:hover { border-color: var(--white); color: var(--white); }
.full-fit .size-btn--active { background: var(--white); color: var(--black); border-color: var(--white); }
.full-fit .btn--black { background: var(--white); color: var(--black); margin-top: 1rem; }
.full-fit .btn--black:hover { background: var(--grey-200); }

/* 2 Column Products Grid */
.products-grid--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 640px) {
  .products-grid--2col {
    grid-template-columns: 1fr;
  }
}
