/* ============================================
   RAGGED WIZARD — Shared Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,400&family=Karla:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #15170E;
  --bg-secondary: #1C1F12;
  --surface: #252919;
  --surface-raised: #2E3320;
  --mystic-green: #A9BF6B;
  --mystic-green-dim: #8C9C50;
  --arcane-purple: #8D7AA0;
  --spell-gold: #D99A4E;
  --smoke-white: #F4F1E8;
  --muted: #A8A795;
  --muted-2: #7D7C6A;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(169, 191, 107, 0.3);
  --border-purple: rgba(141, 122, 160, 0.3);

  /* Typography */
  --font-display: 'Averia Serif Libre', serif;
  --font-sub: 'Karla', sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Effects */
  --shadow-glow-green: 0 0 24px rgba(169, 191, 107, 0.35), 0 0 60px rgba(169, 191, 107, 0.1);
  --shadow-glow-purple: 0 0 24px rgba(141, 122, 160, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);

  /* Layout */
  --container: 1400px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
}

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

html, body {
  background: var(--bg-primary);
  color: var(--smoke-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at top, rgba(169, 191, 107, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(141, 122, 160, 0.05), transparent 60%);
  background-attachment: fixed;
}

/* Vintage parchment noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ============================================
   Typography
   ============================================ */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.subtitle {
  font-family: var(--font-sub);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--mystic-green);
}

.eyebrow {
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--mystic-green);
}

.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: 0.02em;
}

p { text-wrap: pretty; }

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-narrow {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}

.section-header .subtitle {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--mystic-green);
  color: #1C2008;
  box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
  background: #9eff8b;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(169, 191, 107, 0.55), 0 0 80px rgba(169, 191, 107, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--smoke-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--mystic-green);
  color: var(--mystic-green);
  background: rgba(169, 191, 107, 0.05);
}

.btn-ghost {
  padding: 8px 0;
  color: var(--mystic-green);
  font-size: 0.8rem;
}

.btn-ghost::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: linear-gradient(180deg, rgba(37, 41, 25, 0.85), rgba(28, 31, 18, 0.85));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(169, 191, 107, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-green);
}

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

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(21, 23, 14, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(21, 23, 14, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Brand logo image */
.nav-logo .nav-sigil, .nav-logo span { display: none; }
.nav-logo-img {
  display: block;
  height: 56px;
  width: auto;
  /* lift the dark drawing off the dark bg */
  filter: drop-shadow(0 0 1px rgba(244, 241, 232, 0.25)) brightness(1.18);
}
.footer .nav-logo-img { height: 64px; }

.nav-sigil {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  animation: spin-slow 28s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  gap: 1px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--smoke-white);
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--mystic-green);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--mystic-green);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--mystic-green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--mystic-green); }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--smoke-white);
  position: relative;
}

.nav-burger span::before, .nav-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--smoke-white);
}

.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

@media (max-width: 1100px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: inline-flex; }
}

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(21, 23, 14, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   Particles + cursor
   ============================================ */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--mystic-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--mystic-green);
  opacity: 0;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-110vh) translateX(var(--drift, 30px)); opacity: 0; }
}

.cursor-orb {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 191, 107, 0.6), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.2s, height 0.2s;
}

.cursor-orb.hover { width: 48px; height: 48px; }

@media (pointer: coarse) { .cursor-orb { display: none; } }

/* ============================================
   Footer
   ============================================ */

.footer {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  overflow: hidden;
}

.footer-smoke {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background: radial-gradient(ellipse at 20% 0%, rgba(169, 191, 107, 0.1), transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(141, 122, 160, 0.08), transparent 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--mystic-green);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; color: var(--muted); font-size: 0.92rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--mystic-green); }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-tagline {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-meta strong { color: var(--smoke-white); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--mystic-green); }

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: var(--mystic-green);
  background: rgba(169, 191, 107, 0.1);
  box-shadow: 0 0 18px rgba(169, 191, 107, 0.3);
  transform: translateY(-2px);
}

.social-icon svg { width: 16px; height: 16px; stroke: currentColor; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .nav-inner { padding: 0 20px; }
}

/* ============================================
   Reveal animations (used with IntersectionObserver)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }

/* Badge / tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(169, 191, 107, 0.1);
  color: var(--mystic-green);
  border: 1px solid var(--border-glow);
}

.tag-indica { background: rgba(141, 122, 160, 0.12); color: var(--arcane-purple); border-color: var(--border-purple); }
.tag-sativa { background: rgba(169, 191, 107, 0.12); color: var(--mystic-green); border-color: var(--border-glow); }
.tag-hybrid { background: rgba(217, 154, 78, 0.12); color: var(--spell-gold); border-color: rgba(217, 154, 78, 0.3); }

/* Glow border util */
.glow-border {
  position: relative;
  isolation: isolate;
}

