﻿:root {
  --bg: #070707;
  --surface: #101010;
  --surface-alt: #141516;
  --text: #f6f6f6;
  --muted: #b8bcc3;
  --accent: #b7ff3f;
  --accent-soft: #d4ff84;
  --stroke: #2a2d32;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    url('../assets/backgrounds/bg-glow.svg') center top / cover no-repeat fixed,
    radial-gradient(circle at 85% 0%, #1b1f1a 0%, var(--bg) 45%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4vw;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
}
.brand img { height: 36px; width: auto; }
nav { display: flex; gap: 1.25rem; color: var(--muted); font-size: 0.95rem; }
nav a:hover { color: var(--accent-soft); }
.btn {
  border: 1px solid var(--stroke);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.btn-solid {
  display: inline-flex;
  margin-top: 1rem;
  border-color: transparent;
  background: var(--accent);
  color: #101010;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 4rem 4vw 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.86), rgba(7, 7, 7, 0.34)),
    url('../assets/hero/hero-urban-main.jpg') center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/patterns/pattern-lines.svg') center / cover;
  opacity: 0.18;
  pointer-events: none;
}
.hero-copy, .hero-grid { position: relative; z-index: 1; }
.hero-copy h1 {
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  margin: 0.2rem 0 0.7rem;
  line-height: 1.04;
  text-transform: uppercase;
}
.hero-badge { width: min(220px, 85%); margin-top: 1rem; }
.kicker { letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-size: 0.75rem; }
.hero-copy p { color: var(--muted); max-width: 52ch; }
.hero-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  overflow: hidden;
}
.hero-card img { height: 380px; object-fit: cover; }
.hero-card span { display: block; padding: 0.85rem; font-weight: 700; }
.section { padding: 1rem 4vw 3rem; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; }
.section-head h2 { font-family: "Arial Black", "Segoe UI", sans-serif; font-size: 1.8rem; margin-bottom: 1rem; text-transform: uppercase; }
.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.product {
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,.35); }
.product img { aspect-ratio: 4/5; object-fit: cover; }
.product h3, .product p { margin: 0.6rem 0.8rem; }
.product p { color: var(--accent); font-weight: 700; padding-bottom: .8rem; }
.section-contrast {
  margin: 1rem 4vw 3rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(110deg, #101010 0%, #1c2414 100%),
    url('../assets/patterns/pattern-lines.svg') center / cover;
  border: 1px solid var(--stroke);
}
.best-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.best-item {
  padding: 1rem;
  border: 1px solid #354029;
  border-radius: 0.8rem;
  display: grid;
  grid-template-columns: 28px auto 1fr;
  align-items: center;
  gap: .65rem;
}
.best-item strong { color: var(--accent); }
.best-icon { width: 22px; height: 22px; }
.lookbook img { border-radius: 1.2rem; max-height: 500px; object-fit: cover; }
.reveal { opacity: 0; transform: translateY(20px); transition: .5s ease; transition-delay: var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 950px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .best-grid { grid-template-columns: 1fr; }
}
