/* =============================================
   REID'S RUNTZ — DESIGN SYSTEM
   ============================================= */

/* 1. VARIABLES */
:root {
  --black:   #000000;
  --white:   #ffffff;
  --orange:  #ffa102;
  --amber:   #ffa102;
  --silver:  #dedede;
  --dark-bg: #0a0a0a;
  --card-bg: #111111;

  --font-body:  'Manrope', sans-serif;
  --font-title: 'Montserrat', sans-serif;

  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 3. TEXT SELECTION */
::selection { background: var(--amber); color: var(--black); }
::-moz-selection { background: var(--amber); color: var(--black); }

/* 4. TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 1.875rem); /* 30px */
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 6vw, 3.5rem); }

p, li {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.25rem); /* 20px */
}

.accent-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
}

.orange { color: var(--orange); }
.amber  { color: var(--amber); }
.silver { color: var(--silver); }

/* 5. CUSTOM CURSOR */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.75;
}

#cursor-dot.menu-zone {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

/* smoke canvas removed */
#smoke-canvas { display: none; }

/* 6. PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

#preloader video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
  max-height: 90vh;
}

/* 6b. COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(255, 161, 2, 0.2);
  padding: 20px 48px;
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--transition-smooth);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
#cookie-banner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#cookie-banner a:hover { color: var(--amber); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept,
.cookie-decline {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.cookie-accept  { background: var(--orange); color: var(--black); }
.cookie-accept:hover  { background: var(--amber); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
@media (max-width: 768px) {
  #cookie-banner { padding: 16px 20px; }
}

/* 7. HEADER */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#site-header.scrolled {
  background: var(--black);
  padding: 14px 48px;
  backdrop-filter: blur(12px);
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 161, 2, 0.2));
}
.header-logo:hover { opacity: 0.85; }

/* Logo write-on click animation */
.header-logo.writing {
  animation: logoReveal 1.1s var(--transition-smooth) forwards;
}
@keyframes logoReveal {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0.4; }
  100% { clip-path: inset(0 0% 0 0);   opacity: 1; }
}

/* NAV */
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  transition: color 0.3s ease;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--transition-smooth);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 8999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--orange); }

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.35s ease, transform 0.25s ease, background 0.25s ease;
}

/* Primary — amber filled */
.btn-primary {
  color: var(--black) !important;
  background: var(--amber);
  border: 2px solid var(--amber);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255, 161, 2, 0.45);
  transform: translateY(-2px);
}

/* Secondary — dark filled (for use on white backgrounds) */
.btn-secondary {
  color: var(--white);
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Alias — kept for backward compatibility */
.btn-orange-solid {
  color: var(--black) !important;
  background: var(--amber);
  border: 2px solid var(--amber);
}
.btn-orange-solid:hover {
  box-shadow: 0 8px 32px rgba(255, 161, 2, 0.45);
  transform: translateY(-2px);
}

/* 9. SECTION UTILITIES */
.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-pad { padding: 120px 48px; }
.section-pad-sm { padding: 80px 48px; }

.container { max-width: 1280px; margin: 0 auto; }

/* 10. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s var(--transition-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s var(--transition-smooth);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s var(--transition-smooth);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* 11. HERO (HOME) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255, 161, 2, 0.25);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 16px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* 12. LIVING SOIL — HOME */
.living-soil-home {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}
.soil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 70vh;
}
.soil-image-side {
  position: relative;
  overflow: hidden;
}
.soil-image-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}
.soil-image-side:hover img { transform: scale(1.04); }

.soil-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--dark-bg);
}
.soil-content-side h2 { margin-bottom: 24px; }
.soil-content-side p { color: var(--silver); margin-bottom: 36px; }

/* 13. SPRING DROP 2025 */
.spring-drop {
  background: var(--black);
  padding: 120px 48px 48px;
}
.spring-drop-header {
  text-align: center;
  margin-bottom: 72px;
}
.spring-drop-header h2 { margin-bottom: 12px; }
.strains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.strain-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 161, 2, 0.12);
  overflow: hidden;
  transition: transform 0.4s var(--transition-smooth),
              border-color 0.4s ease;
}
.strain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 161, 2, 0.4);
}

