/* ====================================================================
   SKUNKY BREW — Design System v2
   "Taste of Chaos" — punk-cartoon canned tea brand
   Built for: skunkybrew.com (Hostinger static deploy)
   Audience: 16+ adult, loud, irreverent, retail-shelf credibility
   ==================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Black base — matte can finish */
  --c-void:       #000000;
  --c-coal:       #0A0A0A;
  --c-ink:        #14141A;
  --c-ink-soft:   #1F1F26;
  --c-mist:       #6B6B75;
  --c-line:       rgba(250,250,245,0.10);
  --c-line-strong:rgba(250,250,245,0.28);
  --c-bone:       #FAFAF5;          /* warm white text */

  /* Flavor accents — pulled directly from can art */
  --c-matcha:     #B5F23B;          /* Emerald Funk green */
  --c-matcha-deep:#7FB814;
  --c-purple:     #B96BFF;          /* Midnight Matcha purple */
  --c-purple-deep:#7B2BD9;
  --c-passion:    #FF2D7A;          /* Psycho Passion pink */
  --c-passion-deep:#C0185D;
  --c-gold:       #F9C42F;          /* Skunky's tooth + chain */

  /* Default brand accent (rotates per section) */
  --c-accent:     var(--c-matcha);
  --c-accent-deep:var(--c-matcha-deep);

  /* Type */
  --f-display: "Anton", "Bebas Neue", "Impact", system-ui, sans-serif;
  --f-stencil: "Bungee", "Black Ops One", "Anton", system-ui, sans-serif;
  --f-marker:  "Permanent Marker", "Anton", system-ui, sans-serif;
  --f-body:    "Inter", "Helvetica Neue", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container:   1280px;
  --gap-xs: 8px;
  --gap-s:  16px;
  --gap-m:  24px;
  --gap-l:  48px;
  --gap-xl: 96px;

  --shadow-pop: 0 12px 30px rgba(0,0,0,0.6);
  --shadow-glow-matcha: 0 0 64px rgba(181,242,59,0.35);
  --shadow-glow-purple: 0 0 64px rgba(185,107,255,0.4);
  --shadow-glow-passion: 0 0 64px rgba(255,45,122,0.4);
}

/* Section-scoped flavor theming */
.theme-matcha  { --c-accent: var(--c-matcha);  --c-accent-deep: var(--c-matcha-deep); }
.theme-purple  { --c-accent: var(--c-purple);  --c-accent-deep: var(--c-purple-deep); }
.theme-passion { --c-accent: var(--c-passion); --c-accent-deep: var(--c-passion-deep); }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-bone);
  background: var(--c-void);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 0.95; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- 3. Typography ---------- */
.eyebrow {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: inline-block;
}
.h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 12vw, 200px);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 112px);
  text-transform: uppercase;
  line-height: 0.9;
}
.h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  text-transform: uppercase;
}
.lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(250,250,245,0.78);
  max-width: 60ch;
}
.brush {
  font-family: var(--f-marker);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--c-accent);
  display: inline-block;
  transform: rotate(-2deg);
}

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.section--bone   { background: var(--c-bone); color: var(--c-ink); }
.section--bone .lead { color: var(--c-ink-soft); }
.section--bone .eyebrow { color: var(--c-passion-deep); }

.section--coal   { background: var(--c-coal); }
.section--ink    { background: var(--c-ink); }
.section--void   { background: var(--c-void); }

.grid { display: grid; gap: var(--gap-m); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- 5. Buttons (sharp corners, punk attitude) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .12s ease, box-shadow .15s ease, background .12s ease, color .12s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translate3d(0,-2px,0); }
.btn:active { transform: translate3d(0,0,0); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-coal);
  border-color: var(--c-accent);
}
.btn--primary:hover { box-shadow: 0 0 30px var(--c-accent); }

.btn--ghost {
  background: transparent;
  color: var(--c-bone);
  border-color: var(--c-line-strong);
}
.btn--ghost:hover { border-color: var(--c-bone); background: rgba(250,250,245,0.06); }

.btn--ink { background: var(--c-coal); color: var(--c-bone); border-color: var(--c-coal); }
.btn--ink:hover { background: var(--c-ink); }

