:root {
  --bg: #000000;
  --ink: #DAB7A4;
  --accent: #AF8E7C;
  --muted: #7E6458;
  --line: rgba(175, 142, 124, 0.28);
  --bg2: #0A0808;
  --panel: #201917;
  --deep: #493933;
  --grad: linear-gradient(90deg, #DAB7A4, #AF8E7C);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: "Libre Bodoni", "Bodoni MT", Didot, Georgia, serif;
  font-optical-sizing: auto;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-mark {
  display: block;
  height: 44px;
  width: auto;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-bg,
.hero-glow {
  position: absolute; inset: 0;
  background: var(--bg);
}
.hero-inner { position: relative; z-index: 2; padding: 110px 24px 72px; max-width: 980px; }
.hero-video {
  width: min(860px, 96vw); aspect-ratio: 1920 / 1088; display: block;
  margin: 0 auto 18px; border: 0; border-radius: 0;
  background: var(--bg); object-fit: contain;
  box-shadow: none;
  mix-blend-mode: screen;
}
.hero-kicker {
  font-family: "Julius Sans One", "Outfit", sans-serif;
  letter-spacing: 0.42em; font-size: 12px; color: var(--accent); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.05; font-weight: 600; }
.hero-sub {
  color: var(--muted); font-size: clamp(16px, 2vw, 19px);
  margin: 20px auto 32px; max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--muted); animation: bob 1.8s ease-in-out infinite; z-index: 2; font-size: 13px;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

.btn {
  display: inline-block; border: none; cursor: pointer; text-decoration: none;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: 999px;
  transition: transform .15s, box-shadow .2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--grad); color: #000000;
  box-shadow: 0 6px 30px rgba(175, 142, 124, 0.28);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(218, 183, 164, 0.32); }

.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--bg2); padding: 12px 0;
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: scroll 90s linear infinite;
  font-family: "Julius Sans One", "Outfit", sans-serif; letter-spacing: 0.28em; font-size: 12px; color: var(--muted);
}
.marquee-half { display: inline-block; }
@keyframes scroll { to { transform: translateX(-50%); } }

.shop { max-width: 1200px; margin: 0 auto; padding: 90px 24px 40px; }
.section-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 34px;
}
.section-head h2, .story h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 600; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--panel); border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 7px 16px; font-size: 13px; cursor: pointer;
  font-family: inherit; transition: color .2s, border-color .2s;
}
.chip.active, .chip:hover { color: var(--ink); border-color: var(--accent); }
.grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.grid:empty { display: none; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden;
}
.card.hide { display: none; }
.bench-empty {
  color: var(--muted); font-size: 15px; padding: 28px 0 8px;
}
.bench-empty.hide { display: none; }

.story {
  background: var(--bg2); border-block: 1px solid var(--line); margin-top: 60px;
}
.story-inner { max-width: 820px; margin: 0 auto; padding: 80px 24px; }
.story-text p { color: var(--muted); margin: 16px 0; line-height: 1.7; font-size: 15px; }

.footer { text-align: center; padding: 50px 20px; }
.footer p { color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .nav { padding: 10px 16px; }
  .brand-mark { height: 34px; }
  .hero-inner { padding: 96px 18px 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .scroll-hint { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