.strain-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.strain-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s var(--transition-smooth);
}
.strain-card:hover .strain-image img { transform: scale(1.06); }

/* Placeholder for missing strain images */
.strain-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.placeholder-cherries { background: linear-gradient(135deg, #1a0010, #4a0020, #8b003a); }
.placeholder-bananza  { background: linear-gradient(135deg, #1a0e00, #4a2500, #8b5200); }

.strain-body { padding: 28px 24px 0; }
.strain-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--white);
}
.strain-name em { font-style: italic; color: var(--white); }

/* ACCORDION */
.accordion { border-top: 1px solid rgba(255,255,255,0.08); }
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}
.accordion-trigger:hover { color: var(--orange); }
.accordion-icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.35s var(--transition-smooth), opacity 0.35s;
}
.accordion-icon::before { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }
.accordion-icon::after  { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--transition-smooth);
}
.accordion-panel-inner {
  padding: 0 0 20px;
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.7;
}
.accordion-item.open .accordion-panel { max-height: 400px; }

/* 14. MENU PREVIEW (HOME) */
.menu-preview {
  background: var(--black);
  color: var(--white);
  padding: 120px 48px 60px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.menu-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.menu-preview-text h2 { color: var(--white); margin-bottom: 20px; }
.menu-preview-text p  { color: var(--silver); margin-bottom: 36px; }

/* Menu preview product imagery */
.menu-preview-products {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-product-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 12px 24px 60px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
}
.menu-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.menu-product-img--flower {
  width: 220px;
  height: 300px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  z-index: 2;
}
.menu-product-img--rosin {
  width: 190px;
  height: 260px;
  right: 200px;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .menu-preview-products { display: none; }
  .menu-preview-inner { grid-template-columns: 1fr; }
}

/* 3D Menu mockup */
.menu-3d-wrap {
  perspective: 1000px;
}
.menu-mockup {
  background: var(--black);
  border: 1px solid rgba(255, 161, 2, 0.3);
  padding: 40px 32px;
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.4s var(--transition-smooth),
              box-shadow 0.4s ease;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.menu-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255,161,2,0.3), transparent, rgba(255,161,2,0.15));
  z-index: -1;
}
.menu-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(20px);
  box-shadow: 0 30px 80px rgba(255, 161, 2, 0.2);
}
.menu-mockup-title {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  text-align: center;
}
.menu-mockup-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-mockup-item:last-child { border-bottom: none; }
.mockup-nug {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a2a00, #1a1200);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.mockup-nug::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,161,2,0.3), transparent);
}
.mockup-item-info { flex: 1; }
.mockup-item-name {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.mockup-item-genetics { font-size: 0.65rem; color: var(--silver); letter-spacing: 0.1em; }
.mockup-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
}

/* 15. FLOWER PAGE */
.flower-hero {
  height: 60vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}
.flower-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,161,2,0.08) 0%, transparent 60%);
}

.flower-section {
  background: var(--black);
  padding: 0;
}

.flower-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  position: relative;
}
.flower-item:nth-child(even) { direction: rtl; }
.flower-item:nth-child(even) > * { direction: ltr; }

.flower-img-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.flower-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.flower-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px;
  background: var(--dark-bg);
}
.flower-item:nth-child(even) .flower-info { background: var(--card-bg); }

.flower-genetics {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.flower-item-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.flower-desc { color: var(--silver); line-height: 1.8; }
.flower-caution {
  margin-top: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 161, 2, 0.7);
  font-weight: 700;
  text-transform: uppercase;
}

/* 16. LIVING SOIL PAGE */
.soil-hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.soil-hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.soil-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.soil-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--silver);
}
.soil-badge { display: flex; align-items: center; gap: 8px; }
.soil-badge .icon { font-size: 1.2rem; }

