/* ==============================
   STRAIN ID — EARTHY REDESIGN
   Palette pulled from the logo:
   deep green, golden yellow,
   brick red, cream, dark brown
   ============================== */

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

:root {
  --black:        #0e0b06;
  --deep:         #141009;
  --forest:       #1a2e1c;
  --forest-mid:   #223824;
  --forest-light: #2d4d30;
  --card:         #1e2e20;
  --card-light:   #253527;
  --border:       rgba(212,160,23,0.18);
  --border-light: rgba(212,160,23,0.08);

  --gold:         #d4a017;
  --gold-dim:     rgba(212,160,23,0.15);
  --gold-glow:    rgba(212,160,23,0.3);
  --red:          #a03020;
  --red-dim:      rgba(160,48,32,0.15);

  --cream:        #f0e8d0;
  --cream-dim:    #c8bc9a;
  --muted:        #7a8c6a;
  --white:        #fdf8ee;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --trans:     0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 900; font-style: italic; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; }
h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
p  { color: var(--cream-dim); }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Decorative leaf watermark ── */
.leaf-mark {
  position: absolute;
  font-size: 220px;
  line-height: 1;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  filter: blur(2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: rgba(14,11,6,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--trans);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  transition: opacity var(--trans) !important;
}
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; display: block; transition: var(--trans); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-gold:hover { box-shadow: 0 6px 32px var(--gold-glow); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(240,232,208,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Base overlay — homepage overrides this via .hero .hero-bg below */
  background:
    radial-gradient(ellipse 80% 60% at 55% 45%, rgba(26,46,28,0.9) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(160,48,32,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Homepage hero: photo background overlay ── */
.hero--photo .hero-bg {
  background:
    linear-gradient(100deg,
      rgba(8,6,2,0.97) 0%,
      rgba(8,6,2,0.93) 35%,
      rgba(8,6,2,0.72) 58%,
      rgba(8,6,2,0.28) 80%,
      rgba(8,6,2,0.08) 100%
    ) !important;
}
@media (max-width: 760px) {
  .hero--photo .hero-bg {
    background: rgba(8,6,2,0.90) !important;
  }
  .hero--photo {
    background-position: center center !important;
  }
}
.hero--photo h1 {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}
.hero--photo .hero-sub {
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero--photo .hero-grid {
  grid-template-columns: 1fr !important;
  max-width: 600px;
}
/* Subtle radial texture using SVG-inspired css */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a017' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat-row {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }

/* ── Hero Visual: Sticker showcase ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sticker-showcase {
  position: relative;
  width: 360px;
  height: 420px;
}
.showcase-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}
.showcase-card:hover { transform: translateY(-6px) rotate(0deg) !important; }
.sc-1 { width: 160px; height: 160px; top: 10px; left: 20px; transform: rotate(-8deg); background: linear-gradient(135deg, #1f1a40, #3a2a80); }
.sc-2 { width: 155px; height: 155px; top: 0; right: 10px; transform: rotate(5deg); background: linear-gradient(135deg, #2a1a10, #6a3010); }
.sc-3 { width: 160px; height: 160px; bottom: 60px; left: 30px; transform: rotate(4deg); background: linear-gradient(135deg, #1a2e10, #2a5020); }
.sc-4 { width: 150px; height: 150px; bottom: 40px; right: 20px; transform: rotate(-5deg); background: linear-gradient(135deg, #1a1a1a, #3a1a3a); }
.showcase-label {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  letter-spacing: 0.05em;
}
/* Orbiting leaf */
.orbit-leaf {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(212,160,23,0.12);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 18s linear infinite;
  pointer-events: none;
}
@keyframes orbit-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit-leaf::before {
  content: '🌿';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  animation: orbit-spin 18s linear infinite reverse;
}

/* ── Divider ── */
.divider-leaf {
  text-align: center;
  padding: 0;
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.divider-leaf::before, .divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.divider-leaf::after { background: linear-gradient(90deg, var(--border), transparent); }
.divider-leaf span { margin: 0 16px; font-size: 1.1rem; color: var(--gold); opacity: 0.6; }

/* ── How It Works ── */
.how {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), background var(--trans);
}
.step-card:hover {
  border-color: rgba(212,160,23,0.45);
  background: rgba(212,160,23,0.04);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.7;
}
.step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; font-style: italic; }
.step-card p { font-size: 0.93rem; color: var(--cream-dim); margin: 0; }

/* ── Sticker Packs ── */
.packs { background: var(--deep); }
.packs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pack-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 20px var(--gold-dim);
}
.pack-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.pack-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.pack-info { padding: 18px 20px 0; }
.pack-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; font-style: italic; font-family: var(--font-display); }
.pack-info p  { font-size: 0.83rem; color: var(--muted); margin: 0; }
.pack-footer {
  padding: 14px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pack-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold);
}
.pack-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity var(--trans);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.pack-btn:hover { opacity: 0.85; }

/* ── App Feature ── */
.app-feature {
  background: var(--forest);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 64px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin: 36px 0; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon-wrap {
  width: 42px; height: 42px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; font-size: 0.97rem; }
.feature-text span { font-size: 0.88rem; color: var(--muted); }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  transition: border-color var(--trans), background var(--trans);
}
.store-btn:hover { border-color: rgba(212,160,23,0.5); background: var(--gold-dim); }
.store-icon { font-size: 1.7rem; line-height: 1; }
.store-text small { display: block; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.04em; }
.store-text strong { display: block; font-size: 0.95rem; color: var(--white); }
/* Phone mockup */
.app-visual { display: flex; justify-content: center; position: relative; }
.phone-mock {
  width: 250px;
  height: 500px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 40px var(--gold-dim);
  position: relative;
  z-index: 2;
}
.phone-screen-wrap {
  position: absolute;
  inset: 10px;
  background: var(--deep);
  border-radius: 30px;
  overflow: hidden;
  padding: 20px 16px;
}
.ps-header { font-family: var(--font-display); font-size: 1rem; font-weight: 800; font-style: italic; color: var(--white); margin-bottom: 4px; }
.ps-sub { font-size: 0.6rem; color: var(--muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.ps-strain {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ps-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ps-strain-info strong { display: block; font-size: 0.72rem; font-family: var(--font-display); color: var(--white); }
.ps-strain-info span { font-size: 0.6rem; color: var(--muted); }
.ps-badge {
  margin-left: auto;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ps-badge.fav { background: var(--gold-dim); color: var(--gold); }
.ps-badge.active { background: rgba(45,77,48,0.5); color: var(--muted); }
.phone-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.06;
  bottom: -40px; right: -40px;
  z-index: 1;
}

/* ── Testimonials ── */
.testimonials { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.tcard::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  font-style: italic;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.tcard-name { font-weight: 700; color: var(--white); font-size: 0.92rem; margin-bottom: 1px; }
.tcard-role { font-size: 0.78rem; color: var(--muted); }

/* ── Dispensary CTA Band ── */
.dispensary-band {
  background: var(--forest-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.dispensary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.dispensary-icon { font-size: 2.5rem; }
.dispensary-text h3 { font-size: 1.5rem; margin-bottom: 6px; font-style: italic; }
.dispensary-text p { margin: 0; font-size: 0.95rem; }

/* ── Contact ── */
.contact { background: var(--deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-reasons { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.creason {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.creason-icon { font-size: 1.3rem; flex-shrink: 0; }
.creason strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.creason span { font-size: 0.82rem; color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--trans);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { color: var(--cream); }
.form-group select option { background: #1c1008; color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: var(--gold-dim);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}

/* ── Footer ── */
footer {
  background: var(--forest);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer-logo img { height: 52px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 32ch; }
.footer-col h4 { font-size: 0.7rem; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: border-color var(--trans), color var(--trans);
  color: var(--muted);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── Inner Pages ── */
.page-hero {
  padding: 140px 0 72px;
  background: var(--forest);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-hero .lead { font-size: 1.05rem; color: var(--cream-dim); }
.prose-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 24px 80px;
}
.prose-content h2 {
  font-size: 1.35rem;
  margin-top: 48px;
  margin-bottom: 14px;
  color: var(--white);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.prose-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.prose-content p { color: var(--cream-dim); margin-bottom: 14px; max-width: none; }
.prose-content ul { color: var(--cream-dim); padding-left: 22px; margin-bottom: 14px; }
.prose-content li { margin-bottom: 8px; }
.prose-content strong { color: var(--cream); }
.prose-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.last-updated {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── FAQ ── */
.faq-section { background: var(--black); padding: 80px 0; }
.faq-block { margin-bottom: 56px; }
.faq-block:last-child { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background var(--trans);
}
.faq-question:hover { background: rgba(212,160,23,0.04); }
.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform var(--trans), background var(--trans), border-color var(--trans);
  color: var(--muted);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
  color: var(--cream-dim);
  font-size: 0.94rem;
  line-height: 1.72;
}
.faq-answer a { color: var(--gold); }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }

/* ── Support CTA ── */
.support-cta {
  background: var(--forest);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.support-cta h2 { margin-bottom: 14px; }
.support-cta p { margin: 0 auto 32px; max-width: 44ch; }
.support-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.response-note { margin-top: 20px !important; font-size: 0.85rem !important; }

/* ── Mobile Nav ── */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(20,16,9,0.98);
    backdrop-filter: blur(20px);
    padding: 28px;
    border-bottom: 1px solid var(--border);
    gap: 22px;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { order: -1; }
  .app-feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-visual { order: -1; margin-bottom: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dispensary-inner { flex-direction: column; text-align: center; }
  .packs-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  section { padding: 68px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stat-row { gap: 24px; }
}
@media (max-width: 480px) {
  .packs-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .sticker-showcase { width: 300px; height: 340px; }
  .sc-1, .sc-3 { width: 130px; height: 130px; }
  .sc-2, .sc-4 { width: 125px; height: 125px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ══════════════════════════════════
   HOMEPAGE PHOTO HERO
   ══════════════════════════════════ */
.hero--photo {
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero--photo .hero-bg {
  background:
    linear-gradient(105deg,
      rgba(5,4,1,1.0)   0%,
      rgba(5,4,1,0.97) 30%,
      rgba(5,4,1,0.88) 50%,
      rgba(5,4,1,0.55) 70%,
      rgba(5,4,1,0.15) 100%
    ) !important;
}
.hero--photo .hero-grid {
  grid-template-columns: 1fr !important;
  max-width: 580px;
}
.hero--photo h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,1), 0 1px 4px rgba(0,0,0,1);
}
.hero--photo .hero-sub {
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}
.hero--photo .hero-badge,
.hero--photo .hero-stat-row,
.hero--photo .hero-stat-num,
.hero--photo .hero-stat-label {
  text-shadow: none;
}
@media (max-width: 760px) {
  .hero--photo {
    background-position: 70% center;
  }
  .hero--photo .hero-bg {
    background: rgba(5,4,1,0.92) !important;
  }
}

/* ══════════════════════════════════
   APP SECTION PHONE PHOTOS
   ══════════════════════════════════ */
.app-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.app-phone-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 60px rgba(0,0,0,0.55), 0 0 24px rgba(212,160,23,0.08);
}
.app-phone-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.app-phone-photo:first-child { margin-top: 32px; }
@media (max-width: 720px) {
  .app-photo-grid { grid-template-columns: 1fr; }
  .app-phone-photo:first-child { margin-top: 0; }
}

/* ══════════════════════════════════
   LIFESTYLE PHOTO STRIP
   ══════════════════════════════════ */
.lifestyle-strip {
  background: var(--black);
  padding: 0 0 80px;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lifestyle-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.lifestyle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.lifestyle-photo:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-photo:last-child { display: none; }
}
