/* ====================================================
   HEADY HEADS - Mockup v1
   Palette: midnight + warm cream + holographic accent
   ==================================================== */

:root {
  --bg: #08080b;
  --bg-soft: #101015;
  --bg-card: #14141a;
  --border: #1f1f28;
  --border-hover: #2c2c38;

  --text: #e8e4dc;
  --text-muted: #a8a39a; /* Bumped from #8a8580 for WCAG AA contrast on dark bg */
  --text-dim: #8a8580;   /* Bumped from #5a5a62 for WCAG AA contrast */

  --accent: #b8a4ff;
  --accent-warm: #d4a574;

  --indica: #7ec3e0;
  --sativa: #d4754a;
  --hybrid: #7ec5a9;

  --holo: linear-gradient(
    120deg,
    #a8b4ff 0%,
    #ffb4e1 25%,
    #fff5b4 50%,
    #b4ffd6 75%,
    #a8b4ff 100%
  );

  --serif: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  --max-width: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Visible focus ring for keyboard users only */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline-offset: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text);
}

/* Reserve the holographic gradient for the hero headline only - one big moment, not everywhere */
.hero-text h1 em {
  background: var(--holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow .diamond {
  color: var(--accent);
  font-size: 10px;
}

/* Section-specific eyebrow color overrides. The default amber
   (--accent-warm) reads warm + earthy across the whole site; using
   the cool purple --accent on Pillars / FAQ / In Rotation / What We
   Make breaks the warm monotone and adds depth to the brand palette
   without needing new colors. The diamond inside swaps to amber so
   the two-tone "eyebrow + diamond" combo still works. */
.types .eyebrow,
.about-pillars-section .eyebrow,
.faq .eyebrow,
.rotation .eyebrow,
.about-makes .eyebrow {
  color: var(--accent);
}
.types .eyebrow .diamond,
.about-pillars-section .eyebrow .diamond,
.faq .eyebrow .diamond,
.rotation .eyebrow .diamond,
.about-makes .eyebrow .diamond {
  color: var(--accent-warm);
}

.accent-shimmer {
  background: var(--holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a878 0%, #e0bd8e 50%, #c9a878 100%);
  color: #0a0a0d;
  box-shadow: 0 0 0 1px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
  background: var(--holo);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 164, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.btn-text:hover {
  color: var(--accent-warm);
}

.btn span,
.btn-text span,
.product-cta span,
.section-link span,
.type-cta span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn:hover span,
a:hover span {
  transform: translateX(4px);
}

/* ============================================
   AGE GATE
   ============================================ */

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 11, 0.96);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  max-width: 480px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 48px 40px;
  border-radius: 4px;
}

.age-gate-logo img {
  height: 88px;
  width: auto;
  margin: 0 auto 32px;
  display: block;
}

.age-gate h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.age-gate p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 14px;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.age-gate-fine {
  font-size: 11px;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ============================================
   TOPBAR
   ============================================ */

/* Rotating must-see ticker - replaces the static topbar */
.ticker {
  position: relative;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  height: 40px;
  overflow: hidden;
  z-index: 10;
}

.ticker-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 var(--gutter);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
  pointer-events: none;
}

.ticker-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ticker-slide:hover {
  color: var(--text);
}

.ticker-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  border: 1px solid rgba(212, 165, 116, 0.4);
  padding: 4px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ticker-slide[data-ticker="collab"] .ticker-tag {
  background: var(--holo);
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
  color: var(--bg);
  border-color: transparent;
}

.ticker-slide[data-ticker="event"] .ticker-tag {
  color: var(--accent);
  border-color: rgba(184, 164, 255, 0.4);
}

.ticker-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-align: left;
  max-width: fit-content;
}

.ticker-arrow {
  flex-shrink: 0;
  color: var(--accent-warm);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ticker-slide:hover .ticker-arrow {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .ticker { height: auto; min-height: 44px; padding: 6px 0; }
  .ticker-slide { padding: 0 16px; gap: 10px; font-size: 11px; flex-wrap: wrap; justify-content: flex-start; }
  .ticker-text { white-space: normal; line-height: 1.3; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  background: rgba(8, 8, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

/* CRITICAL: prevent horizontal scroll from off-canvas drawer translateX */
html, body { overflow-x: clip; }

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

.nav-logo img {
  height: 88px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-warm);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-icon {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: var(--accent-warm);
}

/* Hamburger button - hidden on desktop, visible on mobile */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.nav-burger:hover { border-color: var(--accent-warm); }

.nav-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }

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

@media (max-width: 1000px) {
  .nav-burger { display: block; }
  .nav-inner { gap: 12px; padding: 6px 20px; }
  .nav-actions { gap: 12px; }
  .nav-logo img { height: 56px; }

  /* CRITICAL: backdrop-filter on .nav creates a containing block for
     position:fixed descendants in Chromium, which would constrain the
     drawer to the nav's height. Disable it on mobile so the drawer
     can use the viewport as its containing block. */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* Mobile drawer - slides in from the right when burger is clicked.
     100dvh keeps it the full viewport on mobile browsers (handles the
     iOS Safari address-bar resize correctly, unlike 100vh). */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    width: min(360px, 90vw);
    height: 100vh;
    height: 100dvh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 60;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.is-open { transform: translateX(0); }

  .nav-links a {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:hover { color: var(--accent-warm); }
  .nav-links a::after { display: none; }

  /* Backdrop overlay behind the drawer */
  .nav-links.is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 11, 0.7);
    backdrop-filter: blur(6px);
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn-text { display: none; }
  .nav-actions { gap: 8px; }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 80px var(--gutter) 120px;
  position: relative;
  overflow: hidden;
}

/* Ambient cannabis grow loop (Veo 3.1) - stacked dual-video crossfade */
.hero-bg-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Slight blur + tinted brightness lets the video sit behind text without dominating */
  filter: blur(1.5px) saturate(1.15) brightness(0.85) contrast(1.1);
  transition: opacity 0.3s ease;
}

.hero-bg-a { z-index: 1; }
.hero-bg-b { z-index: 0; opacity: 0.5; }

/* Fade the edges so the video doesn't have hard borders */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 8, 11, 0.4) 0%, transparent 30%, transparent 70%, rgba(8, 8, 11, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(8, 8, 11, 0.6) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle, rgba(184, 164, 255, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Hero stage holds the rotating slides + pagination */
.hero-stage {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Each slide is absolutely positioned within the stage; only the
   active one is visible (opacity 1). The first slide also acts as
   the height anchor (others use position: absolute and fade in) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Hero pagination dots */
.hero-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  position: relative;
  z-index: 3;
}

.hero-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  background: var(--border);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.4s ease, width 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-warm);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.hero-dot.is-active {
  width: 56px;
  background: rgba(212, 165, 116, 0.25);
}

.hero-dot.is-active::after {
  transform: scaleX(1);
  /* Progress fill animates over slide duration to telegraph time-left */
  transition: transform 9s linear;
}

.hero-dot:hover { background: var(--border-hover); }
.hero-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.2s ease; transform: none; }
  .hero-dot.is-active::after { transition: none; transform: scaleX(1); }
}

@media (max-width: 768px) {
  .hero-pagination { margin-top: 32px; gap: 10px; }
  .hero-dot { width: 28px; }
  .hero-dot.is-active { width: 44px; }
}

.hero-text .eyebrow {
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  /* Full-width mobile so a 4-word CTA doesn't shrink to max-content
     and look orphaned in the stacked column. */
  .hero-actions .btn { justify-content: center; width: 100%; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 460px;
  opacity: 0.75;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stats strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}

.hero-stats span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: scale(1.18);
  /* Directional contact shadow + warm rim light to ground the product */
  filter:
    drop-shadow(0 40px 30px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 60px rgba(184, 164, 255, 0.12))
    drop-shadow(0 0 120px rgba(212, 165, 116, 0.08));
}

.hero-visual img.placeholder,
.hero-visual img:not([src]),
.hero-visual img[src=""] {
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  border: 1px dashed var(--border);
}

.hero-glow {
  position: absolute;
  inset: 10%;
  background: var(--holo);
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero { padding: 48px var(--gutter) 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Mobile/tablet: center everything since the layout stacks vertically.
     Left-aligned text in a centered column looks awkward when the visual
     sits below it. */
  .hero-text { text-align: center; }
  .hero-text .eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-stats div { align-items: center; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   HOLOGRAPHIC CURSOR TRAIL (desktop only)
   ============================================ */

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  background: var(--holo);
  background-size: 200% auto;
  filter: blur(20px);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.4s ease;
  animation: shimmer 6s linear infinite;
}

.cursor-trail.is-active { opacity: 0.45; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-trail { display: none; }
}

/* ============================================
   ILLUSTRATION DIVIDER
   ============================================ */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 165, 116, 0.4) 30%,
    rgba(184, 164, 255, 0.6) 50%,
    rgba(212, 165, 116, 0.4) 70%,
    transparent 100%
  );
  background-size: 200% auto;
  animation: shimmerLine 8s ease-in-out infinite;
}

