/* ==========================================================================
   Baked Genetics — Stylesheet
   Dark premium backdrop with gold accents echoing the dripping logo.
   ========================================================================== */

:root {
  --bg-0: #050505;
  --bg-1: #0b0b0c;
  --bg-2: #121215;
  --bg-3: #1a1a1f;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f1e8;
  --text-dim: #a6a29a;
  --muted: #6c6a64;

  --gold-1: #f5d76e;
  --gold-2: #d4af37;
  --gold-3: #8a6b1a;
  --gold-gradient: linear-gradient(135deg, #f7e38b 0%, #e6c34a 35%, #b8892a 70%, #f5d76e 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(245, 215, 110, 0.2), rgba(212, 175, 55, 0.05));

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.9);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-accent: 'Permanent Marker', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* --------------------------------------------------------------------------
   Background ambient layers
   -------------------------------------------------------------------------- */
.bg-glow,
.bg-smoke {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-glow {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(245, 215, 110, 0.08), transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(138, 107, 26, 0.12), transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0a0c 40%, #050505 100%);
}

.bg-smoke {
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.02) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0, transparent 25%);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 1rem;
}

.accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.section__lede {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #1a1200;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px -10px rgba(245, 215, 110, 0.55);
}

.btn--ghost {
  border: 1px solid rgba(245, 215, 110, 0.35);
  color: var(--gold-1);
}

.btn--ghost:hover {
  background: rgba(245, 215, 110, 0.08);
  border-color: var(--gold-1);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Age gate
   -------------------------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__card {
  max-width: 440px;
  width: 100%;
  background: linear-gradient(180deg, #121215 0%, #08080a 100%);
  border: 1px solid rgba(245, 215, 110, 0.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(245, 215, 110, 0.15);
}

.age-gate__logo {
  max-width: 220px;
  margin: 0 auto 1.25rem;
}

.age-gate__card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.age-gate__card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.age-gate__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 0.65rem 2.5rem;
}

.nav__brand img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.nav__brand:hover img { transform: scale(1.04); }

.nav__links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav__links a:hover { color: var(--gold-1); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 9rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 30% at 50% 70%, rgba(245, 215, 110, 0.08), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero__logo {
  max-width: min(640px, 85vw);
  margin: 0 auto 2rem;
  filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.5))
          drop-shadow(0 0 80px rgba(245, 215, 110, 0.25));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero__sub {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

@media (max-height: 860px) {
  .hero__scroll { display: none; }
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #0a0a0c, #121215, #0a0a0c);
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold-2);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Sections (general)
   -------------------------------------------------------------------------- */
.section {
  padding: 7rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* --------------------------------------------------------------------------
   Full lineup banner
   -------------------------------------------------------------------------- */
.lineup-banner {
  position: relative;
  margin: 0 0 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}

.lineup-banner::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-gradient);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0.45;
  z-index: -1;
  filter: blur(30px);
}

.lineup-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 215, 110, 0.35);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}

.lineup-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lineup-banner:hover img {
  transform: scale(1.015);
}

.lineup-banner figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.1rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-1);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.lineup-banner:hover figcaption,
.lineup-banner:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* On touch devices, show banner caption persistently */
@media (hover: none) {
  .lineup-banner figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .lineup-banner figcaption {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    padding: 1rem 0.75rem 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   Vape showcase (featured drops)
   -------------------------------------------------------------------------- */
.vape-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.vape-showcase__grid--full {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 540px) {
  .vape-showcase__grid--full { gap: 1.25rem; }
}

@media (min-width: 720px) {
  .vape-showcase__grid--full {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .vape-showcase__grid--full {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem;
  }
}

.vape-showcase__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 3;
  pointer-events: none;
}

.vape-showcase__cap span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vape-showcase__tile:hover .vape-showcase__cap,
.vape-showcase__tile:focus-visible .vape-showcase__cap {
  opacity: 1;
  transform: translateY(0);
}

/* On touch devices (no hover), show flavor name persistently */
@media (hover: none) {
  .vape-showcase__cap {
    opacity: 1;
    transform: translateY(0);
    padding: 1rem 0.5rem 0.75rem;
  }
  .vape-showcase__cap span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
  }
}

.vape-showcase__foot {
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--line);
}