/* Timeline / stages */
.soil-stages {
  background: var(--dark-bg);
  padding: 120px 48px;
}
.stages-header { text-align: center; margin-bottom: 80px; }
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
}
.stage-item {
  background: var(--dark-bg);
  overflow: hidden;
  position: relative;
}
.stage-number {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-weight: 700;
  z-index: 2;
}
.stage-img {
  height: 420px;
  overflow: hidden;
}
.stage-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}
.stage-item:hover .stage-img img { transform: scale(1.06); }
.stage-caption {
  padding: 24px 24px 32px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
}
.stage-desc { padding: 0 24px 24px; font-size: 0.85rem; color: var(--silver); line-height: 1.7; }

/* soil philosophy */
.soil-philosophy {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
}
.soil-philosophy h2 { margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }
.soil-philosophy p  { max-width: 640px; margin: 0 auto; color: var(--silver); }

/* 17. STORY PAGE — HORIZONTAL SCROLL */
.story-intro {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.story-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,161,2,0.06), transparent 70%);
}

/* Package mockup */
.package-mockup {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 48px;
}
.package-jar {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.08), rgba(0,0,0,0.6));
  border: 2px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.package-label {
  position: absolute;
  bottom: 15%;
  left: 5%;
  right: 5%;
  height: 35%;
  background: var(--black);
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  transform-origin: bottom center;
  animation: labelRoll 1.4s var(--transition-smooth) forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
@keyframes labelRoll {
  0%   { transform: rotateX(80deg) scaleY(0.1); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: rotateX(0deg) scaleY(1); opacity: 1; }
}

/* Carousel wrapper */
.story-carousel {
  background: var(--black);
  overflow: hidden;
}
.story-track {
  display: flex;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chapter-slide {
  min-width: 100vw;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Carousel controls bar */
.story-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 161, 2, 0.15);
}
.story-prev,
.story-next {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 161, 2, 0.35);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  min-width: 130px;
  transition: border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.story-prev { justify-content: flex-start; }
.story-next { justify-content: flex-end; }
.story-prev:hover:not(:disabled),
.story-next:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}
.story-prev:disabled,
.story-next:disabled { opacity: 0.25; cursor: not-allowed; }

.chapter-visual {
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.chapter-img {
  width: 320px; height: 320px;
  object-fit: contain;
  filter: invert(0);
}
@keyframes floatChapter {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
.chapter-num-bg {
  position: absolute;
  bottom: -40px; left: -20px;
  font-family: var(--font-title);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}

.chapter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 60px;
  background: var(--dark-bg);
  border-left: 1px solid rgba(255, 161, 2, 0.12);
}
.chapter-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.chapter-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.15;
}
.chapter-text { color: var(--silver); line-height: 1.85; font-size: 1rem; }

/* Story progress bar */
.story-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 8000;
  width: 0%;
  transition: width 0.1s linear;
}

/* Story nav dots — inline in controls bar */
.chapter-dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.chapter-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.chapter-dot.active {
  background: var(--orange);
  transform: scale(1.5);
}

/* 18. MENU PAGE */
.menu-hero {
  height: 65vh;
  min-height: 460px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,161,2,0.05) 0%, transparent 60%);
}

.menu-grid-section {
  background: var(--dark-bg);
  padding: 100px 48px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3D rotating strain cards */
.menu-card-scene {
  perspective: 900px;
}
.menu-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 161, 2, 0.15);
  padding: 36px 28px 28px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--transition-smooth),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,161,2,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-card:hover::before { opacity: 1; }
.menu-card:hover {
  border-color: rgba(255, 161, 2, 0.5);
  box-shadow: 0 20px 60px rgba(255, 161, 2, 0.12);
}