@keyframes shimmerLine {
  0%, 100% { background-position: 0% center; opacity: 0.6; }
  50% { background-position: 100% center; opacity: 1; }
}

.divider-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 165, 116, 0.25);
  color: var(--accent-warm);
  background: var(--bg);
  position: relative;
  flex-shrink: 0;
}

.divider-mark::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--holo);
  background-size: 200% auto;
  opacity: 0.15;
  filter: blur(6px);
  animation: shimmer 5s linear infinite;
  z-index: -1;
}

.divider-mark svg {
  display: block;
}

/* Tighter version for between products */
.divider-mini {
  margin: 24px 0;
}

.divider-mini .divider-mark {
  width: 36px;
  height: 36px;
}

.divider-mini .divider-mark svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   BRAND STATEMENT
   ============================================ */

.statement {
  padding: 140px var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Stacked HEADY/HEADS wordmark watermark. HEADY on top, HEADS below,
   so the full lockup fits inside the viewport at any width. Subtle
   amber outline behind the centered editorial copy. */
.statement-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 165, 116, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.statement-watermark span { display: block; }

.statement p,
.statement-mark {
  position: relative;
  z-index: 1;
}

.statement p {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--text);
}

.statement em {
  font-style: italic;
  background: var(--holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statement-mark {
  display: block;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.statement-mark strong {
  color: var(--accent-warm);
  font-weight: 500;
}

/* ============================================
   FEATURED DROP
   ============================================ */

.drop {
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}

.drop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(184, 164, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.drop-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.drop-text h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin: 16px 0 24px;
}

.drop-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.drop-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.drop-specs li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drop-specs span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.drop-specs strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.drop-visual {
  position: relative;
  aspect-ratio: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop-visual img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 80px rgba(184, 164, 255, 0.2));
}

.drop-visual.cycle .cycle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: 14s ease-in-out infinite;
}

.drop-visual.cycle .cycle-img:nth-child(1) { animation-name: dropFadeA; }
.drop-visual.cycle .cycle-img:nth-child(2) { animation-name: dropFadeB; }
.drop-visual.cycle .cycle-img:nth-child(3) { animation-name: dropFadeC; }

@keyframes dropFadeA {
  0%, 28%   { opacity: 1; }
  33%       { opacity: 0; }
  66%       { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@keyframes dropFadeB {
  0%, 28%   { opacity: 0; }
  38%, 61%  { opacity: 1; }
  66%       { opacity: 0; }
  100%      { opacity: 0; }
}
@keyframes dropFadeC {
  0%, 61%   { opacity: 0; }
  71%, 94%  { opacity: 1; }
  100%      { opacity: 0; }
}

.drop:hover .cycle-img,
.drop:focus-within .cycle-img {
  animation-play-state: paused;
}

.drop-visual img.placeholder,
.drop-visual img:not([src]),
.drop-visual img[src=""] {
  width: 80%;
  aspect-ratio: 0.5;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  border: 1px dashed var(--border);
}

@media (max-width: 900px) {
  .drop { padding: 80px var(--gutter); }
  .drop-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   THREE TYPES
   ============================================ */

.types {
  padding: 120px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: var(--max-width);
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 16px;
}

.section-head .section-link {
  position: absolute;
  right: 0;
  bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-head .section-link:hover {
  color: var(--accent-warm);
}

@media (max-width: 900px) {
  .section-head .section-link { position: static; display: block; margin-top: 16px; }
}

.types-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, var(--card-glow, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.type-indica { --card-glow: rgba(126, 195, 224, 0.15); }
.type-sativa { --card-glow: rgba(212, 117, 74, 0.15); }
.type-hybrid { --card-glow: rgba(126, 197, 169, 0.15); }

.type-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

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

.type-card > * { position: relative; }

.type-icon {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 24px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--card-color);
}

.type-indica .type-icon { color: var(--indica); border-color: rgba(126, 195, 224, 0.4); }
.type-sativa .type-icon { color: var(--sativa); border-color: rgba(212, 117, 74, 0.4); }
.type-hybrid .type-icon { color: var(--hybrid); border-color: rgba(126, 197, 169, 0.4); }

.type-card h3 {
  font-size: 36px;
  margin-bottom: 12px;
}

.type-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.type-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.type-card:hover .type-cta { color: var(--accent-warm); }

@media (max-width: 900px) {
  /* Mobile: pillar cards become a horizontal scroll-snap carousel.
     One card per viewport, swipe/tap-dot to navigate. The dots
     element directly after .types-grid is populated by
     assets/js/pillars-carousel.js. */
  .types-grid {
    display: grid;
    grid-template-columns: repeat(3, 85%);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px calc((100% - 85%) / 2);
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .types-grid::-webkit-scrollbar { display: none; }
  .types-grid > .type-card { scroll-snap-align: center; }
  .types { padding: 80px var(--gutter); }
}

/* ============================================
   PRODUCTS
   ============================================ */

.products {
  padding: 120px var(--gutter);
}

.product-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   PRODUCT MARQUEE - homepage auto-scrolling collection
   Cards drift left at constant slow pace, loop seamlessly
   via duplicated track. Pauses on hover so users can read
   or click. Mobile: respects native horizontal scroll.
   ============================================ */

.product-marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  cursor: grab;
  /* CRITICAL: override the global html { scroll-behavior: smooth } so
     per-frame scrollLeft increments from JS auto-drift are not queued
     by the browser as smooth-scroll animations (which makes drift hitchy
     or stop entirely). */
  scroll-behavior: auto;
  /* Hide native scrollbar but keep functionality */
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Soft fade on the edges so cards appear/disappear smoothly */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  /* Smooth touch scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}

.product-marquee::-webkit-scrollbar { display: none; }

.product-marquee.is-dragging { cursor: grabbing; }

.product-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* No CSS animation - JS drives the drift via scrollLeft so user
     can interrupt with mouse drag or finger swipe at any time. */
}

.product-marquee-track .product-card {
  width: 320px;
  flex-shrink: 0;
  /* Prevent native drag-image on mouse-down (interferes with our drag) */
  user-select: none;
  -webkit-user-drag: none;
}

.product-marquee-track .product-card img {
  pointer-events: none; /* Click-through to the <a> parent */
  -webkit-user-drag: none;
}

/* Mobile: smaller cards + tighter gap */
@media (max-width: 768px) {
  .product-marquee-track .product-card {
    width: 260px;
  }
  .product-marquee-track {
    gap: 16px;
  }
  .product-marquee {
    cursor: default; /* Native swipe; no grab cursor needed */
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: var(--holo);
  background-size: 200% auto;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  background: var(--bg-soft);
}

.product-card:hover::before {
  opacity: 1;
  animation: shimmer 4s linear infinite;
}

.product-image {
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
  transition: transform 0.6s ease;
}

/* Cycling carousel - 3 stacked images crossfading */
.product-image.cycle .cycle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0;
  animation: cycleFade 12s ease-in-out infinite;
  animation-delay: var(--cycle-delay, 0s);
}

.product-image.cycle .cycle-img:nth-child(1) { animation-name: cycleFadeA; }
.product-image.cycle .cycle-img:nth-child(2) { animation-name: cycleFadeB; }
.product-image.cycle .cycle-img:nth-child(3) { animation-name: cycleFadeC; }

@keyframes cycleFadeA {
  0%, 28%   { opacity: 1; transform: scale(1.18); }
  33%       { opacity: 0; transform: scale(1.18); }
  66%       { opacity: 0; transform: scale(1.18); }
  95%, 100% { opacity: 1; transform: scale(1.18); }
}
@keyframes cycleFadeB {
  0%, 28%   { opacity: 0; transform: scale(1.18); }
  38%, 61%  { opacity: 1; transform: scale(1.18); }
  66%       { opacity: 0; transform: scale(1.18); }
  100%      { opacity: 0; transform: scale(1.18); }
}
@keyframes cycleFadeC {
  0%, 61%   { opacity: 0; transform: scale(1.18); }
  71%, 94%  { opacity: 1; transform: scale(1.18); }
  100%      { opacity: 0; transform: scale(1.18); }
}

/* Pause cycling on hover/focus so users can study a specific strain */
.product-card:hover .cycle-img,
.product-card:focus-within .cycle-img {
  animation-play-state: paused;
}

/* Pause and sync strain dots with active image */
.product-image.cycle ~ .product-meta .strain-dots .dot {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .accent-shimmer,
  .divider-line,
  .divider-mark::before,
  .hero-text h1 em { animation: none; }
  .product-image.cycle .cycle-img {
    animation: none;
    opacity: 1;
  }
  .product-image.cycle .cycle-img:nth-child(2),
  .product-image.cycle .cycle-img:nth-child(3) { display: none; }
}

.product-image img.placeholder,
.product-image img:not([src]),
.product-image img[src=""] {
  width: 60%;
  height: 80%;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  border: 1px dashed var(--border);
}

.product-card:hover .product-image img:not(.cycle-img) { transform: scale(1.25); }

.product-meta {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.badge-indica { background: rgba(126, 195, 224, 0.12); color: var(--indica); border: 1px solid rgba(126, 195, 224, 0.3); }
.badge-sativa { background: rgba(212, 117, 74, 0.12); color: var(--sativa); border: 1px solid rgba(212, 117, 74, 0.3); }
.badge-hybrid { background: rgba(126, 197, 169, 0.12); color: var(--hybrid); border: 1px solid rgba(126, 197, 169, 0.3); }

.strain-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.strain-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.strain-dots .dot-indica { background: var(--indica); }
.strain-dots .dot-sativa { background: var(--sativa); }
.strain-dots .dot-hybrid { background: var(--hybrid); }

.product-strains {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -12px;
  margin-bottom: 20px;
}

.product-meta h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.product-line {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.product-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.product-card:hover .product-cta { color: var(--accent-warm); }

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

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .products { padding: 80px var(--gutter); }
}

/* ============================================
   COLLABS - limited edition releases
   ============================================ */

.collabs {
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
}

.collabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 164, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.collabs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.collabs-head {
  text-align: center;
  margin-bottom: 56px;
}

.collabs h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 16px;
}

.collabs-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.collabs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.collab-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.collab-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

/* Holographic border accent on hover */
.collab-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: var(--holo);
  background-size: 200% auto;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.collab-card:hover::before {
  opacity: 1;
  animation: shimmer 4s linear infinite;
}

.collab-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--holo);
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.collab-image {
  aspect-ratio: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at center, rgba(184, 164, 255, 0.04), transparent 70%);
}

.collab-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

.collab-card:hover .collab-image img {
  transform: scale(1.12);
}

.collab-meta {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.collab-partner {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.collab-meta h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.collab-meta p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.collab-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.collab-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collab-specs span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.collab-specs strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.status-live {
  color: var(--hybrid) !important;
}

.status-soon {
  color: var(--accent) !important;
}

.status-soldout {
  color: var(--text-dim) !important;
  text-decoration: line-through;
}

.collab-meta .btn {
  margin-top: auto;
}

.collabs-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.collabs-cta p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .collabs-grid { grid-template-columns: 1fr; }
  .collab-meta { padding: 24px; }
  .collab-specs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ============================================
   RECENT DROPS TICKER
   ============================================ */

.recent-drops {
  padding: 100px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.recent-drops-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.recent-drops-head {
  margin-bottom: 48px;
}

.recent-drops h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 16px;
}

.recent-drops-head p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
}

.drops-list {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 800px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}

.drop-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.drop-city {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.drop-row:last-child { border-bottom: none; }
.drop-row:hover { background: var(--bg-card); }

.drop-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 6px 0;
  min-width: 48px;
}

.drop-month {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.drop-day {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  margin-top: 2px;
}

.drop-retailer {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  line-height: 1.3;
}

.drop-status {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.recent-drops-cta {
  display: inline-flex;
}

.recent-drops-foot {
  margin: 32px auto 24px;
  max-width: 480px;
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.recent-drops-foot strong {
  color: var(--accent-warm);
  font-weight: 500;
}

@media (max-width: 600px) {
  .drop-row { padding: 14px 16px; gap: 14px; }
  .drop-status { display: none; }
  .drop-city { font-size: 11px; }
  .recent-drops { padding: 80px var(--gutter); }
}

/* ============================================
   IN ROTATION
   ============================================ */

.rotation {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--border);
}

.rotation-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.rotation h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 16px;
}

.rotation-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.rotation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.rotation-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.rotation-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-2px);
}

.rotation-card.rotation-more {
  background: transparent;
  border-style: dashed;
  border-color: var(--border-hover);
  text-decoration: none;
  cursor: pointer;
}
a.rotation-card.rotation-more:hover {
  border-color: var(--accent-warm);
  border-style: solid;
}
a.rotation-card.rotation-more .rotation-strain {
  color: var(--accent-warm);
}

/* Dedicated /rotation.html page - denser grid with filter chips */
.rotation-grid-full {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}

.rotation-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.rotation-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.rotation-filter:hover {
  border-color: var(--accent-warm);
  color: var(--text);
}
.rotation-filter.is-active {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  color: var(--bg);
}

@media (max-width: 1000px) {
  .rotation-grid-full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .rotation-grid-full { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.rotation-strain {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  line-height: 1.2;
}

.rotation-type {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rotation-type.type-indica { color: var(--indica); }
.rotation-type.type-sativa { color: var(--sativa); }
.rotation-type.type-hybrid { color: var(--hybrid); }

.rotation-note {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  max-width: 540px;
  margin: 0 auto;
}

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

/* ============================================
   TABLET FIX: 2-up pillar grids between 600 and 900px
   ============================================
   The 900px breakpoint flips both pillar grids into scroll-snap
   carousel mode at 85% column width. On tablet portrait (~768px)
   that lands at 1.18 cards visible - neither one cleanly nor 2-up,
   so the snap doesn't feel like a snap. Force a 2-up grid in the
   600-900px band; below 600 the existing carousel pattern kicks in. */
@media (min-width: 600px) and (max-width: 900px) {
  .types-grid,
  .about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
  /* Last card spans both columns so 3-card sets don't leave a lonely
     orphan in the bottom-right cell. */
  .types-grid > .type-card:nth-child(3),
  .about-pillars-grid > .about-pillar:nth-child(3) {
    grid-column: 1 / -1;
  }
  /* Hide the dot pagination since it's a grid, not a carousel, in
     this band. */
  .pillars-dots { display: none; }
}

@media (max-width: 600px) {
  /* Two-up grid on phones - tighter cards so two fit side-by-side
     instead of one long stacked column. */
  .rotation-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rotation-card { padding: 18px 14px; gap: 8px; }
  .rotation-strain { font-size: 17px; }
  .rotation-type { font-size: 10px; }
  .rotation { padding: 80px var(--gutter); }
}

/* ============================================
   EVENTS
   ============================================ */

.events {
  padding: 120px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.events-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.events-head {
  text-align: center;
  margin-bottom: 56px;
}

.events-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 16px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 32px;
}

.event-card {
  background: var(--bg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  transition: background 0.3s ease;
}

.event-card:hover { background: var(--bg-card); }

/* Past events - dimmed, struck-through title, "Past Event" tag override */
.event-card.is-past {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.event-card.is-past:hover {
  opacity: 0.75;
  filter: grayscale(0);
  background: var(--bg-card);
}

.event-card.is-past .event-meta h3 {
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
  text-decoration-thickness: 1px;
}

.event-card.is-past .event-tag {
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

.event-card.is-past .event-date {
  border-color: var(--border);
}

.event-card.is-past .event-month,
.event-card.is-past .event-day {
  color: var(--text-dim);
}

.event-card.is-past .event-cta {
  pointer-events: none;
  opacity: 0.5;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding: 12px 0;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
}

.event-month {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.event-day {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}

.event-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.event-meta h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.event-loc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.event-time {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.event-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.event-card:hover .event-cta { color: var(--accent-warm); }

.events-all {
  display: inline-flex;
  margin: 0 auto;
}

.events-empty {
  max-width: 540px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .event-card { grid-template-columns: auto 1fr; gap: 20px; padding: 20px 24px; }
  .event-cta { grid-column: 1 / -1; justify-self: start; padding-left: 84px; }
  .events { padding: 80px var(--gutter); }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  /* Gray to keep the homepage's section alternation clean
     (about: black, faq: gray, contact: gray... but contact is also
     gray so we let FAQ break to gray here and the contact-FAQ
     transition gets a soft border-top to mark the seam). */
  padding: 120px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq-inner > h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 22px;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: var(--accent-warm);
}
.faq-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary::after {
  content: '-';
  color: var(--accent-warm);
}
.faq-item p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item p a {
  color: var(--accent-warm);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .faq { padding: 80px var(--gutter); }
  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 15px; }
  .faq-item p { font-size: 14px; }
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  /* Black with the new FAQ-gray-then-contact-black-then-subscribe-
     gray ordering, restoring alternation now that FAQ is between
     About (black) and here. No border-top because .faq already has
     border-bottom - duplicating both at the seam produced a visibly
     thicker hairline than the rest of the section seams. */
  padding: 120px var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 24px;
}

.contact-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-direct-single {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-direct-single:hover {
  color: var(--accent-warm);
  border-bottom-color: var(--accent-warm);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px; /* 16px prevents iOS Safari zoom-on-focus */
  color: var(--text);
  transition: border-color 0.3s ease;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-field select {
  cursor: pointer;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 12px;
}

.contact-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Honeypot - visually hidden but still rendered so bots see and fill it. */
.contact-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-status {
  margin: 0;
  font-size: 13px;
  min-height: 1.2em;
  color: var(--text-muted);
}
.contact-status[data-state="success"] { color: #6fcf97; }
.contact-status[data-state="error"]   { color: #f87171; }
.contact-status[data-state="pending"] { color: var(--text-muted); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact { padding: 80px var(--gutter); }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  /* Black to break the gray streak. Section sequence on the homepage
     alternates cleanly B G B G B G B G B G B G from Statement through
     Wholesale (FAQ added between About and Contact in the gray slot). */
  padding: 120px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 24px;
}

.about p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  text-align: left;
}

.about-pillars > div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-card);
}

.pillar-icon {
  display: block;
  font-size: 24px;
  color: var(--accent-warm);
  margin-bottom: 16px;
}

.about-pillars strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.about-pillars p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 800px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* ============================================
   FIND US
   ============================================ */

.find {
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.find::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.find-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.store-search {
  max-width: 600px;
  margin: 32px auto 24px;
  text-align: left;
}

.store-search-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
}

.store-search-row {
  display: flex;
  gap: 8px;
}

.store-search-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 16px; /* 16px prevents iOS Safari zoom-on-focus */
  color: var(--text);
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.store-search-row input:focus {
  border-color: var(--accent);
  outline: none;
}

.store-search-row .btn { flex-shrink: 0; }

.store-search-hint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-align: center;
}

.store-list {
  margin: 24px 0 32px;
  text-align: left;
}

.store-distance {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent-warm);
  font-weight: 500;
  flex-shrink: 0;
}

.store-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.store-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 600px) {
  .store-search-row { flex-direction: column; }
  .store-search-row .btn { justify-content: center; }
}

.store-loading {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

.store-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.store-item {
  background: var(--bg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.3s ease;
}

.store-item:hover {
  background: var(--bg-card);
}

.store-name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  line-height: 1.3;
}

.store-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.store-foot {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 700px) {
  .store-grid { grid-template-columns: 1fr; }
}

.find h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 24px;
}

.find p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ============================================
   WHOLESALE
   ============================================ */

.wholesale {
  /* Black after gray subscribe to maintain alternation. */
  padding: 80px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.wholesale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 164, 255, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

.wholesale-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  position: relative;
}

.wholesale h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 12px 0 12px;
}

.wholesale p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .wholesale-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   CATALOG PAGE
   ============================================ */

.catalog-hero {
  padding: 80px var(--gutter) 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(184, 164, 255, 0.06) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.catalog-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.catalog-hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.catalog-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.catalog-body {
  padding: 64px var(--gutter) 100px;
  background: var(--bg-soft);
}

.catalog-body-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalog-filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.catalog-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.catalog-filter:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.catalog-filter.is-active {
  background: var(--accent-warm);
  color: var(--bg);
  border-color: var(--accent-warm);
}

.catalog-count {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.catalog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

/* `display: flex` above overrides the `hidden` HTML attribute that the
   filter JS sets. Re-assert hide behavior so chips actually filter. */
.catalog-card[hidden] { display: none; }

.catalog-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
}

.catalog-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--accent-warm);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.catalog-tag-limited {
  background: var(--holo);
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}

.catalog-collab-partner {
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-bottom: 8px !important;
}

.catalog-image {
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.catalog-image img:not(.cycle-img) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.18);
  transition: transform 0.6s ease;
}

.catalog-image.cycle .cycle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0;
  animation: 12s ease-in-out infinite;
}

.catalog-image.cycle .cycle-img:nth-child(1) { animation-name: cycleFadeA; }
.catalog-image.cycle .cycle-img:nth-child(2) { animation-name: cycleFadeB; }
.catalog-image.cycle .cycle-img:nth-child(3) { animation-name: cycleFadeC; }

.catalog-card:hover .cycle-img,
.catalog-card:focus-within .cycle-img {
  animation-play-state: paused;
}

.catalog-card:hover .catalog-image img:not(.cycle-img) {
  transform: scale(1.25);
}

.catalog-meta {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-meta h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.catalog-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.catalog-strains {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.catalog-cta {
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 16px;
}

.catalog-coming {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.catalog-coming h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 16px;
}

.catalog-coming p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-filters { flex-direction: column; align-items: flex-start; }
  .catalog-body { padding: 48px var(--gutter) 80px; }
}

/* ============================================
   PRODUCT DETAIL PAGES
   ============================================ */

.product-hero {
  padding: 60px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(184, 164, 255, 0.08) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.product-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 32px;
}

.product-hero-text h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 16px 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.product-hero-text h1 em {
  font-style: italic;
  background: var(--holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}

.product-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.product-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-specs span {
  /* Tighter label so the value below dominates the visual weight.
     11px -> 10px + dim color makes the eye land on the data first. */
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.product-specs strong {
  /* Bigger + bolder so the value reads as the primary signal of
     the spec row, not a co-equal sibling of the label. */
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.product-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.product-hero-visual {
  position: relative;
  aspect-ratio: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

/* The `hidden` HTML attribute defaults to display:none, but `display:flex`
   above overrides it. Re-assert the hide behavior explicitly. */
.product-hero-visual[hidden] {
  display: none;
}

.product-hero-visual img:not(.cycle-img) {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 80px rgba(184, 164, 255, 0.2));
}

.product-hero-visual.cycle .cycle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: 14s ease-in-out infinite;
  filter:
    drop-shadow(0 40px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 80px rgba(184, 164, 255, 0.2));
}

.product-hero-visual.cycle .cycle-img:nth-child(1) { animation-name: dropFadeA; }
.product-hero-visual.cycle .cycle-img:nth-child(2) { animation-name: dropFadeB; }
.product-hero-visual.cycle .cycle-img:nth-child(3) { animation-name: dropFadeC; }

.product-hero-visual:hover .cycle-img,
.product-hero-visual:focus-within .cycle-img {
  animation-play-state: paused;
}

.pack-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px;
  width: fit-content;
}

.pack-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.pack-tab:hover { color: var(--text); }

.pack-tab.is-active {
  background: var(--accent-warm);
  color: var(--bg);
}

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.product-detail {
  padding: 100px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.detail-block h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 20px;
}

.detail-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-block p:last-child { margin-bottom: 0; }

.strain-availability {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}

.strain-avail-card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: left;
}

.strain-avail-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strain-avail-type.type-indica { color: var(--indica); }
.strain-avail-type.type-sativa { color: var(--sativa); }
.strain-avail-type.type-hybrid { color: var(--hybrid); }

.strain-avail-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.strain-note {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

.strain-note a {
  color: var(--accent-warm);
  border-bottom: 1px solid var(--accent-warm);
}

@media (max-width: 700px) {
  .strain-availability { grid-template-columns: 1fr; }
}

.product-related {
  padding: 100px var(--gutter);
}

.product-related-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.product-related h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 16px 0 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.related-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
}

.related-image {
  aspect-ratio: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-bottom: 1px solid var(--border);
}

.related-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.related-meta {
  padding: 28px;
}

.related-meta h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.related-meta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Make product cards on home grid actual links (no underline) */
.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  padding: 80px var(--gutter) 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(184, 164, 255, 0.06) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.about-hero h1 {
  font-size: clamp(44px, 6.5vw, 84px);
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.about-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* "Currently shipping at X dispensaries" line under the about hero.
   The number is populated from window.HH_DATA.stores.count by an inline
   script at the bottom of about.html. */
.about-hero-now {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  max-width: 720px;
  margin: 24px auto 0;
}
.about-hero-now strong {
  color: var(--text);
  font-weight: 500;
}
.about-hero-now a {
  color: var(--accent-warm);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* "What We Make" section on the about page - 4 product cards linking
   to the product pages. Also serves as internal SEO linking and gives
   AI search engines a clean answer to "what does Heady Heads sell". */
.about-makes {
  padding: 100px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-makes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.about-makes-inner > h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 16px 0 40px;
}
.about-makes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.about-make-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.about-make-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-2px);
}
.about-make-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--text);
}
.about-make-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 14px;
}
.about-make-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
@media (max-width: 800px) {
  .about-makes-grid { grid-template-columns: 1fr; }
  .about-makes { padding: 80px var(--gutter); }
}

.about-story {
  padding: 80px var(--gutter) 120px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.about-story-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  text-align: center;
}

.story-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.story-marker {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  padding: 6px 14px 4px;
  border-top: 1px solid var(--accent-warm);
  border-bottom: 1px solid var(--accent-warm);
}

.story-block h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 4px 0 8px;
  line-height: 1.15;
}

.story-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.about-pillars-section {
  padding: 120px var(--gutter);
  text-align: center;
}

.about-pillars-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-pillars-section h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 16px 0 56px;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.about-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.about-pillar:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
}

.pillar-number {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  /* Solid amber as fallback for browsers (Firefox) that don't honor
     -webkit-text-stroke. Webkit/Chromium/Safari override this with the
     stroke + transparent fill below for the outlined-numeral effect. */
  color: rgba(212, 165, 116, 0.4);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(212, 165, 116, 0.4);
  margin-bottom: 16px;
  line-height: 1;
}

.about-pillar h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.about-pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  /* Mobile: same scroll-snap carousel pattern as the home page pillars. */
  .about-pillars-grid {
    grid-template-columns: repeat(3, 85%);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px calc((100% - 85%) / 2);
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .about-pillars-grid::-webkit-scrollbar { display: none; }
  .about-pillars-grid > .about-pillar { scroll-snap-align: center; }
}

/* Dot indicators for the mobile pillar carousel. Hidden on desktop
   (cards are 3-up grid there, no carousel needed). */
.pillars-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.pillars-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}
.pillars-dot:hover { background: var(--border-hover); }
.pillars-dot.is-active {
  background: var(--accent-warm);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .pillars-dots { display: flex; }
}

