/* ── OG BBQ — Brand Stylesheet ──────────────────────────────────────────── */

:root {
  --fire:        #c0392b;       /* deep BBQ red */
  --fire-dark:   #96281b;       /* hover */
  --fire-soft:   #fdf0ee;       /* tinted backgrounds */
  --ember:       #e67e22;       /* warm orange accent */
  --charcoal:    #1a1a1a;       /* headings / dark surfaces */
  --smoke:       #3d3d3d;       /* body text */
  --ash:         #6b6b6b;       /* muted */
  --cream:       #fdf8f3;       /* warm off-white bg */
  --cream-alt:   #f5ede3;       /* alternate section */
  --border:      #e8d9cc;
  --radius:      14px;
  --shadow:      0 8px 30px -12px rgba(26, 26, 26, 0.22);
  --font:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--smoke);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3 { color: var(--charcoal); line-height: 1.2; letter-spacing: -0.015em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Nav ── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: rgba(253,248,243,0.94);
  backdrop-filter: blur(10px); z-index: 50;
}
.brand {
  font-weight: 900; font-size: 1.2rem; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.02em;
}
.brand-fire { color: var(--fire); font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav-links a { color: var(--smoke); font-size: 0.92rem; font-weight: 600; transition: color 0.15s; }
.nav-links a:hover { color: var(--fire); }
.nav-cta {
  background: var(--fire); color: #fff !important; padding: 9px 20px;
  border-radius: 999px; font-weight: 700 !important; white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--fire-dark) !important; }

/* ── Hero ── */
.hero {
  background:
    linear-gradient(rgba(26,26,26,0.68), rgba(26,26,26,0.72)),
    url("images/hero-bbq.jpg") center/cover no-repeat;
  min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember);
  background: rgba(230,126,34,0.18); padding: 7px 18px; border-radius: 999px;
  margin-bottom: 22px; border: 1px solid rgba(230,126,34,0.35);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--ember); }
