/* Lean Back BBQ — hunter green + gold/tan kraft outdoor feel */
:root {
  --hunter: #1B4D3E;
  --hunter-deep: #12352B;
  --hunter-mid: #2A6B56;
  --gold: #C9A227;
  --gold-light: #E0C15A;
  --tan: #C4A574;
  --kraft: #D4C4A8;
  --cream: #F7F1E6;
  --cream-dark: #EDE4D4;
  --ink: #1C1A17;
  --ink-soft: #3D3830;
  --muted: #6B6358;
  --white: #FFFCF7;
  --shadow: 0 12px 40px rgba(18, 53, 43, 0.12);
  --radius: 14px;
  --font-display: "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hunter-mid); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hunter-deep);
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: 4.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(27, 77, 62, 0.04), rgba(27, 77, 62, 0.08));
  border-block: 1px solid rgba(27, 77, 62, 0.08);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 40rem; }
.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(27, 77, 62, 0.12);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--hunter-deep);
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(18, 53, 43, 0.2);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--hunter);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-block;
  background: var(--hunter);
  color: var(--white) !important;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--hunter-deep); color: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  background: var(--hunter);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  margin-bottom: 0.4em;
}
.hero .tagline { font-size: 1.05rem; margin-bottom: 1.25rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--hunter);
  color: var(--white);
  border-color: var(--hunter);
}
.btn-primary:hover { background: var(--hunter-deep); color: var(--gold-light); }
.btn-secondary {
  background: transparent;
  color: var(--hunter);
  border-color: var(--hunter);
}
.btn-secondary:hover { background: var(--hunter); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--hunter-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); }
.hero-logo-wrap {
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: min(100%, 360px);
  border-radius: 50%;
  box-shadow: var(--shadow), 0 0 0 8px rgba(201, 162, 39, 0.25);
  background: var(--cream);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-meta span::before {
  content: "★";
  color: var(--gold);
  margin-right: 0.4rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(27, 77, 62, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.98rem; }
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(27, 77, 62, 0.1);
  color: var(--hunter);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

/* Story */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.story-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(27, 77, 62, 0.1);
  box-shadow: var(--shadow);
}
.quote-block {
  border-left: 4px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--hunter);
  font-weight: 600;
}
.steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 3.2rem;
  border-bottom: 1px solid rgba(27, 77, 62, 0.08);
}
.steps li:last-child { border-bottom: 0; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--hunter);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.steps strong { color: var(--hunter-deep); }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27, 77, 62, 0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-media {
  background: linear-gradient(135deg, var(--cream-dark), var(--kraft));
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.product-media img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.product-body { padding: 1.35rem 1.5rem 1.5rem; flex: 1; }
.product-body .badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--hunter-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.coming-soon {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hunter-mid);
  margin-top: 0.75rem;
}

/* Flavor Challenge spotlight */
.challenge-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}
.challenge-board {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid rgba(27, 77, 62, 0.15);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.stat {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  border: 1px solid rgba(27, 77, 62, 0.1);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--hunter);
  font-weight: 700;
  display: block;
}
.stat .label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.flow-item {
  background: rgba(27, 77, 62, 0.06);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hunter-deep);
}
.flow-item span {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 1.5rem;
}
.contact-card, .signup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(27, 77, 62, 0.1);
  box-shadow: var(--shadow);
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(27, 77, 62, 0.08);
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .k {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.signup-form input[type="email"] {
  flex: 1 1 200px;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(27, 77, 62, 0.2);
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
}
.signup-form input:focus {
  outline: none;
  border-color: var(--hunter);
  background: var(--white);
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.signup-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 10px;
  color: var(--hunter-deep);
  font-weight: 600;
}
.signup-success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--hunter-deep);
  color: rgba(255, 252, 247, 0.85);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.5);
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer-brand .tagline {
  font-size: 0.82rem;
  margin: 0.2rem 0 0;
}
.footer-meta {
  text-align: right;
  font-size: 0.9rem;
}
.footer-meta a { color: var(--gold-light); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-legal {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 252, 247, 0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Utility */
.divider-stars {
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.5rem;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .story-layout,
  .challenge-spotlight,
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: left; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 2px solid rgba(27, 77, 62, 0.12);
    gap: 0.85rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-bar { position: relative; }
}

@media (max-width: 520px) {
  .stat-row { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .section { padding: 3.25rem 0; }
}
