/*
  xlongisland — NYC street / graffiti concrete
  Palette: asphalt black · amber gold · hot pink · electric cyan · lime
  Fonts: Bebas Neue (display) · Inter (body)
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  /* Concrete palette — warm dark, not cool/digital */
  --bg:          #0f0e0c;
  --bg-warm:     #141210;
  --surface:     #1a1815;
  --surface-2:   #211f1c;
  --surface-3:   #2a2724;
  --border:      #2e2b27;
  --border-hi:   #403c37;

  /* Electric blue accents — gorilla logo palette */
  --amber:       #0077FF;
  --amber-lo:    rgba(0,119,255,.12);
  --amber-mid:   rgba(0,119,255,.24);
  --pink:        #00AAFF;
  --pink-lo:     rgba(0,170,255,.10);
  --cyan:        #00D4FF;
  --cyan-lo:     rgba(0,212,255,.10);
  --lime:        #00EEFF;
  --lime-lo:     rgba(0,238,255,.10);
  --red:         #e03737;
  --tag:         #FFE600;
  --tag-lo:      rgba(255,230,0,.12);

  /* Ink — warm off-white, like aged paper/concrete */
  --ink:         #f2ede6;
  --ink-muted:   #9a9088;
  --ink-dim:     #5a5248;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Hard edges — stencil/concrete aesthetic */
  --r-xs: 1px;
  --r-sm: 2px;
  --r-md: 2px;
  --r-lg: 4px;

  /* Motion */
  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-out:    cubic-bezier(0,.55,.45,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── BASE ── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background-color: #080a10; /* fallback while image loads */
  background-image:
    linear-gradient(rgba(0,10,30,.72), rgba(0,0,10,.62)),
    url('/assets/img/alley-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient electric-glow bleeds */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 48% 38% at 2%   20%, rgba(0,100,255,.09)  0%, transparent 100%),
    radial-gradient(ellipse 38% 52% at 98%  62%, rgba(0,180,255,.07)  0%, transparent 100%),
    radial-gradient(ellipse 60% 28% at 48%  96%, rgba(0,212,255,.04)  0%, transparent 100%),
    radial-gradient(ellipse 32% 44% at 88%   6%, rgba(0,119,255,.06)  0%, transparent 100%),
    radial-gradient(ellipse 28% 30% at 12%  78%, rgba(0,150,255,.04)  0%, transparent 100%);
}

/* Global concrete grain / film noise */
body::after {
  content: '';
  position: fixed;
  inset: -120px;
  pointer-events: none;
  z-index: 9997;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.50'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}
p { line-height: 1.7; }

/* ── LAYOUT ── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide  { max-width: 1440px; margin: 0 auto; }
.container--narrow{ max-width: 780px;  margin: 0 auto; padding: 0 1.5rem; }

/* ── SCROLL REVEAL ── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for grid children */
.product-grid  .reveal-item:nth-child(2) { transition-delay: .06s; }
.product-grid  .reveal-item:nth-child(3) { transition-delay: .12s; }
.product-grid  .reveal-item:nth-child(4) { transition-delay: .18s; }
.product-grid  .reveal-item:nth-child(5) { transition-delay: .08s; }
.product-grid  .reveal-item:nth-child(6) { transition-delay: .14s; }
.product-grid  .reveal-item:nth-child(7) { transition-delay: .20s; }
.product-grid  .reveal-item:nth-child(8) { transition-delay: .26s; }
.why-grid      .reveal-item:nth-child(2) { transition-delay: .08s; }
.why-grid      .reveal-item:nth-child(3) { transition-delay: .16s; }
.why-grid      .reveal-item:nth-child(4) { transition-delay: .06s; }
.why-grid      .reveal-item:nth-child(5) { transition-delay: .14s; }
.why-grid      .reveal-item:nth-child(6) { transition-delay: .22s; }
.review-grid   .reveal-item:nth-child(2) { transition-delay: .10s; }
.review-grid   .reveal-item:nth-child(3) { transition-delay: .20s; }
.category-grid .reveal-item:nth-child(2) { transition-delay: .06s; }
.category-grid .reveal-item:nth-child(3) { transition-delay: .12s; }
.category-grid .reveal-item:nth-child(4) { transition-delay: .08s; }
.category-grid .reveal-item:nth-child(5) { transition-delay: .14s; }
.category-grid .reveal-item:nth-child(6) { transition-delay: .20s; }
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.6rem;
  border-radius: var(--r-xs);
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .18s, border-color .18s, color .18s, transform .18s var(--ease), box-shadow .18s;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
  position: relative;
  isolation: isolate;
}

/* Spray paint blob on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: -22px -32px;
  border-radius: 62% 38% 55% 45% / 50% 58% 42% 50%;
  opacity: 0;
  transform: scale(.35) rotate(-10deg);
  transition: opacity .20s ease, transform .35s var(--ease-spring);
  z-index: -1;
  pointer-events: none;
  filter: blur(16px);
}
.btn:hover::before,
.btn:focus-visible::before { opacity: 1; transform: scale(1.1) rotate(4deg); }

.btn--primary { background: var(--amber); color: #ffffff; border-color: var(--amber); }
.btn--primary::before {
  background: radial-gradient(ellipse at 46% 54%,
    rgba(80,160,255,.95) 0%, rgba(0,100,255,.72) 36%, rgba(0,60,200,.38) 60%, transparent 76%);
}
.btn--primary:hover { background: #0088ff; border-color: #0088ff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,119,255,.45); }

.btn--lime { background: var(--lime); color: #080808; border-color: var(--lime); }
.btn--lime::before {
  background: radial-gradient(ellipse at 46% 54%,
    rgba(80,240,255,.90) 0%, rgba(0,200,255,.65) 38%, transparent 72%);
}
.btn--lime:hover { background: #00eeff; border-color: #00eeff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,238,255,.30); }

.btn--ghost { background: transparent; color: var(--ink-muted); border-color: var(--border-hi); }
.btn--ghost::before {
  background: radial-gradient(ellipse at 46% 54%,
    rgba(220,230,255,.55) 0%, rgba(160,185,255,.35) 40%, transparent 70%);
  filter: blur(14px);
}
.btn--ghost:hover { border-color: var(--ink-muted); color: var(--ink); }

.btn--outline { background: transparent; color: var(--amber); border-color: var(--amber); }
.btn--outline::before {
  background: radial-gradient(ellipse at 46% 54%,
    rgba(80,160,255,.88) 0%, rgba(0,100,255,.60) 38%, transparent 72%);
}
.btn--outline:hover { background: var(--amber); color: #fff; }

.btn--danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn--danger::before {
  background: radial-gradient(ellipse at 46% 54%,
    rgba(255,80,80,.88) 0%, rgba(200,30,30,.60) 40%, transparent 72%);
}
.btn--danger:hover { background: #c42e2e; border-color: #c42e2e; }

.btn--sm  { padding: .35rem .9rem;  font-size: .78rem; }
.btn--lg  { padding: .9rem 2.5rem;  font-size: 1.15rem; }

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(255,178,0,.10) 0%, transparent 65%),
    rgba(8,7,5,.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
}
.age-gate.hidden { display: none; }

.age-gate__card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 0;
  padding: 3rem 2.75rem 2.25rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Vertical gradient stripe — left edge, electric style */
.age-gate__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--amber), #0044cc);
  box-shadow: 0 0 12px rgba(0,119,255,.6);
}
.age-gate__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)$ opacity='.22'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.age-gate__spray {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,119,255,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.age-gate__logo {
  display: block;
  margin: 0 auto 1.25rem;
  height: 100px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgba(0,119,255,.60));
}
.age-gate__badge {
  display: block;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -.03em;
  margin-bottom: .25rem;
  position: relative;
  z-index: 1;
}
.age-gate__card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .9rem;
  position: relative;
  z-index: 1;
}
.age-gate__card p {
  color: var(--ink-muted);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.age-gate__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.age-gate__actions .btn { min-width: 145px; }
.age-gate__card small {
  display: block;
  color: var(--ink-dim);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
  position: relative;
  z-index: 1;
}

/* ── ANNOUNCEMENT MARQUEE ── */
.announcement-bar {
  background: var(--amber);
  height: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 0 18px rgba(0,119,255,.35);
}
.announcement-bar__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.announcement-bar:hover .announcement-bar__track {
  animation-play-state: paused;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.announcement-bar__inner span {
  font-family: var(--font-display);
  font-size: .70rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #e8f4ff;
  padding: 0 1.1rem;
}
.announcement-bar__sep {
  color: rgba(232,244,255,.35) !important;
  font-size: .5rem !important;
  padding: 0 .25rem !important;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,14,12,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color .25s;
}
.site-header__main {
  border-bottom: 1px solid var(--border);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 1.5rem;
  transition: height .25s var(--ease);
}
/* Compress on scroll */
.site-header.is-scrolled .site-header__row { height: 50px; }

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand__logo { height: 42px; width: auto; display: block; transition: height .25s, filter .25s; filter: drop-shadow(0 0 6px rgba(0,119,255,.50)); }
.brand__logo:hover { filter: drop-shadow(0 0 12px rgba(0,180,255,.75)); }
.site-header.is-scrolled .brand__logo { height: 36px; }

.main-nav__list {
  display: flex;
  align-items: center;
}
.main-nav__list li a {
  display: block;
  padding: .45rem .85rem;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .18s;
}
.main-nav__list li a:hover { color: var(--ink); }

.header-tools {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-tools__link {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  padding: .32rem .9rem;
  border-radius: var(--r-xs);
  transition: background .18s, color .18s;
}
.header-tools__link:hover { background: var(--amber); color: #080808; }

.nav-toggle {
  display: none;
  color: var(--ink);
  padding: .2rem .35rem;
  line-height: 1;
}

/* Category sub-nav strip */
.cat-nav {
  background: var(--bg-warm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav__inner {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
}
.cat-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0 1rem;
  height: 100%;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, border-color .18s;
  flex-shrink: 0;
}
.cat-nav__btn:hover  { color: var(--ink-muted); }
.cat-nav__btn.is-active { color: var(--amber); border-bottom-color: var(--amber); }
.cat-nav__icon { font-size: .85rem; opacity: .8; }

/* Mobile nav overlay */
.main-nav.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(8,7,5,.98);
  z-index: 200;
  padding: 2rem 2rem 3rem;
  overflow-y: auto;
}
.main-nav.is-open .main-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 4rem;
}
.main-nav.is-open .main-nav__list li a {
  font-size: 3.5rem;
  letter-spacing: .04em;
  color: var(--ink);
  padding: .35rem 0;
}
.main-nav.is-open .main-nav__list li a:hover { color: var(--amber); }
.nav-close {
  display: none;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--ink-muted);
  padding: .25rem;
  line-height: 1;
}
.main-nav.is-open .nav-close { display: block; }
.main-nav.is-open .nav-close:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent; /* alley photo bleeds through from body */
}

/* Concrete wall grain */
.hero__concrete {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  background-size: 280px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Electric ambient — like lightning glowing off a dark wall */
.hero__spray {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 8%  58%, rgba(0,100,255,.15)  0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 15%, rgba(0,200,255,.07)  0%, transparent 55%),
    radial-gradient(ellipse 38% 55% at 0%  38%, rgba(0,130,255,.09)  0%, transparent 60%),
    radial-gradient(ellipse 32% 42% at 96% 72%, rgba(0,212,255,.06)  0%, transparent 60%),
    radial-gradient(ellipse 22% 14% at 5%   4%, rgba(255,230,0,.07)  0%, transparent 70%),
    radial-gradient(ellipse 16% 22% at 95% 90%, rgba(255,230,0,.06)  0%, transparent 70%),
    radial-gradient(ellipse 28% 10% at 50% 98%, rgba(255,230,0,.04)  0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Giant ghost "XLI" — electric neon outline */
.hero__ghost {
  position: absolute;
  bottom: -.05em;
  right: -.04em;
  font-family: var(--font-display);
  font-size: clamp(16rem, 38vw, 36rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,119,255,.10);
  text-shadow: 0 0 120px rgba(0,100,255,.06);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.02em;
  user-select: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 1rem;
}
.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--tag);
  flex-shrink: 0;
}

/* THE MURAL — building-scale Bebas headline */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 17rem);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0;
}
.hero__title-line { display: block; }

