/* =============================================
   CROWNTOWN CANNABIS — MAIN STYLESHEET
   Clean Natural Luxury Dispensary
   ============================================= */

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

:root {
  --green: #2D4A3E;
  --green-light: #3A5F50;
  --green-dark: #1E352B;
  --cream: #F5F0EB;
  --cream-dark: #EDE5DC;
  --gold: #B8975C;
  --gold-light: #D4B87A;
  --gold-dark: #9A7D4A;
  --charcoal: #2B2B2B;
  --charcoal-light: #4A4A4A;
  --sage: #7A9E8E;
  --sage-light: #A3C4B4;
  --white: #FFFFFF;
  --off-white: #FAF8F5;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --gutter: 24px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn--outline:hover {
  background: var(--green);
  color: var(--cream);
}

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 12px;
}
.section-header__sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ==========================================
   AGE GATE
   ========================================== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: var(--green-dark);
}
.age-gate__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.age-gate__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.age-gate__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.age-gate__question {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 8px;
}
.age-gate__sub {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.age-gate__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.age-gate__buttons .btn { flex: 1; }
.age-gate__disclaimer {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  opacity: 0.7;
}
.age-gate__disclaimer a { text-decoration: underline; }

.age-denied {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-denied__content {
  text-align: center;
  color: var(--cream);
  padding: 24px;
}
.age-denied__content h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo {
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
  height: 60px;
  width: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.header__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  transition: filter 0.4s var(--ease);
}
.header.scrolled .header__logo-img {
  filter: none;
}

.header__nav {
  display: flex;
  gap: 32px;
}
.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s var(--ease);
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.header__link:hover::after { width: 100%; }
.header.scrolled .header__link { color: var(--charcoal); }
.header.scrolled .header__link:hover { color: var(--green); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s var(--ease);
}
.header.scrolled .header__icon-btn { color: var(--charcoal); }
.header__icon-btn:hover { background: rgba(255,255,255,0.1); }
.header.scrolled .header__icon-btn:hover { background: rgba(0,0,0,0.05); }

.header__cart-btn { position: relative; }
.header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--ease-spring);
}
.header__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.header.scrolled .header__hamburger { color: var(--charcoal); }
.header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  padding: 100px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--gold); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* --- Background layers --- */
.hero__bg { position: absolute; inset: 0; }
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111e18 0%, #1A3329 30%, #2D4A3E 60%, #1A3329 100%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(196, 162, 101, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 40%, rgba(74, 107, 93, 0.08) 0%, transparent 50%);
}

/* --- Split layout --- */
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  padding: 140px 0 80px;
  min-height: 100vh;
}

/* --- Text side --- */
.hero__text { max-width: 600px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4A265;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.hero__eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: #C4A265;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.35s forwards;
}
.hero__title--gold {
  margin-bottom: 28px;
  animation-delay: 0.5s;
}
.hero__title--gold em {
  font-style: italic;
  background: linear-gradient(90deg, #C4A265 0%, #D4B87A 40%, #C4A265 80%, #D4B87A 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 0.7s var(--ease-out) 0.5s forwards, goldShimmer 4s ease-in-out infinite 1.5s;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: #A8B5A0;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.65s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-out) 0.8s forwards;
}

/* Gold primary CTA */
.btn--gold {
  background: #C4A265;
  color: #1A3329;
  font-weight: 600;
}
.btn--gold:hover {
  background: #D4B87A;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 24px rgba(196, 162, 101, 0.25);
}

/* --- Video visual side --- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroVisualIn 1s var(--ease-out) 0.5s forwards;
}

.hero__video-shape {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 32px 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 51, 41, 0.15) 0%,
    transparent 30%,
    transparent 50%,
    rgba(26, 51, 41, 0.5) 100%
  );
  pointer-events: none;
}
.hero__video-brand {
  display: none;
}

/* Floating card */
.hero__float-card {
  display: none;
}
.hero__float-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: #C4A265;
  line-height: 1;
}
.hero__float-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* --- Scroll indicator --- */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* --- Hero keyframes --- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* --- Hero responsive --- */
@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__video-shape { max-width: 400px; }
  .hero__float-card { left: -20px; bottom: 20px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__split {
    grid-template-columns: 1fr;
    padding: 120px 0 80px;
    text-align: center;
    justify-items: center;
  }
  .hero__text { display: flex; flex-direction: column; align-items: center; }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero__sub { max-width: 340px; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 300px; }
  .hero__ctas .btn { width: 100%; }
  .hero__scroll-indicator { display: none; }
}

