@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600&display=swap");

:root {
  --background: 0 0% 4%;
  --foreground: 40 20% 90%;
  --card: 0 0% 7%;
  --card-foreground: 40 20% 90%;
  --primary: 43 72% 55%;
  --primary-foreground: 0 0% 4%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 40 20% 80%;
  --muted: 0 0% 10%;
  --muted-foreground: 40 10% 50%;
  --accent: 43 72% 55%;
  --border: 40 15% 18%;
  --destructive: 0 84.2% 60.2%;
  --gold: 43 72% 55%;
  --gold-light: 43 80% 70%;
  --gold-dark: 43 60% 40%;
  --gold-muted: 43 30% 25%;
  --radius: .25rem;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --gradient-gold: linear-gradient(135deg, hsl(43 72% 55%), hsl(43 80% 70%), hsl(43 60% 40%));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; margin: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin: 0 0 0.75rem;
}
.gold-line {
  width: 3rem;
  height: 1px;
  background: var(--gradient-gold);
  margin: 1.25rem auto 0;
}
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic { font-style: italic; }
.wrap { width: min(80rem, calc(100% - 2rem)); margin: 0 auto; }
.wrap-5 { width: min(64rem, calc(100% - 2rem)); margin: 0 auto; }
.wrap-3 { width: min(48rem, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5rem 1rem; }
@media (min-width: 768px) { .section { padding: 7rem 1.5rem; } }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-gold {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-gold:hover { background: hsl(var(--gold-light)); }
.btn-outline {
  border: 1px solid hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
}
.btn-outline:hover { background: hsl(var(--primary) / 0.1); }
.btn-ghost {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}
.btn-ghost:hover { border-color: hsl(var(--primary) / 0.4); }
.btn:disabled, .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* NAV — logo in document flow; only the menu bar sticks */
.nav {
  position: relative;
  z-index: 50;
  background: hsl(var(--background));
}
.nav-masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
}
.nav-logo img {
  height: 7rem;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .nav-logo img { height: 12rem; }
}
@media (min-width: 1100px) {
  .nav-logo img { height: 13.5rem; }
}
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 3.5rem;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.nav-links {
  display: none;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.9);
  line-height: 1;
}
.nav-links a:hover { color: hsl(var(--primary)); }
.nav-actions {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: hsl(var(--foreground));
  position: relative;
}
.cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 10px; line-height: 16px; text-align: center;
}
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: currentColor; transition: transform 0.2s, opacity 0.2s;
}
.nav-bar.open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-bar.open .hamburger span:nth-child(2) { opacity: 0; }
.nav-bar.open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.98);
}
.nav-bar.open .nav-mobile { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid hsl(var(--border));
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }
}

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 80;
  background: hsl(var(--background) / 0.96);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.age-gate[hidden] { display: none; }
.age-card { max-width: 28rem; text-align: center; }
.age-card h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.age-card p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; }
.age-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; margin: 1.5rem 0 1rem; }
@media (min-width: 640px) { .age-actions { flex-direction: row; } }
.age-warn { font-size: 10px; color: hsl(var(--muted-foreground)); max-width: 24rem; margin: 0 auto; line-height: 1.6; }
.age-deny { color: hsl(var(--destructive)); }

/* HERO — banner. Copy sits low so it is off his face. */
.hero {
  position: relative;
  height: min(68vh, 720px);
  min-height: 420px;
  overflow: hidden;
  background: hsl(var(--background));
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, hsl(var(--background) / 0.18) 0%, transparent 28%),
    linear-gradient(to top, hsl(var(--background) / 0.72) 0%, hsl(var(--background) / 0.18) 38%, transparent 58%);
}
.hero-copy {
  position: absolute;
  z-index: 10;
  left: 0; right: 0;
  top: auto;
  bottom: 9%;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.hero-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: hsl(40 30% 96%);
  text-shadow: 0 2px 24px hsl(0 0% 0% / 0.75);
  margin: 0 0 1.75rem;
}
.hero-ctas { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* ABOUT — stacked stories, matched logos, collapsed copy */
.about-intro { text-align: center; margin-bottom: 3.5rem; }
.about-intro h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  margin: 0.15rem 0 0;
}
.story {
  display: grid;
  gap: 1.75rem;
  padding: 2.5rem 0;
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 860px) {
  .story {
    grid-template-columns: 15rem 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3.25rem 0;
  }
}
.story-brand { text-align: center; }
.story-logo {
  width: 11.5rem;
  height: 11.5rem;
  object-fit: contain;
  margin: 0 auto 1.1rem;
  background: transparent;
}
.story-quote {
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
  line-height: 1.25;
}
.story-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0;
}
.story-copy {
  column-count: 1;
  column-gap: 2rem;
}
@media (min-width: 700px) {
  .story-copy { column-count: 2; }
}
.story-copy p {
  font-size: 0.98rem;
  color: hsl(40 16% 78%);
  line-height: 1.7;
  margin: 0 0 0.95rem;
}
.story-copy p.em { font-style: italic; }
.story-copy p.strong { font-weight: 600; color: hsl(var(--foreground)); }
.story-copy.is-collapsed {
  max-height: 16.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
}
.story-more {
  margin-top: 0.35rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.story-more:hover { color: hsl(var(--gold-light)); }

.duo {
  position: relative;
  margin: 1.75rem 0 2.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}
.duo img {
  display: block;
  width: 100%;
  height: min(38vh, 340px);
  object-fit: cover;
  object-position: center 18%;
}
.duo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.72), transparent);
}
.duo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0.85rem;
  z-index: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: hsl(40 20% 92%);
}