/* "Loudest" — the money word, in electric blue with lightning glow */
.hero__title-accent {
  font-style: normal;
  color: var(--amber);
  text-shadow:
    0 0 60px  rgba(0,119,255,.55),
    0 0 160px rgba(0,180,255,.25),
    0 0 300px rgba(0,100,255,.12);
}

/* Stamp line — stencil-stamped sub-headline */
.hero__stamp {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: .6rem;
  margin-bottom: 1.4rem;
}

.hero__divider {
  width: 44px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 1.4rem;
}

.hero__sub {
  font-size: .95rem;
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats row */
.hero__stats {
  display: inline-flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
}
.hero__stat span {
  font-size: .65rem;
  color: var(--ink-muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .15rem;
  display: block;
}

/* ── SECTIONS ── */
.section        { padding: 5rem 0; }
.section--tight { padding: 3rem 0; }
.section--dark  { background: var(--surface); position: relative; }

/* Concrete grain on dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: .65;
}
.section--dark > * { position: relative; z-index: 1; }

/* Section heads */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head__kicker {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: .45rem;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
  color: var(--ink);
}
.section-head__link {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
  opacity: .85;
  transition: opacity .2s;
}
.section-head__link:hover { opacity: 1; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-grid__empty {
  grid-column: 1 / -1;
  color: var(--ink-muted);
  padding: 2rem 0;
}

/* ── PRODUCT CARD ── */
.card-product {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  transition: border-color .22s var(--ease), transform .22s var(--ease);
  border-radius: 0;
}
.card-product:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.card-product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: 0;
}
.card-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.card-product:hover .card-product__media img { transform: scale(1.06); }
.card-product__media-ph {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 38% 35%, var(--ph-tint, #c98900), #0b0800 72%);
}

/* Badges */
.card-product__badges {
  position: absolute;
  top: .6rem;
  left: .6rem;
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  z-index: 1;
}
.card-product__badge {
  background: var(--amber);
  color: #080808;
  font-family: var(--font-display);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .16rem .45rem;
  border-radius: 0;
}

/* Type badge — sativa/indica/hybrid */
.card-product__type {
  position: absolute;
  top: .6rem;
  right: .6rem;
  font-family: var(--font-display);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 0;
  z-index: 1;
}
.card-product__type--sativa  { background: rgba(188,255,0,.14); color: var(--lime); border: 1px solid rgba(188,255,0,.25); }
.card-product__type--indica  { background: rgba(157,74,255,.14); color: #b980ff;    border: 1px solid rgba(157,74,255,.25); }
.card-product__type--hybrid  { background: rgba(255,178,0,.14); color: var(--amber); border: 1px solid rgba(255,178,0,.25); }

.card-product__body {
  padding: 1rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-product__category {
  font-family: var(--font-display);
  font-size: .60rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: .25rem;
}
.card-product__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: .4rem;
}
.card-product__desc {
  font-size: .78rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: .8rem;
}

/* Tiers */
.card-product__tiers {
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .28rem;
}
.card-product__tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: .75rem;
}
.card-product__tier span { color: var(--ink-muted); }
.card-product__tier strong {
  font-family: var(--font-display);
  font-size: .92rem;
  color: var(--lime);
  letter-spacing: .05em;
}
.card-product__tiers--single .card-product__tier strong { font-size: 1.2rem; }

/* Meta */
.card-product__meta {
  font-size: .65rem;
  color: var(--ink-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .45rem;
}

/* Filter hidden state */
.card-product.is-hidden { display: none; }

/* ── FEATURE STRIPS ── */
.section--features { padding: 3rem 0; }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
}
.feature:last-child { border-bottom: none; }
.feature--flip .feature__body { order: -1; }

.feature__art {
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.feature__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 38% 40%, rgba(0,119,255,.18) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  background-size: cover, 200px;
  z-index: 0;
}
.feature__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg, transparent, transparent 34px,
    rgba(0,119,255,.015) 34px, rgba(0,119,255,.015) 35px
  );
  z-index: 1;
}
.feature__art--leaf::before {
  background:
    radial-gradient(ellipse at 62% 38%, rgba(0,150,255,.20) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  background-size: cover, 200px;
}

/* Stencil numbers inside feature art */
.feature__art-num {
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,119,255,.18);
  z-index: 2;
  letter-spacing: -.02em;
  pointer-events: none;
  user-select: none;
}
.feature__art-num--xl {
  font-size: 5rem;
  bottom: .75rem;
  right: 1.25rem;
  -webkit-text-stroke: 1px rgba(0,119,255,.22);
}

.feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: .85rem;
}
.feature__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tag);
  flex-shrink: 0;
}
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: .95;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.feature__body > p {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: .85rem;
}
.feature__body > p:last-of-type { margin-bottom: 0; }