/* ==========================================
   MARQUEE
   ========================================== */
.marquee {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee__dot {
  width: 4px !important;
  height: 4px;
  background: var(--gold) !important;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================
   VIBES
   ========================================== */
.vibes {
  padding: 100px 0;
  background: var(--off-white);
}
.vibes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.vibe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.vibe-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 74, 62, 0.03), rgba(184, 151, 92, 0.03));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.vibe-card:hover {
  border-color: var(--sage-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.vibe-card:hover::before { opacity: 1; }

.vibe-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--green);
}
.vibe-card__title {
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
  position: relative;
}
.vibe-card__desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}
.vibe-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.vibe-card:hover .vibe-card__cta { color: var(--gold-dark); }

/* ==========================================
   PRODUCTS
   ========================================== */
.products {
  padding: 100px 0;
  background: var(--cream);
}
.products__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.products__tab {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--charcoal-light);
  background: transparent;
  border: 1.5px solid var(--cream-dark);
  transition: all 0.3s var(--ease);
}
.products__tab:hover {
  border-color: var(--sage);
  color: var(--green);
}
.products__tab.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 1;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--white);
}

.product-card__quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}
.product-card__quick-add .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
}
.product-card__quick-add .btn:hover {
  background: var(--green-light);
}

.product-card__info {
  padding: 16px 20px 20px;
}
.product-card__brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card__meta {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}
.product-card__price {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
}
.product-card__price-old {
  text-decoration: line-through;
  color: var(--charcoal-light);
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 6px;
}

.products__cta { text-align: center; }

/* ==========================================
   CANNABUS
   ========================================== */
.cannabus {
  padding: 80px 0;
  background: var(--green);
}
.cannabus__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cannabus__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.cannabus__title + .section-header__eyebrow { color: var(--gold); }
.cannabus .section-header__eyebrow { color: var(--gold); margin-bottom: 12px; }
.cannabus__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cannabus__photo {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: transform 0.6s var(--ease);
}
.cannabus__photo:hover {
  transform: scale(1.02);
}

/* ==========================================
   LOCATIONS
   ========================================== */
.locations {
  padding: 100px 0;
  background: var(--off-white);
}
.locations__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  min-height: 500px;
}

.locations__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 500px;
}

/* Leaflet custom styling */
.leaflet-container { background: var(--cream-dark) !important; }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-sans) !important;
}
.leaflet-popup-content { margin: 16px !important; }
.leaflet-popup-content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 6px;
}
.leaflet-popup-content p {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin: 2px 0;
  line-height: 1.5;
}
.leaflet-popup-content a.popup-directions {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.locations__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}
.locations__list::-webkit-scrollbar { width: 4px; }
.locations__list::-webkit-scrollbar-track { background: transparent; }
.locations__list::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 4px; }

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.location-card:hover, .location-card.active {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
}
.location-card.active { border-color: var(--green); }
.location-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 4px;
}
.location-card__address {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 4px;
}
.location-card__hours {
  font-size: 0.75rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 6px;
}
.location-card__hours::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

/* ==========================================
   BRAND STORY
   ========================================== */
.story {
  padding: 100px 0;
  background: var(--cream);
}
.story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story__image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story__image-block--1 { grid-row: span 2; }