/* SHOP */
.about { padding-bottom: 0; }
.shop {
  background: hsl(0 0% 7%);
  border-top: 1px solid hsl(var(--border));
  padding-top: 5.5rem;
}
.shop-intro { text-align: center; margin-bottom: 3.25rem; }
.shop-intro .eyebrow { font-size: 13px; }
.shop-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0.2rem 0 0;
}
.section-intro { text-align: center; margin-bottom: 3.25rem; }
.section-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0.2rem 0 0;
}
.section-intro .eyebrow { font-size: 13px; }

.shop-intro-sub { margin-top: 4.25rem; }
.shop-subcopy {
  max-width: 36rem;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: hsl(40 16% 72%);
  line-height: 1.55;
}
.product-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: 1fr 1fr; } }
.product-card {
  background: hsl(0 0% 5%);
  border: 1px solid hsl(var(--border));
  padding: 1rem 1rem 1.25rem;
}
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: hsl(var(--card)); }
.product-card h3 { font-size: 1.5rem; margin: 1rem 0 0.25rem; }
.product-sub { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin: 0 0 0.75rem; }
.product-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.flavor-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0; }
.flavor {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid hsl(var(--border)); padding: 0.2rem 0.5rem;
  color: hsl(var(--muted-foreground));
}
.meta-row { display: none; }
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.65rem;
  margin: 0.9rem 0 1.15rem;
}
.spec {
  min-height: 4.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.3rem;
}
.spec-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.spec-val {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: hsl(var(--foreground));
}
.strength { display: flex; align-items: center; gap: 4px; }
.tick {
  width: 20px; height: 6px; border-radius: 999px;
  background: hsl(var(--border));
}
.tick.on { background: hsl(var(--primary)); }
.tick.half { background: linear-gradient(90deg, hsl(var(--primary)) 50%, hsl(var(--border)) 50%); }
.pack-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0 0 0.55rem;
}
.packs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pack {
  min-width: 4.4rem;
  padding: 0.45rem 0.55rem 0.4rem;
  border: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  color: hsl(var(--muted-foreground));
}
.pack.on {
  border-color: hsl(var(--primary));
  color: hsl(var(--foreground));
  background: hsl(var(--primary) / 0.08);
}
.pack-count { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.pack-price { font-family: var(--font-serif); font-size: 0.95rem; color: inherit; }
.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.buy-price { font-family: var(--font-serif); font-size: 1.65rem; }
.buy-row .btn { flex: 0 0 auto; }
.buy-note {
  min-height: 1rem;
  margin: 0.45rem 0 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: hsl(var(--primary));
}
.buy-note.is-empty { visibility: hidden; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: hsl(var(--primary)); }

/* VIP */
.vip { position: relative; overflow: hidden; }
.vip-bg { position: absolute; inset: 0; }
.vip-bg img { width: 100%; height: 100%; object-fit: cover; }
.vip-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: hsl(var(--background) / 0.78);
}
.vip-inner { position: relative; z-index: 10; max-width: 44rem; margin: 0 auto; text-align: center; }
.vip-inner .eyebrow { font-size: 13px; }
.vip-inner h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.85rem; }
.vip-body {
  color: hsl(40 18% 82%);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}
