/* =========================================================
   UP IN SMOKE — CIGAR WRAPS
   ========================================================= */

:root {
  --bg: #0a0a0e;
  --bg-soft: #131318;
  --bg-card: #18181f;
  --line: rgba(255,255,255,0.08);

  --orange: #f4521e;
  --orange-light: #ff8a5c;
  --blue: #3a8fd1;
  --purple: #8b5cf6;
  --gold: #ffc857;

  --text: #f6f5f7;
  --text-muted: #9b9ba6;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 16px;
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

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

/* =========================================================
   SMOKE CANVAS BACKGROUND
   ========================================================= */
#smoke-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: screen;
}

/* =========================================================
   TYPE / SHARED
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.eyebrow.center { justify-content: center; }
.eyebrow i { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-text {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 16px;
}
.section-text.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }

.text-glow {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(244, 82, 30, 0.35);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(244,82,30,0.35)); }
  50% { filter: drop-shadow(0 0 22px rgba(244,82,30,0.6)); }
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head-after { margin-top: 64px; margin-bottom: 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, #ff7a3d 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(244, 82, 30, 0.35);
  overflow: visible;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 82, 30, 0.5);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -6px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  filter: blur(3px);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover::after {
  opacity: 0.9;
  transform: translateY(-14px) scale(1.4);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-3px);
}
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* =========================================================
   TOP MARQUEE BAR
   ========================================================= */
.topbar {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, #c9401a, var(--orange) 50%, #c9401a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.topbar-track {
  display: inline-flex;
  gap: 48px;
  padding-left: 48px;
  animation: marquee 32s linear infinite;
}
.topbar-track span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-track i { font-size: 11px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 14, 0.85);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 13.5px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active, .mobile-menu a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }

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

.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.nav-cart:hover {
  border-color: rgba(244,82,30,0.4);
  color: var(--orange-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,14,0.97);
  border-top: 1px solid var(--line);
  padding: 12px 24px 24px;
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu.open { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 100px;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}
.hero-glow-orange {
  width: 560px; height: 560px;
  background: rgba(244, 82, 30, 0.35);
  top: -120px; right: -160px;
  animation: drift1 18s ease-in-out infinite;
}
.hero-glow-blue {
  width: 460px; height: 460px;
  background: rgba(58, 143, 209, 0.25);
  bottom: -160px; left: -120px;
  animation: drift2 22s ease-in-out infinite;
}
.hero-glow-purple {
  width: 520px; height: 520px;
  background: rgba(139, 92, 246, 0.22);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: drift1 24s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

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

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

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-badge i {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(244,82,30,0.12);
  color: var(--orange-light);
  border: 1px solid rgba(244,82,30,0.25);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease);
}
.hero-badge:hover i {
  box-shadow: 0 0 16px 4px rgba(244,82,30,0.4);
  transform: scale(1.1);
}

/* ---- Hero visual / pouch mockup ---- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-glow-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: spin 60s linear infinite;
}
.hero-glow-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.06);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.cigar-feature {
  position: relative;
  width: 480px;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    0 0 80px rgba(244, 82, 30, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.cigar-feature img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.cigar-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,14,0.65) 100%);
  pointer-events: none;
}
.cigar-feature-product {
  width: 520px;
}
@media (max-width: 1024px) {
  .cigar-feature, .cigar-feature-product { width: 400px; }
}
@media (max-width: 600px) {
  .cigar-feature, .cigar-feature-product { width: 100%; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-22px) rotate(1deg); }
}

/* smoke wisps rising from pouch */
.smoke-wisp {
  position: absolute;
  bottom: 82%;
  width: 110px;
  height: 130px;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 40%, transparent 72%);
  filter: blur(22px);
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.wisp-1 { left: 40%; animation: wispRise 9s ease-out infinite; }
.wisp-2 { left: 50%; animation: wispRise 11s ease-out infinite 3s; width: 80px; height: 100px; }
.wisp-3 { left: 45%; animation: wispRise 13s ease-out infinite 6s; width: 130px; height: 150px; }

@keyframes wispRise {
  0%   { transform: translate(0, 0) scale(0.5) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.8; }
  50%  { transform: translate(30px, -160px) scale(1.3) rotate(15deg); opacity: 0.5; }
  100% { transform: translate(-20px, -360px) scale(2) rotate(-10deg); opacity: 0; }
}

/* expanding smoke rings (product visual) */
.smoke-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: ringExpand 6s ease-out infinite;
}
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 2s; }
.ring-3 { animation-delay: 4s; }
@keyframes ringExpand {
  0% {
    width: 40px; height: 40px;
    margin: -20px 0 0 -20px;
    opacity: 0.7;
    border-color: rgba(244,82,30,0.4);
  }
  100% {
    width: 460px; height: 460px;
    margin: -230px 0 0 -230px;
    opacity: 0;
    border-color: rgba(244,82,30,0);
  }
}
@media (max-width: 760px) {
  .smoke-ring { display: none; }
}