.about-quote {
  /* Black to break the gray streak with about-makes above. About-page
     section alternation now reads B G B G B G:
       hero -> story -> pillars -> makes -> quote -> cta. */
  padding: 140px var(--gutter);
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.quote-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(160px, 26vw, 420px);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 165, 116, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.about-quote blockquote {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--text);
}

.about-quote em {
  font-style: italic;
  background: var(--holo);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-cta {
  /* Gray after black quote to keep the about-page B G B G B G rhythm. */
  padding: 100px var(--gutter);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 32px;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   LOCATOR PAGE
   ============================================ */

.locator-hero {
  padding: 80px var(--gutter) 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.locator-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.back-link:hover { color: var(--accent-warm); }

.locator-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 16px 0 24px;
  font-family: var(--serif);
  font-weight: 400;
}

.locator-hero p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ============================================
   MERCH (Coming Soon page)
   ============================================ */

.merch-hero {
  padding: 100px var(--gutter) 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 165, 116, 0.06) 0%, transparent 60%),
    var(--bg);
}
.merch-hero-inner {
  max-width: 840px;
  margin: 0 auto;
}
.merch-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  margin: 16px 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}
.merch-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}
.merch-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.merch-preview {
  padding: 100px var(--gutter);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.merch-preview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.merch-preview-inner > h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 16px 0 40px;
}
.merch-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.merch-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.merch-preview-card:hover {
  border-color: var(--accent-warm);
}
.merch-preview-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.merch-preview-card h3 {
  font-size: 22px;
  margin: 8px 0 10px;
  color: var(--text);
}
.merch-preview-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.merch-preview-note {
  margin: 32px auto 0;
  max-width: 640px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}