.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(169,191,107,0.4), transparent 50%, rgba(141,122,160,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Sigil divider */
.sigil-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  color: var(--muted);
}

.sigil-divider::before, .sigil-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Smoke separator (svg-style div) */
.smoke-divider {
  height: 200px;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.smoke-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(169,191,107,0.06), transparent 70%);
  filter: blur(20px);
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateX(-30px) scale(1); }
  to { transform: translateX(30px) scale(1.1); }
}

/* Product cards as links (clickable → live store) */
a.product-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-add { pointer-events: none; }
/* Real product photos sit on a clean white tile */
.product-card .product-img { background: #fff; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================
   V2 ADDITIONS — announcement, sticky CTAs, image utilities
   ============================================ */

/* Announcement bar */
.announce {
  background: linear-gradient(90deg, #1B1A10, #262410, #1B1A10);
  border-bottom: 1px solid rgba(141, 122, 160, 0.3);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.announce-rotator {
  position: relative;
  flex: 1;
  height: 18px;
  overflow: hidden;
}
.announce-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  color: #CDD4A3;
  text-shadow: 0 0 12px rgba(141, 122, 160, 0.5);
}
.announce-item.active { opacity: 1; transform: translateY(0); }
.announce-item a { color: var(--mystic-green); text-decoration: underline; text-underline-offset: 3px; }
.announce-side {
  color: rgba(244, 241, 232, 0.5);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .announce-side { display: none; }
  .announce-inner { padding: 0 14px; }
  .announce { font-size: 0.58rem; letter-spacing: 0.04em; }
}

/* When announce bar is visible, push nav down */
body.has-announce .nav { top: 34px; }
body.has-announce { padding-top: 0; }

/* Sticky mobile CTA bar */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  background: rgba(21, 23, 14, 0.95);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-glow);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 8px;
  transition: transform 0.3s ease;
}
.mobile-cta.hidden { transform: translateY(110%); }
.mobile-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  background: rgba(169, 191, 107, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke-white);
  transition: all 0.2s;
}
.mobile-cta a:active { transform: scale(0.97); background: rgba(169, 191, 107, 0.15); }
.mobile-cta a.primary {
  background: var(--mystic-green);
  color: #1C2008;
  border-color: var(--mystic-green);
}
.mobile-cta a svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 88px; }
}

/* Floating desktop phone CTA */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.float-cta-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mystic-green);
  color: #1C2008;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(169, 191, 107, 0.5), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s;
  position: relative;
}
.float-cta-trigger::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--mystic-green);
  opacity: 0.5;
  animation: ring-pulse 2.2s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float-cta-trigger:hover { transform: scale(1.08); }
.float-cta-trigger svg { width: 22px; height: 22px; }
.float-cta-panel {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: rgba(28, 31, 18, 0.95);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 220px;
}
.float-cta.open .float-cta-panel { display: flex; }
.float-cta-panel a {
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke-white);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-cta-panel a:hover { background: rgba(169, 191, 107, 0.08); color: var(--mystic-green); }
.float-cta-panel a svg { width: 14px; height: 14px; color: var(--mystic-green); }

@media (max-width: 880px) {
  .float-cta { display: none; }
}

/* Image utilities — placeholder fallback */
.img-bleed {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a3a, #0a141a);
}
.img-bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(169, 191, 107, 0.15), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(141, 122, 160, 0.12), transparent 50%);
  z-index: 1;
}
.img-bleed img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-bleed:hover img { transform: scale(1.05); }

/* Strong green-glow window effect (matches storefront brand) */
.green-glow-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(169, 191, 107, 0.25),
    0 0 120px rgba(169, 191, 107, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(169, 191, 107, 0.4);
}
.green-glow-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(169, 191, 107, 0.12));
  pointer-events: none;
  z-index: 2;
}

/* Section CTA strip — full-width inline */
.section-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Smaller buttons */
.btn-sm { padding: 10px 18px; font-size: 0.74rem; }

/* Visible spacer */
body { padding-top: 0; }

/* Compliance + 21+ helper text */
.compliance {
  font-size: 0.7rem;
  color: var(--muted-2);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 16px;
}
