:root {
  --lime: #d6ff3a;
  --lime-deep: #c3ef12;
  --ink: #0d0d0d;
  --paper: #f4f4f1;
  --muted: #6b6b66;
  --lilac: #c9b8ff;
  --card: #161616;
  --line: rgba(255,255,255,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.announcement {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 8px 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--lime);
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  display: grid; place-items: center;
  letter-spacing: .04em;
}
.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  line-height: .9;
  letter-spacing: .12em;
}
.nav { display: flex; gap: 22px; margin-left: auto; font-size: 13px; font-weight: 500; }
.nav a:hover { color: var(--lime); }
.cart-btn, .menu-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 8px 12px;
  font-size: 13px;
}
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px;
  background: var(--lime); color: var(--ink);
  border-radius: 99px; font-size: 11px; font-weight: 700;
  margin-left: 6px; padding: 0 5px;
}
.menu-btn { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: calc(100vh - 90px);
}
.hero-media { background: #111; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 48px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: "Bebas Neue", sans-serif; letter-spacing: .04em; }
h1 { font-size: clamp(72px, 12vw, 140px); line-height: .8; }
h2 { font-size: clamp(36px, 6vw, 64px); line-height: .9; margin-bottom: 16px; }
.hero-sub { max-width: 420px; color: #c9c9c4; margin: 18px 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); }
.btn-ghost { background: transparent; border-color: #444; color: var(--paper); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn.full { width: 100%; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 22px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: "Bebas Neue", sans-serif; font-size: 28px; letter-spacing: .06em; }
.stat span { font-size: 12px; color: var(--muted); }

.section { padding: 80px 28px 40px; max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head.tight { margin-bottom: 28px; }
.section-head p { color: #c9c9c4; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.card-visual {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 20%, rgba(214,255,58,.18), transparent 40%),
    linear-gradient(180deg, #1c1c1c, #101010);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.card-visual .swatch {
  width: 58%;
  aspect-ratio: 3/4;
  background: #e8ff6a;
  border-radius: 8px 8px 40% 40%;
  box-shadow: 0 20px 50px rgba(214,255,58,.12);
  position: relative;
}
.card-visual .swatch::after {
  content: "";
  position: absolute; inset: 12% 18% auto;
  height: 10px;
  background: var(--lilac);
  border-radius: 99px;
}
.card-visual.shorts .swatch { border-radius: 12px 12px 28% 28%; aspect-ratio: 5/4; width: 62%; }
.card-visual.acc .swatch { aspect-ratio: 1.6; width: 55%; border-radius: 10px; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--lime); color: var(--ink);
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  padding: 4px 8px;
}
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 22px; }
.card-body p { font-size: 13px; color: #b7b7b2; }
.price { font-weight: 700; color: var(--lime); }
.card-actions { display: flex; gap: 8px; margin-top: 8px; }
.size-select, .qty-input {
  background: #0d0d0d; color: var(--paper);
  border: 1px solid #333; padding: 10px;
  font-size: 13px;
}
.size-select { flex: 1; }
.add-btn { flex: 1.2; }

.lookbook { padding: 40px 28px 80px; max-width: 1100px; margin: 0 auto; }
.lookbook-frame { border: 1px solid var(--line); }
.lookbook-frame img { width: 100%; }
.lookbook-frame figcaption {
  padding: 14px 16px; font-size: 12px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.about p { color: #c9c9c4; margin-bottom: 14px; }
.checklist { list-style: none; margin-top: 18px; }
.checklist li { padding: 8px 0 8px 22px; position: relative; }
.checklist li::before { content: "▸"; position: absolute; left: 0; color: var(--lime); }
.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
}
.about-card h3 { font-size: 28px; margin-bottom: 16px; }
.about-card ol { padding-left: 18px; color: #c9c9c4; }
.about-card li { margin: 8px 0; }
.note { margin-top: 18px; font-size: 13px; color: var(--muted); }

.cta {
  text-align: center;
  padding: 90px 24px;
  background: linear-gradient(180deg, #101010, #16180a);
  border-top: 1px solid var(--line);
}
.cta p { color: #c9c9c4; margin: 12px 0 28px; }

.footer {
  padding: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--paper); }
.footer-brand span { display: block; font-size: 12px; color: var(--muted); }

.drawer {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 60;
  opacity: 0; pointer-events: none;
  transition: .25s ease;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(400px, 100%);
  background: #111;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(20px);
  transition: .25s ease;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-head, .drawer-foot { padding: 18px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer-foot { border-bottom: 0; border-top: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 10px; }
.drawer-body { flex: 1; overflow: auto; padding: 8px 18px; }
.icon-btn { background: none; border: 0; color: var(--paper); font-size: 18px; }
.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cart-row small { color: var(--muted); grid-column: 1 / -1; }
.total { display: flex; justify-content: space-between; font-size: 16px; }
.empty { color: var(--muted); padding: 30px 0; text-align: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 52vh; }
  .hero-content { padding: 36px 22px 48px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #111; flex-direction: column; padding: 16px 22px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .menu-btn { display: block; margin-left: auto; }
  .grid, .stats, .about-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .grid, .about-grid { grid-template-columns: 1fr; }
  .header { padding: 12px 16px; }
}