.vip-list {
  display: grid; gap: 0.9rem;
  max-width: 36rem; margin: 0 auto 2.5rem;
  text-align: left;
  padding: 0;
}
@media (min-width: 640px) { .vip-list { grid-template-columns: 1fr 1fr; } }
.vip-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
  color: hsl(var(--foreground));
}
.vip-form {
  position: relative;
  margin: 2rem auto 0;
  max-width: 28rem;
  text-align: left;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--background) / 0.72);
  padding: 1.5rem 1.35rem 1.35rem;
}
.vip-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}
.vip-close:hover { color: hsl(var(--foreground)); }
.vip-form[hidden], .vip-thanks[hidden] { display: none; }
.vip-form-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin: 0 0 0.45rem;
}
.vip-form-copy {
  font-size: 0.95rem;
  color: hsl(40 16% 78%);
  line-height: 1.55;
  margin: 0 0 1.15rem;
}
.vip-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.85rem;
}
.vip-form input, .vip-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  background: hsl(0 0% 4%);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.65rem 0.7rem;
}
.vip-form textarea { resize: vertical; min-height: 6rem; }
.vip-form .btn { width: 100%; margin-top: 0.35rem; }
.vip-form-note {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin: 0.85rem 0 0;
  letter-spacing: 0.04em;
}
.vip-thanks {
  margin: 1.75rem auto 0;
  max-width: 28rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: hsl(40 20% 90%);
}

/* EVENTS */
.events-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; }
.events-head h3 { font-size: 1.4rem; }
.by-invite { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }
.upcoming {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .upcoming { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .upcoming { grid-template-columns: 1fr 1fr 1fr; } }
.event-card {
  border: 1px solid hsl(var(--border));
  background: hsl(0 0% 5%);
  overflow: hidden;
}
.event-card .thumb { aspect-ratio: 3/4; overflow: hidden; background: hsl(var(--card)); }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.event-card:hover img { transform: scale(1.03); }
.event-pad { padding: 1.1rem 1.15rem 1.25rem; }
.event-card h4 { font-size: 1.2rem; margin: 0 0 0.4rem; }
.event-card p { font-size: 0.85rem; color: hsl(var(--muted-foreground)); margin: 0 0 0.3rem; }
.events-more {
  display: block;
  margin: 1.75rem auto 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.events-more:hover { color: hsl(var(--gold-light)); }

.archive-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 3.25rem 0 1.25rem;
}
.archive-wrap {
  position: relative;
  margin: 0 auto 0.5rem;
}
.archive-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.85);
  color: hsl(var(--foreground));
  font-size: 1.6rem;
  line-height: 1;
}
.archive-arrow:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.archive-arrow-left { left: 0.4rem; }
.archive-arrow-right { right: 0.4rem; }
@media (min-width: 768px) { .archive-arrow { display: flex; align-items: center; justify-content: center; } }
.archive {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.15rem 3rem 0.35rem;
  scrollbar-width: none;
}
.archive::-webkit-scrollbar { display: none; }
.archive-card {
  flex: 0 0 82%;
  max-width: 22rem;
  scroll-snap-align: start;
  border: 1px solid hsl(var(--border));
  background: hsl(0 0% 5%);
  overflow: hidden;
}
@media (min-width: 768px) { .archive-card { flex-basis: 21.5rem; } }
.archive-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.archive-card .pad { padding: 1.2rem 1.3rem 1.35rem; }
.archive-meta { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: hsl(var(--primary)); margin: 0 0 0.5rem; }
.archive-card h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.archive-card p { font-size: 0.9rem; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.5; }

/* PLAYERS */
.players { background: hsl(var(--card) / 0.3); padding-top: 3.25rem; }
.ig-link {
  display: inline-block; margin-top: 1.25rem;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: hsl(var(--primary));
}
.ig-link:hover { color: hsl(var(--gold-light)); }
.player-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .player-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .player-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.player-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.player-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.player-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(0 0% 0% / 0.45);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.player-tile:hover img { transform: scale(1.06); }
.player-tile:hover .player-hover { opacity: 1; }

/* MERCH */
.merch-group { margin-bottom: 3rem; }
.merch-group h3 {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1.4rem;
}
.merch-grid {
  display: grid; gap: 1rem;
  max-width: 48rem; margin: 0 auto;
}
@media (min-width: 640px) { .merch-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.merch-card {
  border: 1px solid hsl(var(--border));
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.merch-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: hsl(var(--card)); }
.merch-card h4 { font-size: 1rem; margin: 0.75rem 0 0.15rem; }
.merch-card .desc { font-size: 0.8rem; color: hsl(var(--muted-foreground)); margin: 0 0 0.4rem; }
.merch-card .price { font-family: var(--font-serif); margin-bottom: 0.75rem; }
.opt-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.6rem; }
.opt {
  padding: 0.25rem 0.7rem;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}