.story__placeholder {
  aspect-ratio: 3/4;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-serif);
  gap: 4px;
  border-radius: var(--radius-lg);
}
.story__placeholder span:first-child {
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.story__year {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
}
.story__placeholder--alt {
  background: var(--sage);
  aspect-ratio: 1;
}
.story__placeholder--alt span:first-child {
  font-size: 2.5rem;
  font-weight: 500;
  opacity: 1;
  line-height: 1;
}
.story__placeholder--alt span:last-child {
  font-size: 0.85rem;
  opacity: 0.7;
}

.story__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 24px;
}
.story__text {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story__quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
.story__quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
  margin-bottom: 8px;
}
.story__quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ==========================================
   ADVOCACY
   ========================================== */
.advocacy {
  padding: 80px 0;
  background: var(--off-white);
}
.advocacy__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}
.advocacy__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 16px;
}
.advocacy .section-header__eyebrow { margin-bottom: 12px; }
.advocacy__text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 28px;
}
.advocacy__icon {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
}

/* ==========================================
   PARTNERS
   ========================================== */
.partners {
  padding: 80px 0;
  background: var(--cream);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.partner-logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
  min-height: 80px;
}
.partner-logo:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
}
.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s var(--ease);
}
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.partner-logo span {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal-light);
  text-align: center;
  line-height: 1.3;
}

/* ==========================================
   JOURNAL
   ========================================== */
.journal {
  padding: 100px 0;
  background: var(--off-white);
}
.journal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.journal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(0,0,0,0.04);
}
.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.journal-card--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.journal-card--featured .journal-card__image { flex: 1; min-height: 280px; }