.hero-tagline {
  margin: 20px auto 32px; font-size: 1.2rem; color: rgba(255,255,255,0.85);
  max-width: 600px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.flame-strip {
  margin-top: 42px; display: flex; gap: 10px 28px; justify-content: center;
  flex-wrap: wrap; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.flame-strip span::before { content: "🔥 "; }

/* ── Buttons ── */
.btn {
  display: inline-block; background: var(--fire); color: #fff;
  padding: 13px 28px; border-radius: 999px; font-weight: 700;
  font-size: 0.98rem; transition: background 0.15s, transform 0.15s;
}
.btn:hover { background: var(--fire-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--charcoal); }
.btn-dark:hover { background: #333; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* ── Section basics ── */
.section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--cream-alt); }
.section-alt-inner { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; }
.section-head p { margin-top: 10px; color: var(--ash); font-size: 1.05rem; }
.divider { text-align: center; font-size: 1.8rem; margin: 8px 0 0; }

/* ── Category ribbon ── */
.ribbon-wrap {
  background: var(--charcoal); padding: 22px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.ribbon-wrap::before {
  content: "🔥🥩🌶️🥩🔥";
  position: absolute; font-size: 1.8rem; opacity: 0.07;
  letter-spacing: 18px; white-space: nowrap;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.ribbon-wrap h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem); color: #fff; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase; position: relative;
}
.ribbon-wrap h2 span { color: var(--ember); }

/* ── Menu grid ── */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow 0.18s, transform 0.18s;
}
.menu-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.menu-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.menu-card-body { padding: 18px 20px 22px; }
.menu-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.menu-card-body p { font-size: 0.88rem; color: var(--ash); margin-bottom: 12px; min-height: 36px; }
.menu-price { font-size: 1.25rem; font-weight: 800; color: var(--fire); }
.menu-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 6px;
}
.tag-special { background: var(--fire); color: #fff; }
.tag-veg { background: #27ae60; color: #fff; }
.tag-popular { background: var(--ember); color: #fff; }

/* ── Specials banner ── */
.specials-banner {
  background: linear-gradient(135deg, var(--fire), #8b1a0e);
  border-radius: var(--radius); padding: 44px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
}
.specials-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2rem); }
.specials-banner p { color: rgba(255,255,255,0.88); margin-top: 8px; font-size: 1.05rem; }
.specials-list { list-style: none; }
.specials-list li {
  padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-weight: 600; display: flex; justify-content: space-between;
}
.specials-list li:first-child { border-top: none; }
.specials-list .price { font-weight: 800; color: var(--ember); }

/* ── About split ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--ash); margin-bottom: 14px; line-height: 1.75; }
.about-text .btn { margin-top: 8px; }
.about-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.fact {
  background: var(--fire-soft); border-radius: var(--radius);
  padding: 22px 16px; text-align: center;
}
.fact-num { font-size: 1.7rem; font-weight: 900; color: var(--fire); }
.fact-label { font-size: 0.8rem; color: var(--ash); margin-top: 4px; font-weight: 600; }

/* ── Why us ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
}
.why-icon { font-size: 2.4rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--ash); }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial blockquote { font-size: 0.93rem; color: var(--smoke); font-style: italic; line-height: 1.7; }
.testimonial figcaption { margin-top: 16px; font-weight: 700; color: var(--charcoal); font-size: 0.88rem; }
.testimonial figcaption span { font-weight: 400; color: var(--ash); }

/* ── Order / Contact ── */
.order-strip {
  background: linear-gradient(135deg, var(--charcoal), #2c2c2c);
  border-radius: var(--radius); padding: 56px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.order-strip h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; }
.order-strip p { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 1.05rem; }
.order-actions { display: flex; flex-direction: column; gap: 14px; }
.contact-list { list-style: none; margin-top: 8px; }
.contact-list li { padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; }
.contact-list li:first-child { border-top: none; }
.contact-list a { color: var(--ember); font-weight: 600; }
.contact-list .label { color: rgba(255,255,255,0.55); font-size: 0.82rem; display: block; margin-bottom: 2px; }

/* ── Form ── */
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.form-card h3 { font-size: 1.15rem; font-weight: 700; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--smoke); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
  font-family: var(--font); font-size: 0.95rem; color: var(--charcoal);
  background: var(--cream); transition: border-color 0.15s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--fire); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: var(--font); }
.success-msg { display: none; background: #d4edda; border: 1px solid #c3e6cb; border-radius: 8px; padding: 14px 18px; color: #155724; font-weight: 600; font-size: 0.95rem; }

/* ── Footer ── */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.75);
  margin-top: 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 56px 24px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p { font-size: 0.9rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--ember); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── sc-badge ── */
/* sc-badge-start */
.sc-badge {
  text-align: center; padding: 10px 24px 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.sc-badge a { color: rgba(255,255,255,0.4); text-decoration: none; }
.sc-badge a:hover { color: rgba(255,255,255,0.65); }
/* sc-badge-end */

/* ── Menu Page ── */
.menu-page-hero {
  background: linear-gradient(rgba(26,26,26,0.7), rgba(26,26,26,0.75)),
              url("images/hero-bbq.jpg") center/cover no-repeat;
  padding: 72px 24px; text-align: center;
}
.menu-page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; }
.menu-page-hero p { color: rgba(255,255,255,0.8); margin-top: 10px; font-size: 1.1rem; }
.menu-category { margin-bottom: 60px; }
.menu-category-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 900;
  color: var(--charcoal); border-bottom: 3px solid var(--fire);
  display: inline-block; padding-bottom: 6px; margin-bottom: 28px;
}
.menu-category-title span { color: var(--fire); }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px dashed var(--border); gap: 16px;
}
.menu-item-info h3 { font-size: 1rem; font-weight: 700; }
.menu-item-info p { font-size: 0.88rem; color: var(--ash); margin-top: 4px; }
.menu-item-price { font-weight: 800; color: var(--fire); font-size: 1.05rem; white-space: nowrap; padding-top: 2px; }
.menu-section-label {
  background: var(--charcoal); color: #fff;
  padding: 8px 20px; border-radius: 999px;
  display: inline-block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 18px; margin-top: 28px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .specials-banner { grid-template-columns: 1fr; }
  .order-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav { flex-direction: column; gap: 10px; padding: 14px 16px; }
  .nav-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
}
