:root {
  --bg: #070707;
  --bg-soft: #111111;
  --text: #f4f1ea;
  --muted: #a8a29a;
  --line: rgba(255,255,255,.12);
  --white: #ffffff;
  --accent: #d8b46a;
  --accent-2: #7c5cff;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0,0,0,.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216,180,106,.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(124,92,255,.18), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(216,180,106,.15), transparent 62%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: .75;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  height: 72px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,7,7,.58);
  backdrop-filter: blur(22px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  transition: .3s ease;
}

.site-header.scrolled {
  height: 62px;
  background: rgba(7,7,7,.82);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: .9rem;
}

.nav a {
  transition: .25s ease;
}

.nav a:hover {
  color: var(--white);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px max(22px, calc((100vw - 1120px) / 2)) 80px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 50px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.55), rgba(7,7,7,.85)),
    url("background.jpg") center 68% / cover no-repeat;
  opacity: .9;
  z-index: -3;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 42%),
    radial-gradient(circle at 65% 45%, transparent 0 12%, rgba(0,0,0,.45) 42%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -2;
}

.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.09em;
  max-width: 900px;
}

.hero-text {
  margin-top: 28px;
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
}

.btn.primary {
  color: #111;
  background: var(--text);
}

.btn.primary:hover {
  transform: translateY(-3px);
  background: var(--accent);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.btn.ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.35);
}

.hero-card {
  justify-self: end;
  width: min(370px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .18em;
}

.hero-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.hero-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #0c0c0c;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 24px 34px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.36);
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 950;
  letter-spacing: -.08em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section,
.lookbook,
.brand-section,
.drop-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  padding: 11px 17px;
  cursor: pointer;
  transition: .25s ease;
}

.filter.active,
.filter:hover {
  color: #111;
  background: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: .3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.26);
}

.product-card.hidden {
  display: none;
}

.product-visual {
  position: relative;
  height: 380px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(135deg, #181818, #050505);
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 48px 76px 0;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(-4deg);
}

.product-visual::after {
  content: "REPLAYOG";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: rgba(255,255,255,.12);
  font-weight: 950;
  letter-spacing: .18em;
}

.product-visual span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(255,255,255,.55);
  font-weight: 900;
}

.visual-two {
  background:
    radial-gradient(circle at 40% 35%, rgba(216,180,106,.22), transparent 30%),
    linear-gradient(135deg, #19140c, #050505);
}

.visual-three {
  background:
    radial-gradient(circle at 60% 30%, rgba(124,92,255,.22), transparent 30%),
    linear-gradient(135deg, #11101a, #050505);
}

.product-info {
  padding: 22px;
}

.product-info p {
  color: var(--muted);
  font-size: .9rem;
}

.product-info h3 {
  margin-top: 8px;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.product-info strong {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 1.1rem;
}

.lookbook {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.lookbook-text {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255,255,255,.045);
}

.lookbook-text p:last-child {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 24px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.look {
  min-height: 250px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(to top, rgba(0,0,0,.8), transparent),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, #151515, #050505);
  position: relative;
  overflow: hidden;
}

.look::before {
  content: "";
  position: absolute;
  inset: 38px 28%;
  border-radius: 999px 999px 24px 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.tile-large {
  grid-row: span 2;
}

.look span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-weight: 900;
  font-size: 1.15rem;
}

.brand-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.brand-card {
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(216,180,106,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.035);
}

.brand-card p:last-child {
  color: var(--muted);
  line-height: 1.9;
  margin-top: 28px;
  max-width: 640px;
}

.stats {
  display: grid;
  gap: 18px;
}

.stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px;
  background: rgba(255,255,255,.045);
}

.stat strong {
  display: block;
  font-size: 3.6rem;
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--accent);
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 12px;
}

.drop-section {
  padding-top: 40px;
}

.drop-box {
  border-radius: 40px;
  border: 1px solid var(--line);
  padding: clamp(32px, 8vw, 76px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(216,180,106,.18), transparent 35%),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.drop-box p {
  color: var(--muted);
  margin-top: 16px;
}

.newsletter {
  width: min(560px, 100%);
  margin: 34px auto 0;
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 0 18px;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  color: #111;
  background: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.newsletter button:hover {
  background: var(--accent);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a:hover {
  color: var(--text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 120px);
  padding: 14px 20px;
  border-radius: 999px;
  color: #111;
  background: var(--text);
  font-weight: 900;
  z-index: 50;
  transition: .35s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7,7,7,.92);
    backdrop-filter: blur(20px);
    flex-direction: column;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .lookbook,
  .brand-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-card {
    justify-self: start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    height: 330px;
  }

  .newsletter {
    border-radius: 26px;
    flex-direction: column;
  }

  .newsletter input {
    min-height: 50px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .section,
  .lookbook,
  .brand-section,
  .drop-section {
    padding: 80px 0;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .tile-large {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }
}
EOF