.menu-nug-container {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  perspective: 600px;
}
.menu-nug {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--transition-smooth);
  cursor: pointer;
}
.menu-card:hover .menu-nug {
  transform: rotateY(180deg) rotateX(10deg);
}
.menu-nug img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 8px 24px rgba(255, 161, 2, 0.2));
  backface-visibility: hidden;
}
.menu-nug-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: radial-gradient(circle at 35% 35%, rgba(255,161,2,0.3), rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,161,2,0.3);
}
.nug-price-reveal {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--amber);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.menu-strain-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
}
.menu-strain-genetics {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.menu-pricing {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--silver);
}
.price-row .price-amt {
  color: var(--white);
  font-weight: 700;
}

/* Menu disclaimer */
.menu-note {
  text-align: center;
  padding: 48px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* 19. FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 48px 48px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-brand img {
  width: 175px;
  height: 175px;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 0;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.3s ease;
  font-weight: 700;
}
.footer-col a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: center;
}

/* center the "Follow Along" column content */
.footer-col-social { text-align: center; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.social-link svg {
  width: 20px; height: 20px;
  fill: var(--white);
  display: block;
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
.social-link:hover svg { fill: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-compliance {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.footer-legal-links a:hover { color: var(--orange); }

/* 19b. LEGAL PAGES (privacy, terms) */
.legal-page {
  background: var(--black);
  padding: 160px 48px 100px;
}
.legal-page-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: block;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 161, 2, 0.15);
}
.legal-section p,
.legal-section li {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-section ul li { list-style: disc; }
.legal-section ol li { list-style: decimal; }
.legal-section a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--amber); }
.legal-callout {
  background: rgba(255, 161, 2, 0.06);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-callout p { margin-bottom: 0 !important; }
@media (max-width: 768px) {
  .legal-page { padding: 120px 24px 80px; }
}

/* 19c. RETIRED STRAINS — CAROUSEL (menu page) */
.retired-carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
  height: 100vh;
  min-height: 520px;
}
.retired-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.retired-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.retired-visual {
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: stretch;
}
.retired-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}
.retired-slide:hover .retired-visual img { opacity: 0.85; }
.retired-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 56px;
  background: var(--dark-bg);
  border-left: 1px solid rgba(255, 161, 2, 0.08);
}
.retired-num {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
  margin-bottom: 8px;
}
.retired-genetics {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.retired-name {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}
.retired-desc { color: var(--silver); line-height: 1.85; font-size: 0.95rem; }
.retired-caution {
  margin-top: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,161,2,0.5);
  font-weight: 700;
  text-transform: uppercase;
}
.retired-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  margin-bottom: 24px;
}

/* Carousel prev/next buttons */
.retired-prev,
.retired-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 161, 2, 0.25);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.retired-prev { left: 24px; }
.retired-next { right: 24px; }
.retired-prev:hover,
.retired-next:hover {
  background: rgba(255, 161, 2, 0.15);
  border-color: var(--amber);
}

/* Retired nav dots */
.retired-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.retired-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.retired-dot.active { background: var(--amber); transform: scale(1.5); }

@media (max-width: 768px) {
  .retired-carousel { height: auto; min-height: 0; }
  .retired-slide { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; }
  .retired-visual { height: 65vw; min-height: 260px; grid-row: 1; }
  .retired-visual img { object-position: center center; }
  .retired-info { padding: 40px 24px; grid-row: 2; }
  .retired-prev { left: 12px; width: 38px; height: 38px; font-size: 0.9rem; }
  .retired-next { right: 12px; width: 38px; height: 38px; font-size: 0.9rem; }
  .retired-dots { bottom: 16px; }
}

/* 20. PARALLAX STICKY */
.sticky-bg-section {
  position: relative;
  overflow: hidden;
}
.sticky-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 21. PAGE HERO (inner pages) */
.page-hero {
  height: 55vh;
  min-height: 400px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 30%, transparent);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { line-height: 1; }

/* 22. MISC */
.divider-line {
  width: 48px; height: 2px;
  background: var(--orange);
  margin-bottom: 24px;
}

/* Home: tighten gap between menu preview and flower teaser */
[aria-labelledby="flower-teaser-h"] { padding-top: 60px !important; }