.merch-preview-note a {
  color: var(--accent-warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 800px) {
  .merch-preview-grid { grid-template-columns: 1fr; }
  .merch-preview { padding: 80px var(--gutter); }
  .merch-hero { padding: 80px var(--gutter) 64px; }
}

.locator-body {
  padding: 64px var(--gutter) 120px;
  background: var(--bg-soft);
  min-height: 60vh;
}

.locator-body-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.locator-search {
  max-width: 720px;
  margin: 0 auto 48px;
}

.locator-search .store-search-row .btn {
  white-space: nowrap;
}

.locator-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-align: center;
}

.locator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.locator-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.locator-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-2px);
}

.locator-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 4px;
}

.locator-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.locator-distance {
  /* Sans + bold for the distance value - it's data, not a label, and
     the previous serif treatment made it read like decorative copy
     rather than the most important number on the card. */
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-warm);
  flex-shrink: 0;
}

.locator-parent {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.locator-address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.locator-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.locator-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.locator-link:hover { text-decoration: underline; }

.locator-recent {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.locator-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 64px 24px;
  font-size: 16px;
}

@media (max-width: 600px) {
  .locator-search .store-search-row { flex-direction: column; }
  .locator-search .store-search-row .btn { justify-content: center; }
  .locator-actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SUBSCRIBE / DROP ALERTS
   ============================================ */

.subscribe {
  /* Gray to keep section alternation clean
     (contact: black, subscribe: gray, wholesale: black). */
  padding: 120px var(--gutter);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.subscribe-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.subscribe-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 24px;
}

.subscribe-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.subscribe-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.subscribe-perks li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex-shrink: 0;
}

.subscribe-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-hint {
  font-style: normal;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: 0.05em;
  margin-left: 6px;
  font-size: 11px;
}

.contact-field-inline {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.contact-field-inline span {
  flex-shrink: 0;
  margin: 0;
}

.contact-field-inline select {
  flex: 1;
}

.subscribe-prefs {
  border: none;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subscribe-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.subscribe-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent-warm);
  flex-shrink: 0;
}

.subscribe-checkbox span a {
  color: var(--accent-warm);
  border-bottom: 1px solid var(--accent-warm);
}

.subscribe-consent {
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}

.subscribe-form button {
  align-self: flex-start;
  margin-top: 8px;
}

.subscribe-status {
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0;
  min-height: 20px;
}

.subscribe-status[data-state="success"] {
  color: var(--accent-warm);
}

.subscribe-status[data-state="error"] {
  color: var(--sativa);
}

.subscribe-status[data-state="success"] {
  color: var(--accent-warm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(184, 134, 79, 0.1);
  border: 1px solid rgba(184, 134, 79, 0.35);
  border-radius: 3px;
  min-height: 0;
  margin-top: 4px;
}

.subscribe-status[data-state="success"] span {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .subscribe-inner { grid-template-columns: 1fr; gap: 48px; }
  .subscribe { padding: 80px var(--gutter); }
  .contact-field-inline { flex-direction: column; align-items: stretch; gap: 8px; }
  .contact-field-inline span { margin-bottom: 0; }
}

/* ============================================
   MOBILE OPTIMIZATIONS - global refinements
   ============================================ */

@media (max-width: 768px) {
  /* Sensible defaults - prevent horizontal scroll, tighten gutters */
  body { overflow-x: hidden; }
  :root { --gutter: 20px; }

  /* All buttons at least 44px tall on mobile (Apple HIG / Material Design) */
  .btn { min-height: 48px; padding: 14px 24px; font-size: 12px; }
  .btn-text { padding: 12px 4px; min-height: 44px; display: inline-flex; align-items: center; }

  /* TIGHTER vertical rhythm - the section padding was too generous on phones */
  section { padding-left: 20px; padding-right: 20px; }
  .statement,
  .drop,
  .types,
  .products,
  .recent-drops,
  .rotation,
  .events,
  .contact,
  .find,
  .about,
  .subscribe,
  .product-detail,
  .product-related,
  .catalog-body,
  .about-story,
  .about-pillars-section,
  .about-quote,
  .about-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Section heads tighter on phones */
  .section-head { margin-bottom: 40px; }

  /* Card-internal CTA touch targets - 44px min for thumb taps.
     IMPORTANT: do NOT apply display: inline-flex to .product-card or
     .related-card themselves; they are block-level cards containing
     image + meta and the inline-flex would collapse them. The CTA
     spans inside cards get the min-height instead. */
  .product-cta,
  .catalog-cta,
  .event-cta,
  .locator-link,
  .type-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Pack tabs tap-friendly */
  .pack-tab { min-height: 44px; padding: 12px 18px; }
  .catalog-filter { min-height: 44px; padding: 12px 16px; }

  /* Bigger headings work but keep line-height tight */
  h1, h2, h3 { line-height: 1.1; }

  /* Footer columns stack cleaner on phone */
  .footer { padding: 56px 20px 24px; }
  .footer-fine { font-size: 10px; line-height: 1.6; }

  /* Reduce hero padding and tune for thumb-zone reachability */
  .hero { padding: 32px 20px 56px; }
  .hero-text h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 40px; }

  /* Better spacing in hero stats on small screens */
  .hero-stats { padding-top: 20px; gap: 14px; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 10px; }

  /* Hide the cursor trail entirely on touch */
  .cursor-trail { display: none !important; }

  /* Forms - tighten padding so inputs do not shrink to ~250px wide.
     Make submit buttons full-width on mobile for thumb-zone reachability. */
  .contact-form,
  .subscribe-form { padding: 24px 20px; }
  .contact-form button,
  .subscribe-form button { width: 100%; justify-content: center; }

  /* Ticker - bump min-height for long messages that wrap */
  .ticker { min-height: 56px; height: auto; }
  .ticker-slide { padding: 8px 16px; }

  /* Product detail hero visual - cap height so the spec block stays
     visible without scrolling on phones */
  .product-hero-visual { max-height: 320px; }
  .product-hero-grid { gap: 32px; }

  /* Locator card grid - 1 column under 600px */
  .locator-grid { grid-template-columns: 1fr; }

  /* Footer fine-print: bump contrast slightly on mobile */
  .footer-fine { color: var(--text-muted); }

  /* Larger tap targets on form selects on iOS */
  select { padding-right: 32px; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 14px) 50%; background-size: 4px 4px, 4px 4px; background-repeat: no-repeat; }
}

/* Very small phones - extra compaction */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .btn { padding: 12px 18px; font-size: 11px; gap: 6px; }
  .hero-text h1 { font-size: 36px; }
  section { padding-left: 16px; padding-right: 16px; }
  .nav-inner { padding: 4px 14px !important; }
  .nav-logo img { height: 48px !important; }
  h2 { font-size: clamp(28px, 7vw, 36px) !important; }
}

/* iPhone notch / home indicator safe areas */
@supports (padding: max(0px)) {
  .ticker {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .nav-inner {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  /* Mobile drawer respects notch and home bar */
  @media (max-width: 1000px) {
    .nav-links {
      padding-top: max(96px, calc(96px + env(safe-area-inset-top)));
      padding-bottom: max(32px, calc(32px + env(safe-area-inset-bottom)));
    }
  }
}

/* ============================================
   404 PAGE
   ============================================ */

.not-found {
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(184, 164, 255, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.not-found-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.not-found-code {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 165, 116, 0.4);
  margin-bottom: 24px;
}

.not-found h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 20px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

.not-found p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .not-found-actions { flex-direction: column; align-items: stretch; }
  .not-found { padding: 80px 20px; }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 80px var(--gutter) 32px;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-warm); }

.footer-fine {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