.opt.on { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.merch-card .add-merch { margin-top: auto; width: 100%; }

/* COMING SOON */
.soon { background: hsl(var(--card) / 0.3); }
.soon-card {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}
.soon-card .frame { aspect-ratio: 16/9; overflow: hidden; }
.soon-card img { width: 100%; height: 100%; object-fit: cover; }
.soon-card .pad { padding: 1.6rem 1.5rem 1.8rem; text-align: center; }
.soon-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.soon-card p { font-size: 1rem; color: hsl(var(--muted-foreground)); margin: 0 0 0.35rem; }
.soon-card .tag { font-size: 1.05rem; color: hsl(var(--primary)); font-style: italic; letter-spacing: 0.04em; }

/* CONTACT */
.contact { background: hsl(0 0% 4%); }
.list-copy {
  max-width: 28rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: hsl(40 16% 78%);
  line-height: 1.55;
}
.list-form {
  max-width: 22rem;
  margin: 1.75rem auto 0;
  text-align: left;
}
.list-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.85rem;
}
.list-form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  background: hsl(0 0% 6%);
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.7rem 0.75rem;
}
.list-form .btn { width: 100%; margin-top: 0.25rem; }
.list-note {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin: 0.85rem 0 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.list-thanks {
  margin: 1.5rem auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: hsl(40 20% 90%);
}

/* FOOTER */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
}
.footer img { height: 13.5rem; margin: 0 auto 1rem; }
.footer .brand {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; margin: 1.25rem 0; }
.footer-links a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.footer-links a:hover { color: hsl(var(--primary)); }

/* CART */
.cart-overlay {
  position: fixed; inset: 0; z-index: 70;
  background: hsl(0 0% 0% / 0.7);
}
.cart-overlay[hidden] { display: none; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 71;
  width: min(28rem, 100%);
  background: hsl(var(--card));
  border-left: 1px solid hsl(var(--border));
  display: flex; flex-direction: column;
}
.cart-drawer[hidden] { display: none; }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  font-family: var(--font-serif); font-size: 1.15rem;
}
.cart-body { flex: 1; overflow: auto; padding: 1rem 1.25rem; }
.cart-empty {
  height: 100%; display: flex; align-items: center; justify-content: center;
  color: hsl(var(--muted-foreground)); font-size: 0.875rem;
}
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid hsl(var(--border)); }
.cart-line img { width: 64px; height: 64px; object-fit: cover; background: hsl(var(--muted)); }
.cart-line h5 { font-family: var(--font-sans); font-size: 0.8rem; margin: 0 0 0.2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cart-line .var { font-size: 11px; color: hsl(var(--muted-foreground)); }
.qty { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; }
.qty button { width: 22px; height: 22px; border: 1px solid hsl(var(--border)); }
.cart-foot { padding: 1rem 1.25rem 1.5rem; border-top: 1px solid hsl(var(--border)); }
.sub { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; }
.cart-note { font-size: 11px; color: hsl(var(--muted-foreground)); margin: 0.6rem 0 0; }

/* POLICIES */
.policies { padding: 6rem 1rem 4rem; max-width: 48rem; margin: 0 auto; }
.back { display: inline-flex; align-items: center; gap: 0.4rem; color: hsl(var(--muted-foreground)); font-size: 0.875rem; margin-bottom: 2rem; }
.back:hover { color: hsl(var(--primary)); }
.policies h1 { font-size: 2rem; }
.policy { margin: 2.5rem 0; }
.policy h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.policy h2.warn { color: hsl(var(--destructive)); }
.policy p, .policy li { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
.policy ul { list-style: none; padding: 0; }
.policy li { display: flex; gap: 0.75rem; margin: 0.7rem 0; }
.policy li .b { color: hsl(var(--primary)); }
.policy strong { color: hsl(var(--foreground)); font-weight: 600; }
.return-box { background: hsl(var(--muted) / 0.3); padding: 1rem; border-radius: 2px; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.policy-close { text-align: center; padding-top: 2rem; border-top: 1px solid hsl(var(--border)); margin-top: 2rem; }
.policy-close .regards { font-family: var(--font-serif); font-style: italic; color: hsl(var(--muted-foreground)); }
.policy-close .sign { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: hsl(var(--primary)); margin-top: 0.5rem; }