/* ambient smoke puffs (hero / newsletter) */
.ember-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.smoke-puff {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.15) 45%, transparent 75%);
  filter: blur(10px);
  opacity: 0;
  mix-blend-mode: screen;
  animation: puffRise linear infinite;
}
@keyframes puffRise {
  0% { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  15% { opacity: 0.6; }
  85% { opacity: 0.25; }
  100% { transform: translateY(-100vh) translateX(40px) scale(1.6); opacity: 0; }
}

/* cursor smoke trail canvas */
#cursor-smoke-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  z-index: 3;
  animation: bounce 2.4s ease-in-out infinite;
}
.scroll-cue span {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--orange-light));
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.04), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.features-grid.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,82,30,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(244,82,30,0.18), rgba(139,92,246,0.18));
  color: var(--orange-light);
  font-size: 22px;
  margin-bottom: 18px;
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease);
}
.feature-card:hover .feature-icon {
  box-shadow: 0 0 0 1px rgba(244,82,30,0.3), 0 0 24px 4px rgba(244,82,30,0.35);
  transform: scale(1.08);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================================
   LEAF SECTION
   ========================================================= */
.leaf {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(58,143,209,0.05), transparent);
}
.leaf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.leaf-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 140px);
  gap: 16px;
  min-height: 380px;
}
.leaf-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.leaf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.leaf-img:hover img { transform: scale(1.08); }

.leaf-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.leaf-img-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.leaf-img-2 { grid-column: 2 / 3; grid-row: 2 / 3; }

.leaf-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(244,82,30,0.18), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.check-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
}
.check-list i {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(244,82,30,0.15);
  color: var(--orange-light);
  font-size: 12px;
  flex-shrink: 0;
}

/* =========================================================
   PRODUCT
   ========================================================= */
.product {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05), transparent);
}
.product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,82,30,0.12);
  border: 1px solid rgba(244,82,30,0.3);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.badge-pill i { color: gold; }

.spec-line {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--text-muted);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 28px;
}
.price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--orange-light);
  letter-spacing: 1px;
}
.price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.spec-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spec-list i {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--orange-light);
  font-size: 18px;
}
.spec-list strong { display: block; font-size: 15px; margin-bottom: 4px; }
.spec-list span { color: var(--text-muted); font-size: 13.5px; }

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.qty-select {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
}
.qty-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s ease;
}
.qty-btn:hover { color: var(--orange-light); }

.fine-print {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58,143,209,0.4);
}
.process-num {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(255,255,255,0.04);
}
.process-icon {
  font-size: 28px;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.process-card h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: 0.5px; }