.feature__meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.feature__meta div { display: flex; flex-direction: column; }
.feature__meta strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
}
.feature__meta span {
  font-size: .65rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .15rem;
}

/* ── CATEGORY STRIP ── */
.category-strip {
  background: var(--bg);
  padding: 5rem 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.category-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  text-decoration: none;
  border-radius: 0;
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.08) 100%);
  z-index: 1;
  transition: opacity .35s;
}
.category-card:hover::after { opacity: .7; }

.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}
.category-card:hover .category-card__bg { transform: scale(1.07); }

/* Stencil number overlay */
.category-card__num {
  position: absolute;
  top: .75rem;
  right: .9rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.09);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* Category backgrounds */
.category-card[data-cat="flower"]       .category-card__bg { background: radial-gradient(ellipse at 38% 40%, #1e5c08 0%, #0b1f04 60%), linear-gradient(135deg, #0d2206, #1a3d0a); }
.category-card[data-cat="pre-rolls"]    .category-card__bg { background: radial-gradient(ellipse at 55% 45%, #5a2e08 0%, #1c0d03 60%), linear-gradient(135deg, #1f0d05, #3d1a08); }
.category-card[data-cat="edibles"]      .category-card__bg { background: radial-gradient(ellipse at 42% 38%, #701535 0%, #200510 60%), linear-gradient(135deg, #1a0510, #5a1030); }
.category-card[data-cat="concentrates"] .category-card__bg { background: radial-gradient(ellipse at 50% 32%, #5c5500 0%, #181700 60%), linear-gradient(135deg, #141400, #3d3900); }
.category-card[data-cat="vapes"]        .category-card__bg { background: radial-gradient(ellipse at 65% 42%, #0c3a5a 0%, #050f1a 60%), linear-gradient(135deg, #060f1c, #103050); }
.category-card[data-cat="merch"]        .category-card__bg { background: radial-gradient(ellipse at 38% 55%, #3c0e6a 0%, #0e0520 60%), linear-gradient(135deg, #0c0518, #2e0d58); }

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.4rem 1.3rem;
}
.category-card__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: .4rem;
  display: block;
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .25rem;
  transition: color .25s;
}
.category-card:hover h3 { color: var(--amber); }
.category-card p {
  font-size: .65rem;
  color: rgba(242,237,230,.5);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── WHY US ── */
.section--why { padding: 5rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.why-item {
  background: var(--surface);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  transition: border-color .25s var(--ease), background .25s, border-left-color .25s;
  border-radius: 0;
}
.why-item:hover {
  border-color: rgba(255,178,0,.10);
  border-left-color: var(--amber);
  background: var(--surface-2);
}
.why-item__icon {
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: .85rem;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: .5rem;
}
.why-item p {
  font-size: .82rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── STORY ── */
.section--story { padding: 5rem 0; }

/* ── REVIEWS ── */
.section--reviews {
  padding: 5rem 0;
}
.section--reviews::after {
  /* Override body grain z-index for this section only */
  z-index: 9997;
}

/* Electric glow behind reviews */
.section--reviews .container::before {
  content: '';
  position: absolute;
  inset: -5rem -1.5rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 8%  50%, rgba(0,100,255,.06)  0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 50%, rgba(0,170,255,.06) 0%, transparent 55%);
}
.section--reviews .container { position: relative; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--surface-2);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
  transition: border-color .25s var(--ease);
}
.review-card:hover { border-color: var(--border-hi); }

/* Per-card electric glows */
.review-card__spray {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.review-card:nth-child(1) .review-card__spray {
  background: radial-gradient(ellipse 70% 55% at 20% 25%, rgba(0,119,255,.10) 0%, transparent 60%);
}
.review-card:nth-child(2) .review-card__spray {
  background: radial-gradient(ellipse 70% 55% at 80% 25%, rgba(0,170,255,.09) 0%, transparent 60%);
}
.review-card:nth-child(3) .review-card__spray {
  background: radial-gradient(ellipse 70% 55% at 50% 25%, rgba(0,212,255,.09) 0%, transparent 60%);
}
.review-card:hover .review-card__spray { opacity: 1; }

.review-card__stars {
  color: var(--amber);
  font-size: .95rem;
  letter-spacing: .06em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.review-card__quote {
  font-size: .86rem;
  color: var(--ink-muted);
  line-height: 1.72;
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--surface-3);
  border: 1px solid var(--border-hi);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--amber);
  flex-shrink: 0;
}
.review-card__author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.review-card__author strong {
  font-size: .80rem;
  color: var(--ink);
  font-weight: 600;
}
.review-card__author span {
  font-size: .64rem;
  color: var(--ink-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.review-card__tag {
  font-family: var(--font-display);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 0;
  flex-shrink: 0;
}
.review-card:nth-child(1) .review-card__tag { background: var(--amber-lo); color: var(--amber); border: 1px solid rgba(0,119,255,.25); }
.review-card:nth-child(2) .review-card__tag { background: var(--pink-lo);  color: var(--pink);  border: 1px solid rgba(0,170,255,.25); }
.review-card:nth-child(3) .review-card__tag { background: var(--cyan-lo);  color: var(--cyan);  border: 1px solid rgba(0,212,255,.25); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.30'/%3E%3C/svg%3E");
  background-size: 240px;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: .7;
}
.cta-band__spray {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,119,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  text-align: center;
}
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: .75rem;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  color: var(--ink);
  margin-bottom: 2.5rem;
  letter-spacing: .01em;
}
.cta-band__title em { font-style: normal; color: var(--amber); display: block; }
.cta-band__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── FOOTER ── */
.site-footer {
  background: #080705;
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: .75rem; }
.footer-brand__tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: .5rem;
}
.footer-brand > p {
  font-size: .78rem;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .78rem;
  color: var(--ink-dim);
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: .72rem;
  color: var(--ink-dim);
}
.disclaimer {
  font-size: .63rem;
  color: var(--ink-dim);
  opacity: .4;
  line-height: 1.6;
}

/* ── PRE-ROLLS COMING SOON ── */
.section--prerolls { border-top: 1px solid var(--border); }

.prerolls-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px dashed var(--border-hi);
  border-radius: 4px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(0,119,255,.04) 12px,
    rgba(0,119,255,.04) 24px
  );
}

.prerolls-soon__inner {
  text-align: center;
}

.prerolls-soon__label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: .06em;
  color: var(--tag);
  line-height: 1;
  margin-bottom: .75rem;
}

.prerolls-soon__sub {
  font-size: .8rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── GRAFFITI EXTRAS ── */

/* Spray spatter dots at hero corners — neon yellow left, blue right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle 2px  at  5%  11%, rgba(255,230,0,.85) 0%, transparent 100%),
    radial-gradient(circle 3px  at  7%   7%, rgba(255,230,0,.60) 0%, transparent 100%),
    radial-gradient(circle 1px  at  3%  19%, rgba(255,230,0,.75) 0%, transparent 100%),
    radial-gradient(circle 2px  at  9%   5%, rgba(255,230,0,.55) 0%, transparent 100%),
    radial-gradient(circle 4px  at  2%  27%, rgba(255,230,0,.30) 0%, transparent 100%),
    radial-gradient(circle 1px  at 12%  15%, rgba(255,230,0,.70) 0%, transparent 100%),
    radial-gradient(circle 2px  at  4%  33%, rgba(255,230,0,.45) 0%, transparent 100%),
    radial-gradient(circle 1px  at  8%  22%, rgba(255,230,0,.60) 0%, transparent 100%),
    radial-gradient(circle 1px  at  6%  40%, rgba(255,230,0,.35) 0%, transparent 100%),
    radial-gradient(circle 3px  at 93%  13%, rgba(0,119,255,.75)  0%, transparent 100%),
    radial-gradient(circle 2px  at 97%   8%, rgba(0,119,255,.60)  0%, transparent 100%),
    radial-gradient(circle 1px  at 89%  23%, rgba(0,119,255,.70)  0%, transparent 100%),
    radial-gradient(circle 2px  at 99%  18%, rgba(0,119,255,.55)  0%, transparent 100%),
    radial-gradient(circle 4px  at 91%  32%, rgba(0,119,255,.35)  0%, transparent 100%),
    radial-gradient(circle 1px  at 86%  11%, rgba(0,119,255,.80)  0%, transparent 100%),
    radial-gradient(circle 2px  at 95%  26%, rgba(0,119,255,.50)  0%, transparent 100%),
    radial-gradient(circle 1px  at 88%   6%, rgba(0,119,255,.85)  0%, transparent 100%);
}

/* Paint-drip edge at hero bottom — yellow + blue stalactites */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 64'%3E%3Cpath d='M18 0 C18 0 21 32 21 46 C21 60 16 63 18 63 C20 63 15 60 15 46 C15 32 18 0 18 0Z' fill='%23FFE600' opacity='.65'/%3E%3Cpath d='M88 0 C88 0 90 20 90 30 C90 42 86 44 88 44 C90 44 86 42 86 30 C86 20 88 0 88 0Z' fill='%230077FF' opacity='.60'/%3E%3Cpath d='M168 0 C168 0 172 40 172 54 C172 63 167 64 169 64 C171 64 166 63 166 54 C166 40 168 0 168 0Z' fill='%23FFE600' opacity='.72'%3E%3Cpath d='M248 0 C248 0 251 26 251 38 C251 52 246 55 248 55 C250 55 245 52 245 38 C245 26 248 0 248 0Z' fill='%230077FF' opacity='.55'/%3E%3Cpath d='M330 0 C330 0 333 46 333 58 C333 64 329 64 331 64 C333 64 329 64 329 58 C329 46 330 0 330 0Z' fill='%23FFE600' opacity='.68'/%3E%3Cpath d='M56 0 C56 0 57 14 57 20 C57 28 54 30 56 30 C58 30 55 28 55 20 C55 14 56 0 56 0Z' fill='%23FFE600' opacity='.45'/%3E%3Cpath d='M136 0 C136 0 137 10 137 16 C137 24 134 26 136 26 C138 26 135 24 135 16 C135 10 136 0 136 0Z' fill='%230077FF' opacity='.40'/%3E%3Cpath d='M210 0 C210 0 211 18 211 26 C211 36 208 38 210 38 C212 38 209 36 209 26 C209 18 210 0 210 0Z' fill='%23FFE600' opacity='.50'%3E%3Cpath d='M290 0 C290 0 291 12 291 18 C291 26 288 28 290 28 C292 28 289 26 289 18 C289 12 290 0 290 0Z' fill='%230077FF' opacity='.42'/%3E%3Cpath d='M370 0 C370 0 371 22 371 30 C371 40 368 42 370 42 C372 42 369 40 369 30 C369 22 370 0 370 0Z' fill='%23FFE600' opacity='.52'/%3E%3C/svg%3E");
  background-size: 400px 64px;
  background-repeat: repeat-x;
  background-position: bottom left;
}

/* Diagonal spray-stroke texture on dark sections */
.section--dark {
  position: relative;
}
.section--dark > * { position: relative; z-index: 1; }
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -46deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,.008) 22px,
    rgba(255,255,255,.008) 23px
  );
}

/* Announcement bar hazard-stripe backing */
.announcement-bar {
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 16px,
    rgba(255,230,0,.04) 16px,
    rgba(255,230,0,.04) 17px
  );
}

/* Ghost XLI ₄ bump glow slightly for more wall-tag presence */
.hero__ghost {
  -webkit-text-stroke: 1px rgba(255,230,0,.06);
  text-shadow: 0 0 80px rgba(255,230,0,.04), 0 0 120px rgba(0,100,255,.06);
}

/* ── RESPONSIVE ── */
/* background-attachment: fixed causes repaints on iOS — fall back to scroll */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .feature--flip .feature__body { order: 0; }
  .feature__art { aspect-ratio: 16/7; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 768px) {
  .site-header__row { height: 54px; }
  .main-nav { display: none; }
  .main-nav.is-open { display: block; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
  .hero__title { font-size: clamp(5rem, 22vw, 8.5rem); }
  .hero__ghost { font-size: clamp(12rem, 52vw, 18rem); }
  .hero__stats { gap: 1.75rem; }
  .category-strip { padding: 3.5rem 0; }
}

@media (max-width: 540px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 3/2; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-direction: column; gap: 1.25rem; }
  .cta-band__inner { padding: 4rem 1.5rem; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .section-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
}