/* 23. RESPONSIVE */
@media (max-width: 1024px) {
  .strains-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .menu-grid       { grid-template-columns: 1fr 1fr; }
  .stages-grid     { grid-template-columns: 1fr 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .soil-grid       { grid-template-columns: 1fr; }
  .soil-image-side { height: 420px; }
  .menu-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .chapter-slide   { grid-template-columns: 1fr; }
  .chapter-visual  { height: 45vh; }
  .chapter-content { padding: 48px 40px; }
  .flower-item     { grid-template-columns: 1fr; direction: ltr !important; }
  .flower-img-wrap { height: 56vw; position: relative; top: auto; }
  .flower-info     { padding: 60px 40px; }
}

@media (max-width: 768px) {
  body { font-size: 17px; text-align: center; cursor: auto; }
  #cursor-dot { display: none !important; }
  .divider-line { margin-left: auto; margin-right: auto; }
  #preloader video { display: none; }
  .section-pad    { padding: 40px 24px; }
  .section-pad-sm { padding: 30px 24px; }
  #site-header    { padding: 16px 24px; }
  #site-header.scrolled { padding: 12px 24px; }
  .site-nav       { display: none; }
  .nav-toggle     { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 12vw, 4rem); }

  .strains-grid  { grid-template-columns: 1fr; }
  .menu-grid     { grid-template-columns: 1fr; }
  .stages-grid   { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }

  .spring-drop   { padding: 40px 24px; }
  .menu-preview  { padding: 40px 24px; }
  .soil-stages   { padding: 40px 24px; }
  .soil-process-section { padding: 40px 24px !important; }
  .menu-grid-section { padding: 50px 24px; }
  .menu-grid-section > div:first-child { margin-bottom: 28px !important; }
  .spring-drop-header { margin-bottom: 36px; }

  /* Sections with inline padding — halved */
  [aria-labelledby="why-soil-h"]      { padding: 60px 24px !important; }
  [aria-labelledby="soil-cta-h"]      { padding: 50px 24px !important; }
  [aria-labelledby="flower-teaser-h"] { padding: 60px 24px !important; }
  [aria-labelledby="menu-rosin-h"]    { padding: 40px 24px !important; }
  [aria-labelledby="menu-rosin-h"] > div:first-child { margin-bottom: 28px !important; }

  .chapter-slide { grid-template-columns: 1fr; }
  .chapter-visual { height: 40vh; }
  .chapter-content { padding: 20px 24px; }
  .chapter-img { width: 220px; height: 220px; }
  .chapter-num-bg { font-size: 10rem; }

  footer { padding: 30px 24px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; align-items: center; }
  .footer-brand a { display: block; text-align: center; }
  .footer-brand img { width: 100px; height: 100px; margin: 0 auto 16px; }
  .footer-tagline { text-align: center; margin-top: 12px; }
  .footer-col { text-align: center; }
  .footer-socials { justify-content: center; }

  .flower-item, .flower-item:nth-child(even) { direction: ltr; }
  .flower-info { padding: 24px 24px; }
  .soil-content-side { padding: 24px 24px; }
  .page-hero { padding: 0 24px 30px; height: 40vh; }

  .story-carousel-controls { padding: 16px 20px; }
  .story-prev, .story-next { min-width: auto; padding: 10px 14px; font-size: 0.65rem; }
  .story-prev span, .story-next span { display: none; }

  /* Living soil: why-soil two-column → single column, text first */
  .why-soil-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Menu: flower cards single column */
  .menu-grid-section .strains-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  /* Menu: rosin/vape cards single column */
  [aria-labelledby="menu-rosin-h"] .strains-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  /* Menu: center strain photos vertically within their containers */
  .strain-image img { object-position: center center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 14vw, 3rem); }
  .menu-mockup { padding: 24px 16px; }
}

/* Ensure mobile nav hides desktop nav on mobile */
@media (min-width: 769px) {
  .mobile-nav { display: none !important; }
  .nav-toggle { display: none !important; }
}