.process-card p { color: var(--text-muted); font-size: 14px; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(244,82,30,0.04), transparent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,82,30,0.35);
}
.stars { color: gold; font-size: 14px; margin-bottom: 16px; letter-spacing: 3px; }
.review-card p { font-size: 15px; color: #d8d8de; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 14px; }
.author-loc { font-size: 12.5px; color: var(--text-muted); }

/* =========================================================
   JOIN / NEWSLETTER
   ========================================================= */
.join {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.join-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.join-form {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.join-form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
}
.join-form input:focus { border-color: var(--orange); }
.join-form input::placeholder { color: var(--text-muted); }
.join-msg {
  margin-top: 16px;
  font-size: 14px;
  color: var(--orange-light);
  min-height: 20px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding-top: 64px;
  background: var(--bg-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 320px;
  margin: -6px 0 20px;
}
.footer-address i {
  color: var(--orange-light);
  margin-top: 3px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.socials a:hover {
  color: #fff;
  border-color: var(--orange);
  background: rgba(244,82,30,0.15);
  transform: translateY(-3px);
}
.footer-links h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-warning {
  border-top: 1px solid rgba(255,59,48,0.3);
  border-bottom: 1px solid rgba(255,59,48,0.3);
  background: rgba(255,59,48,0.08);
  padding: 18px 24px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ff8a80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-warning i { color: #ff3b30; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px;
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: var(--container);
  margin: 0 auto;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  filter: blur(8px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* directional variants */
.js .reveal-left {
  transform: translateX(-80px) scale(0.97);
}
.reveal-left.in-view {
  transform: translateX(0) scale(1);
}
.js .reveal-right {
  transform: translateX(80px) scale(0.97);
}
.reveal-right.in-view {
  transform: translateX(0) scale(1);
}

/* stagger children of grids */
.js .features-grid .feature-card,
.js .process-grid .process-card,
.js .reviews-grid .review-card {
  opacity: 0;
  transform: translateY(50px) scale(0.92);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.features-grid.in-view .feature-card,
.process-grid.in-view .process-card,
.reviews-grid.in-view .review-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.features-grid.in-view .feature-card:nth-child(1),
.process-grid.in-view .process-card:nth-child(1),
.reviews-grid.in-view .review-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid.in-view .feature-card:nth-child(2),
.process-grid.in-view .process-card:nth-child(2),
.reviews-grid.in-view .review-card:nth-child(2) { transition-delay: 0.15s; }
.features-grid.in-view .feature-card:nth-child(3),
.process-grid.in-view .process-card:nth-child(3),
.reviews-grid.in-view .review-card:nth-child(3) { transition-delay: 0.25s; }
.features-grid.in-view .feature-card:nth-child(4),
.process-grid.in-view .process-card:nth-child(4) { transition-delay: 0.35s; }

/* if JS never runs, don't leave content invisible */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .features-grid .feature-card, .process-grid .process-card, .reviews-grid .review-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner, .leaf-grid, .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual, .product-visual { order: -1; min-height: 360px; }
  .features-grid, .features-grid.features-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   INNER PAGE HERO
   ========================================================= */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 70px 0 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-text.center { margin-left: auto; margin-right: auto; }

/* =========================================================
   GENERIC CONTENT SECTIONS / PROSE
   ========================================================= */
.content-section {
  position: relative;
  z-index: 1;
  padding: 20px 0 100px;
}
.content-section + .content-section { padding-top: 0; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
}
.prose.narrow { max-width: 620px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  margin: 40px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
  letter-spacing: 0.3px;
}
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; display: flex; flex-direction: column; gap: 8px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--text); }
.prose a { color: var(--orange-light); text-decoration: underline; text-decoration-color: rgba(255,138,92,0.35); }
.prose a:hover { color: var(--orange); }

.prose-meta {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* =========================================================
   INFO / GRID CARDS (Find Us, Wholesale perks, etc.)
   ========================================================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,82,30,0.35);
}
.info-card i.info-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(244,82,30,0.12);
  color: var(--orange-light);
  font-size: 22px;
  margin-bottom: 18px;
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease);
}
.info-card:hover i.info-icon {
  box-shadow: 0 0 0 1px rgba(244,82,30,0.3), 0 0 24px 4px rgba(244,82,30,0.35);
  transform: scale(1.08);
}
.info-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: 0.3px; }
.info-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.accordion-item.open { border-color: rgba(244,82,30,0.35); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.accordion-trigger i {
  color: var(--orange-light);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger i { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-item.open .accordion-panel {
  max-height: 600px;
}
.accordion-panel-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* =========================================================
   FORMS (Contact / Wholesale / Refund)
   ========================================================= */
.form-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--orange); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row select { appearance: none; cursor: pointer; }
.form-grid-rows { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.form-msg {
  margin-top: 16px;
  font-size: 14px;
  color: var(--orange-light);
  min-height: 20px;
}

/* =========================================================
   STEP LIST (How to Roll)
   ========================================================= */
.steps-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(244,82,30,0.35); }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  background: rgba(244,82,30,0.12);
  border: 1px solid rgba(244,82,30,0.3);
  color: var(--orange-light);
}
.step h3 { font-size: 17px; margin-bottom: 6px; letter-spacing: 0.3px; }
.step p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* =========================================================
   GENERIC CENTERED SECTION CTA
   ========================================================= */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* =========================================================
   BLOG PREVIEW (homepage)
   ========================================================= */
.blog-preview {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255,200,87,0.04), transparent);
}

/* =========================================================
   FIND US CTA (homepage)
   ========================================================= */
.find-cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.find-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.find-cta-inner .section-text.center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.find-cta-title {
  white-space: nowrap;
  font-size: clamp(24px, 4vw, 48px);
}
@media (max-width: 600px) {
  .find-cta-title {
    white-space: normal;
    font-size: clamp(28px, 9vw, 40px);
  }
}
.find-cta-actions {
  justify-content: center;
  margin-top: 10px;
}
.find-cta-pin {
  position: relative;
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,82,30,0.18), rgba(58,134,255,0.18));
  border: 1px solid var(--line);
  color: var(--orange-light);
  font-size: 24px;
}
.find-cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(244,82,30,0.4);
  animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* =========================================================
   BLOG GRID
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,82,30,0.35);
}
.post-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(244,82,30,0.18), rgba(255,200,87,0.12));
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-card-img img {
  transform: scale(1.08);
}
.post-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,82,30,0.3), rgba(255,200,87,0.12) 60%, rgba(15,15,15,0.55));
  z-index: 1;
}
.post-card-img i {
  position: relative;
  z-index: 2;
  margin: 14px;
  font-size: 18px !important;
}
.post-card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.post-card h3 { font-size: 19px; line-height: 1.3; }
.post-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.post-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-light);
  letter-spacing: 0.5px;
}

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

@media (max-width: 760px) {
  .info-grid, .info-grid.cols-2 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .form-row.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 40px 0 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .features-grid, .features-grid.features-grid-3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .leaf-gallery { grid-template-rows: repeat(2, 110px); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-actions { flex-direction: column; align-items: stretch; }
  .qty-select { justify-content: center; }
}