.vape-showcase__foot p {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.vape-showcase__foot strong {
  color: var(--gold-1);
  letter-spacing: 0.3em;
}

.vape-showcase__tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  background: #000;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease;
}

.vape-showcase__tile::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-gradient);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0.35;
  z-index: -1;
  filter: blur(22px);
  transition: opacity 0.45s ease;
}

.vape-showcase__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 215, 110, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.35s ease;
}

.vape-showcase__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vape-showcase__tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 80px -20px rgba(245, 215, 110, 0.45);
}

.vape-showcase__tile:hover::before { opacity: 0.6; }
.vape-showcase__tile:hover::after { border-color: rgba(245, 215, 110, 0.6); }
.vape-showcase__tile:hover img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   Strain grid
   -------------------------------------------------------------------------- */
.strain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.strain-card {
  background: linear-gradient(180deg, rgba(26, 26, 31, 0.7) 0%, rgba(10, 10, 12, 0.7) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.strain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient-soft);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.strain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 215, 110, 0.4);
  box-shadow: var(--shadow-card), 0 0 60px -20px rgba(245, 215, 110, 0.3);
}

.strain-card:hover::before { opacity: 1; }

.strain-card__art {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at center, rgba(245, 215, 110, 0.08), transparent 65%),
    linear-gradient(135deg, #16161a, #0a0a0c);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.strain-card__art img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.strain-card:hover .strain-card__art img {
  transform: scale(1.06) rotate(-1.5deg);
}

.strain-card__art--placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(245, 215, 110, 0.03) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #16161a, #0a0a0c);
}

.coming-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-1);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold-2);
  border-radius: 999px;
  background: rgba(245, 215, 110, 0.05);
}

.strain-card__body {
  padding: 1.5rem 1.6rem 1.75rem;
  position: relative;
  z-index: 1;
}

.strain-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.strain-card__type {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.strain-card__desc {
  color: var(--text-dim);
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.strain-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.strain-card__tags li {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

/* --------------------------------------------------------------------------
   Edibles — feature blocks
   -------------------------------------------------------------------------- */
.edible-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
  position: relative;
}

.edible-feature + .edible-feature {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 5rem;
}

.edible-feature--reverse .edible-feature__art { order: 2; }
.edible-feature--reverse .edible-feature__body { order: 1; }

.edible-feature__art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}

.edible-feature__art::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-gradient);
  border-radius: calc(var(--radius) + 2px);
  opacity: 0.4;
  z-index: -1;
  filter: blur(18px);
}

.edible-feature__art::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 215, 110, 0.3);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 1;
}

.edible-feature__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.edible-feature:hover .edible-feature__art img {
  transform: scale(1.03);
}

.edible-feature__body { max-width: 540px; }

.edible-feature__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.edible-feature__tagline {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.edible-feature__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 520px) {
  .edible-feature__specs { grid-template-columns: repeat(2, 1fr); }
}

.edible-feature__specs li {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.edible-feature__specs span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.edible-feature__specs strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.edible-feature__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.edible-feature__tags li {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(245, 215, 110, 0.25);
  border-radius: 999px;
  color: var(--gold-1);
  background: rgba(245, 215, 110, 0.04);
  font-weight: 500;
}

.edible-feature__warn {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
}

.edibles__more {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(245, 215, 110, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}

.edibles__more p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold-2);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__copy p {
  color: var(--text-dim);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__stats > div {
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}

.about__stats span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo-wrap {
  position: relative;
  padding: 3rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245, 215, 110, 0.18), transparent 65%);
}

.about__logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(245, 215, 110, 0.2);
  animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.about__logo-wrap img {
  max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 0.4));
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(245, 215, 110, 0.05);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact-form__ack {
  color: var(--gold-1);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.contact-form__err {
  color: #ff8b7a;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Honeypot — hidden from humans, visible to bots */
.contact-form__hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form.is-submitting button[type="submit"] {
  opacity: 0.6;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  margin-top: 4rem;
}

.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer__brand img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--gold-1);
  margin-bottom: 1rem;
}