.journal-card__image { position: relative; }
.journal-card__placeholder {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.journal-card--featured .journal-card__placeholder { height: 100%; }
.journal-card__placeholder--1 {
  background: linear-gradient(135deg, #2D4A3E 0%, #3a5f50 100%);
}
.journal-card__placeholder--2 {
  background: linear-gradient(135deg, #B8975C 0%, #d4b87a 100%);
}
.journal-card__placeholder--3 {
  background: linear-gradient(135deg, #7A9E8E 0%, #a3c4b4 100%);
}

.journal-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.journal-card__content { padding: 24px; }
.journal-card__date {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  display: block;
  margin-bottom: 8px;
}
.journal-card__title {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.4;
}
.journal-card--featured .journal-card__title { font-size: 1.4rem; }
.journal-card__excerpt {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.journal-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.3s;
}
.journal-card__link:hover { color: var(--gold-dark); }

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter {
  padding: 80px 0;
  background: var(--green);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.newsletter__text {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.newsletter__form { flex: 0 0 auto; width: 100%; max-width: 460px; }
.newsletter__input-wrap {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter__input {
  flex: 1;
  border: none;
  background: none;
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__input-wrap .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--gold);
  color: var(--white);
  flex-shrink: 0;
}
.newsletter__input-wrap .btn:hover { background: var(--gold-light); }
.newsletter__consent {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  padding-left: 18px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 64px 0 32px;
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}
.footer__tagline {
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold); }
.footer__address {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__legal { font-size: 0.75rem; }
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-links a {
  font-size: 0.75rem;
  transition: color 0.3s;
}
.footer__legal-links a:hover { color: var(--gold); }
.footer__fda {
  font-size: 0.65rem;
  line-height: 1.6;
  opacity: 0.5;
  max-width: 800px;
  width: 100%;
  margin-top: 8px;
}

/* ==========================================
   LOYALTY POPUP
   ========================================== */
.loyalty-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}
.loyalty-popup.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.loyalty-popup__card {
  background: var(--green-dark);
  border: 1px solid rgba(196, 162, 101, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  position: relative;
}
.loyalty-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(255,255,255,0.4);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.loyalty-popup__close:hover {
  color: var(--cream);
  background: rgba(255,255,255,0.08);
}
.loyalty-popup__crown {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.loyalty-popup__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.loyalty-popup__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 16px;
}
.loyalty-popup__tiers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.loyalty-popup__tier {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.loyalty-popup__tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.loyalty-popup__tier-dot--green { background: var(--sage); }
.loyalty-popup__tier-dot--gold { background: #C4A265; }
.loyalty-popup__tier-dot--crown { background: #D4B87A; box-shadow: 0 0 6px rgba(212, 184, 122, 0.4); }

.loyalty-popup__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loyalty-popup__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s;
}
.loyalty-popup__input::placeholder { color: rgba(255,255,255,0.3); }
.loyalty-popup__input:focus { border-color: rgba(196, 162, 101, 0.4); }

.loyalty-popup__note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
  text-align: center;
}
.loyalty-popup__note a {
  color: #C4A265;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .loyalty-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .loyalty-popup__card { width: auto; }
}

/* ==========================================
   CART DRAWER
   ========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  background: var(--cream);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-drawer__header h3 {
  font-size: 1.1rem;
  color: var(--green);
}
.cart-drawer__close { color: var(--charcoal-light); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  color: var(--charcoal-light);
}
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--cream-dark);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.cart-drawer__note {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 8px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  flex-shrink: 0;
  object-fit: contain;
}
.cart-item__details { flex: 1; }
.cart-item__name {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 2px;
}
.cart-item__brand {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  margin-bottom: 8px;
}
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2px;
}
.cart-item__qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-radius: 4px;
}
.cart-item__qty button:hover { background: var(--cream-dark); }
.cart-item__qty span {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item__price {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.cart-item__remove {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
}

/* ==========================================
   SEARCH OVERLAY
   ========================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 240, 235, 0.97);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay__inner {
  max-width: 600px;
  width: 100%;
  padding: 0 24px;
  position: relative;
}
.search-overlay__close {
  position: absolute;
  top: -60px;
  right: 24px;
  color: var(--charcoal-light);
}
.search-overlay__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--green);
  background: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green);
  padding: 12px 0;
  outline: none;
}
.search-overlay__input::placeholder {
  color: var(--sage);
}
.search-overlay__suggestions { margin-top: 32px; }
.search-overlay__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 12px;
}
.search-overlay__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-overlay__tags a {
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
}
.search-overlay__tags a:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--cream);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .mobile-menu { display: block; }

  .vibes__grid { grid-template-columns: repeat(3, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .cannabus__inner { grid-template-columns: 1fr; gap: 40px; }
  .locations__layout { grid-template-columns: 1fr; }
  .locations__map { min-height: 400px; }
  .locations__list {
    max-height: none;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
  }
  .location-card { flex: 0 0 260px; }
  .story__layout { grid-template-columns: 1fr; }
  .story__visual { order: 2; }
  .advocacy__inner { grid-template-columns: 1fr; }
  .advocacy__visual { order: -1; }
  .advocacy__icon { max-width: 180px; }
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer__grid > :nth-child(4),
  .footer__grid > :nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .hero__content { padding: 120px 0 60px; }
  .hero__scroll-indicator { display: none; }

  .vibes__grid { grid-template-columns: repeat(2, 1fr); }
  .vibes__grid .vibe-card:last-child { grid-column: span 2; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .products__tabs { flex-wrap: wrap; }

  .journal__grid { grid-template-columns: 1fr; }
  .journal-card--featured { grid-row: auto; }
  .journal-card--featured .journal-card__placeholder { height: 200px; }

  .newsletter__inner { flex-direction: column; text-align: center; }
  .newsletter__form { max-width: 100%; }

  .partners__grid { grid-template-columns: repeat(3, 1fr); }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .vibes__grid { grid-template-columns: 1fr; }
  .vibes__grid .vibe-card:last-child { grid-column: auto; }
  .products__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card__info { padding: 12px 14px 16px; }
  .product-card__name { font-size: 0.9rem; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }

  .newsletter__input-wrap { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter__input { text-align: center; }
  .newsletter__input-wrap .btn { border-radius: 100px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .age-gate__card { padding: 32px 24px; }
  .age-gate__buttons { flex-direction: column; }
}
