/* ==========================================================================
   MUMBOPICY, Black, Red, Green & Orange Theme (matched to brand logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --fire-red: #e0332a;
  --deep-red: #8c0f16;
  --ember-orange: #ff7a1a;
  --chili-green: #6f9a34;
  --chili-green-deep: #3e5c1c;
  --black: #0a0a0a;
  --black-soft: #161512;
  --black-softer: #221f19;
  --cream: #fff8f0;
  --cream-dim: #f5e6d3;
  --smoke: #4a3d38;

  --gradient-fire: linear-gradient(135deg, var(--chili-green) 0%, var(--ember-orange) 40%, var(--fire-red) 72%, var(--deep-red) 100%);
  --gradient-fire-soft: linear-gradient(135deg, rgba(111, 154, 52, 0.15), rgba(232, 64, 44, 0.15));
  --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --shadow-fire: 0 12px 30px rgba(224, 51, 42, 0.35);
  --shadow-soft: 0 8px 24px rgba(10, 10, 10, 0.14);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { max-width: 62ch; }

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--fire-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: "🌶";
  font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gradient-fire);
  color: var(--cream);
  box-shadow: var(--shadow-fire);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px rgba(232, 64, 44, 0.45); }

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

.btn-outline:hover { background: var(--cream); color: var(--black); transform: translateY(-3px); }

.btn-dark {
  background: var(--black);
  color: var(--cream);
}

.btn-dark:hover { background: var(--black-soft); transform: translateY(-3px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-fire) 1;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 248, 240, 0.15);
}

.brand-mark span { color: var(--ember-orange); }

.site-footer .brand-mark img { height: 40px; width: 40px; }

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

.nav-links a {
  color: var(--cream-dim);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--ember-orange); }

.nav-links a.nav-cta {
  background: var(--gradient-fire);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-dark);
  color: var(--cream);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 122, 26, 0.25), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(224, 51, 42, 0.3), transparent 45%),
    radial-gradient(circle at 60% 100%, rgba(111, 154, 52, 0.18), transparent 40%);
  pointer-events: none;
}

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

.hero-copy p {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin: 20px 0 32px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jar-badge {
  width: min(360px, 90%);
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-fire);
  animation: flicker 4s ease-in-out infinite;
}

.jar-badge .pepper-icon { width: 55%; }

.hero-logo-art img {
  max-width: min(420px, 90%);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(224, 51, 42, 0.4));
  animation: glow-flicker 4s ease-in-out infinite;
}

@keyframes glow-flicker {
  0%, 100% { filter: drop-shadow(0 18px 40px rgba(224, 51, 42, 0.4)); }
  50% { filter: drop-shadow(0 22px 54px rgba(255, 122, 26, 0.5)); }
}

@keyframes flicker {
  0%, 100% { box-shadow: 0 12px 30px rgba(232, 64, 44, 0.35); }
  50% { box-shadow: 0 18px 46px rgba(255, 122, 26, 0.5); }
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chili-green);
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Heat meter ---------- */
.heat-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.heat-meter .flames { display: flex; gap: 4px; }

.heat-meter .flame {
  font-size: 1.1rem;
  filter: grayscale(1) opacity(0.35);
}

.heat-meter .flame.active { filter: none; }

.heat-meter .label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--fire-red);
}

/* ---------- Sections (generic) ---------- */
.section { padding: 90px 0; }
.section-dark { background: var(--gradient-dark); color: var(--cream); }
.section-cream { background: var(--cream-dim); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-dark .section-head p, .section-dark p { color: var(--cream-dim); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid transparent;
  border-image: var(--gradient-fire) 1;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(10,10,10,0.18); }

/* .card always has a light background, so its text must always be dark,
   even when the card sits inside a .section-dark block that sets cream
   text color for everything else. Without this, card copy on dark
   sections renders as near-invisible cream-on-cream. */
.card, .card h3, .card h4, .card p, .card li, .card strong {
  color: var(--black);
}

.card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-fire-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* ---------- Product card ---------- */
.product-card {
  background: var(--black);
  color: var(--cream);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-fire);
}

.product-visual .jar-badge { width: 100%; }

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--chili-green);
  margin: 12px 0 20px;
}

.price-tag small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-dim);
  font-weight: 500;
}

.spec-list { margin: 24px 0; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,248,240,0.12);
  font-size: 0.95rem;
  text-align: right;
}
.spec-list li strong { color: var(--cream-dim); font-weight: 500; flex-shrink: 0; text-align: left; }

.spec-list li.spec-row-wrap {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.badge {
  display: inline-block;
  background: var(--gradient-fire-soft);
  color: var(--chili-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* ---------- Coming soon strip ---------- */
.coming-soon {
  background: var(--black);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  border-top: 2px solid var(--fire-red);
  border-bottom: 2px solid var(--fire-red);
}

.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee span { color: var(--chili-green); }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-row { margin-bottom: 20px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--black-soft);
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dim);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--fire-red);
}

textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.85rem; color: var(--smoke); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--cream-dim);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,248,240,0.12);
}

.footer-grid h4 {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: var(--ember-orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-links a:hover { background: var(--fire-red); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--gradient-dark);
  color: var(--cream);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,122,26,0.25), transparent 55%);
}

.page-hero .container { position: relative; }
.page-hero p { margin: 16px auto 0; color: var(--cream-dim); }

/* ---------- Recipe / story cards ---------- */
.recipe-card img, .recipe-card .thumb {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}

.recipe-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.thumb {
  background: var(--gradient-fire-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ---------- Timeline (story page) ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--gradient-fire);
  border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--chili-green);
  border: 3px solid var(--black);
}

/* ---------- Alert / success box ---------- */
.alert-success {
  background: rgba(46, 160, 67, 0.12);
  border: 2px solid #2ea043;
  color: #1a6b2c;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .product-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--fire-red);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