.btn--small { padding: 12px 22px; font-size: 14px; letter-spacing: 1.5px; }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-header__logo {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 12px;
  color: var(--c-bone);
  text-transform: uppercase;
}
.site-header__logo .stripe {
  display: inline-block;
  width: 14px; height: 32px;
  background: linear-gradient(to bottom, #fff 0% 50%, #000 50% 100%);
}
.site-header__logo .brew { color: var(--c-matcha); }

.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-bone);
}
.site-nav a:hover { color: var(--c-matcha); }
@media (max-width: 800px) { .site-nav { display: none; } }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(123,43,217,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(127,184,20,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(255,45,122,0.12) 0%, transparent 55%),
    var(--c-void);
  padding: 64px 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/></svg>");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--gap-l);
  align-items: center;
  width: 100%;
}
@media (max-width: 1000px) { .hero__inner { grid-template-columns: 1fr; gap: var(--gap-l); } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(181,242,59,0.10);
  border: 1px solid rgba(181,242,59,0.4);
  color: var(--c-matcha);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pulse {
  width: 8px; height: 8px; background: var(--c-matcha); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(181,242,59,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(181,242,59,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(181,242,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(181,242,59,0); }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: var(--c-bone);
}
.hero__title .matcha  { color: var(--c-matcha); }
.hero__title .purple  { color: var(--c-purple); }
.hero__title .passion { color: var(--c-passion); }

.hero__lede {
  font-size: clamp(18px, 1.6vw, 23px);
  color: rgba(250,250,245,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 480px;
}
.hero__lineup {
  width: 100%;
  aspect-ratio: 16 / 12;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(185,107,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(181,242,59,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,45,122,0.4) 0%, transparent 50%),
    var(--c-coal);
  border: 2px dashed rgba(250,250,245,0.2);
  display: grid; place-items: center;
  color: rgba(250,250,245,0.6);
  font-family: var(--f-mono);
  font-size: 13px;
  text-align: center;
  padding: 32px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero__lineup img { max-width: 100%; max-height: 100%; }

.hero__trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  color: rgba(250,250,245,0.55);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* ---------- 8. Marquee strip ---------- */
.marquee {
  background: var(--c-matcha);
  color: var(--c-coal);
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  border-top: 3px solid var(--c-coal);
  border-bottom: 3px solid var(--c-coal);
}
.marquee--purple { background: var(--c-purple); }
.marquee--passion { background: var(--c-passion); color: var(--c-bone); }
.marquee__track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.marquee span { padding: 0 24px; }
.marquee .dot { color: var(--c-coal); }
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ---------- 9. Section header ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}
.section-head__title { max-width: 800px; }

/* ---------- 10. Flavor cards ---------- */
.flavor-card {
  position: relative;
  padding: 32px 28px 36px;
  border: 2px solid var(--c-line-strong);
  background: var(--c-coal);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.flavor-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--c-accent) 0%, transparent 65%);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity .25s ease;
}
.flavor-card:hover { transform: translate3d(0,-4px,0); border-color: var(--c-accent); }
.flavor-card:hover::before { opacity: 0.18; }
.flavor-card__can {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.5) 100%),
    var(--c-ink);
  display: grid; place-items: center;
  margin-bottom: 24px;
  position: relative;
  color: rgba(250,250,245,0.4);
  font-family: var(--f-mono);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px dashed rgba(250,250,245,0.15);
}
.flavor-card__can img { max-width: 100%; max-height: 100%; object-fit: contain; }
.flavor-card__name {
  font-family: var(--f-display);
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.flavor-card__type {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,250,245,0.6);
  margin-bottom: 14px;
}
.flavor-card__desc {
  font-size: 15px;
  color: rgba(250,250,245,0.85);
  margin-bottom: 20px;
  flex: 1;
}
.flavor-card__vote {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}

/* ---------- 11. Molecules / ingredients ---------- */
.molecules {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--c-coal);
  overflow: hidden;
}
.molecules::before {
  /* Lifestyle scene placeholder slot */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(181,242,59,0.08) 0%, transparent 70%),
    var(--c-void);
  opacity: 0.6;
}
.molecules__inner { position: relative; z-index: 1; }
.molecule-card {
  border: 2px solid var(--c-line);
  padding: 32px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .2s ease, transform .2s ease;
}
.molecule-card:hover { border-color: var(--c-matcha); transform: translate3d(0,-3px,0); }
.molecule-card__name {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-matcha);
  margin-bottom: 8px;
}
.molecule-card__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,245,0.5);
  margin-bottom: 14px;
}
.molecule-card__desc { font-size: 15px; color: rgba(250,250,245,0.85); margin: 0; }

/* ---------- 12. Lifestyle gallery ---------- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.lifestyle-grid__cell {
  background: var(--c-ink);
  border: 1px dashed rgba(250,250,245,0.15);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  color: rgba(250,250,245,0.5);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 16px;
  text-transform: uppercase;
}
.lifestyle-grid__cell img {
  width: 100%; height: 100%; object-fit: cover;
}
.lifestyle-grid__cell--hero { grid-row: span 2; }
.lifestyle-grid__cell .caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-marker);
  font-size: 22px;
  color: var(--c-bone);
  l