.footer__grid a {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer__grid a:hover { color: var(--gold-1); }

.footer__legal {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer__legal p + p { margin-top: 0.6rem; }

.footer__disclaimer {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(2, 2, 4, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__stage {
  position: relative;
  max-width: 1100px;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 11rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9),
              0 0 0 1px rgba(245, 215, 110, 0.25);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox__stage img { transform: scale(1); }

.lightbox__stage figcaption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(20, 20, 22, 0.7);
  border: 1px solid rgba(245, 215, 110, 0.3);
  color: var(--gold-1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(245, 215, 110, 0.15);
  border-color: var(--gold-1);
  transform: scale(1.06);
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.9rem;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  font-family: serif;
}

.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

@media (max-width: 720px) {
  .lightbox { padding: 3rem 0.5rem 4rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 2rem; }
  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
  .lightbox__stage figcaption { font-size: 0.8rem; letter-spacing: 0.18em; }
  .lightbox__stage img { max-height: calc(100vh - 9rem); }
  .lightbox__stage { gap: 0.6rem; }
}

/* Hint to swipe on touch devices */
@media (hover: none) and (max-width: 720px) {
  .lightbox__stage::after {
    content: '← swipe →';
    position: absolute;
    bottom: -2.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0.6;
  }
}

/* Make tile buttons render like blocks */
.vape-showcase__tile {
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 0;
  border: none;
}

.lineup-banner__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}

.lineup-banner__btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__art { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .edible-feature { grid-template-columns: 1fr; gap: 2.25rem; }
  .edible-feature--reverse .edible-feature__art { order: 0; }
  .edible-feature--reverse .edible-feature__body { order: 1; }
}

@media (max-width: 720px) {
  .nav { padding: 0.85rem 1rem; }
  .nav.is-scrolled { padding: 0.55rem 1rem; }
  .nav__brand img { height: 34px; }
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 64px; right: 0.75rem; left: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__links a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .nav__links a:last-child { border-bottom: none; }

  .section { padding: 4rem 1rem; }
  .hero { padding: 6.5rem 1rem 3.5rem; }
  .hero__sub { font-size: 1rem; }
  .hero__actions { gap: 0.6rem; }
  .hero__actions .btn { padding: 0.85rem 1.25rem; font-size: 0.85rem; }

  .marquee { padding: 0.85rem 0; }
  .marquee__track { gap: 2rem; }
  .marquee__track span { font-size: 1.05rem; }

  .section__head { margin-bottom: 2.25rem; }
  .section__lede { font-size: 0.95rem; }

  .lineup-banner { margin-bottom: 2.5rem; }

  .vape-showcase__foot { margin-top: 2rem; padding: 1rem 0.5rem; }
  .vape-showcase__foot p { font-size: 0.7rem; letter-spacing: 0.18em; }

  .edible-feature { padding: 2rem 0; gap: 1.75rem; }
  .edible-feature + .edible-feature { padding-top: 3rem; margin-top: 1rem; }
  .edible-feature__tagline { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .edible-feature__tags li { font-size: 0.65rem; padding: 0.35rem 0.65rem; }
  .edibles__more { margin-top: 2.5rem; padding: 1.5rem 1rem; }
  .edibles__more p { font-size: 1rem; letter-spacing: 0.15em; }

  .about__logo-wrap { padding: 1.5rem; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-top: 1.5rem; }
  .about__stats > div { padding: 0.85rem 0.4rem; }
  .about__stats strong { font-size: 1.5rem; }
  .about__stats span { font-size: 0.6rem; letter-spacing: 0.15em; }

  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form input, .contact-form textarea { padding: 0.85rem 0.9rem; font-size: 16px; /* avoids iOS zoom */ }
  .contact-form button { align-self: stretch; }

  .footer { padding: 3rem 1rem 1.5rem; margin-top: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { max-width: 160px; }
  .footer__legal { margin-top: 2rem; font-size: 0.72rem; }
  .footer__disclaimer { font-size: 0.68rem; line-height: 1.65; }

  .age-gate__card { padding: 2rem 1.25rem; }
  .age-gate__logo { max-width: 180px; }
  .age-gate__card h2 { font-size: 1.6rem; }
  .age-gate__actions { flex-direction: column; }
  .age-gate__actions .btn { width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
  .section { padding: 3.5rem 0.85rem; }
  .hero { padding: 6rem 0.85rem 3rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .vape-showcase__grid--full { gap: 0.65rem; }
  .vape-showcase__cap span { font-size: 0.72rem; letter-spacing: 0.1em; }
  .marquee__track span { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
