/* ============================================================
   BBQ and Soul Patrol — Indianapolis
   Design language: Sonny's BBQ-inspired
   Black + Red + Cream + Editorial typography
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --red: #d62828;
  --red-dark: #a51b1b;
  --red-deep: #6e0d0d;
  --gold: #f4b942;
  --cream: #f7f1e7;
  --cream-deep: #efe6d4;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --line: #e2dccd;

  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-script: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== Animate on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== Announcement bar ===== */
.announce {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding: 10px 0;
}
.marquee span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marquee .dot { color: var(--gold); font-size: 18px; line-height: 1; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Black marquee variant */
.strip-marquee {
  background: var(--black);
  color: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  overflow: hidden;
}
.strip-marquee .marquee {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 22px 0;
  animation-duration: 32s;
}
.strip-marquee .marquee .dot { color: var(--red); font-size: 22px; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(214,40,40,0.35);
}
.btn-red:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 28px rgba(214,40,40,0.5);
}
.btn-white { background: #fff; color: var(--black); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white:hover { background: var(--cream); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost:hover { background: #fff; color: var(--black); }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(5px); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(244,185,66,0.4);
}
.btn-gold:hover { background: #ffc758; }

/* ===== Header ===== */
.site-header {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--red);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}
.brand-mark .amp { color: var(--red); font-style: italic; }
.brand-sub {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #c0c0c0;
  margin-top: 4px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2f2f2;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--red); }
.site-nav .btn { color: #fff; }
.site-nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(214,40,40,0.25), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(244,185,66,0.12), transparent 55%),
    var(--black);
  color: #fff;
  padding: 44px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero > .wrap { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid rgba(244,185,66,0.4);
  border-radius: 100px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title .accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -6px;
  height: 6px;
  background: var(--gold);
  border-radius: 4px;
  transform: skewX(-12deg);
}
.hero-script {
  display: inline-block;
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--gold);
  margin-bottom: 4px;
  transform: rotate(-3deg);
}
.hero-sticker {
  position: absolute;
  top: 28px;
  right: 4%;
  width: 120px;
  height: 120px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  transform: rotate(-12deg);
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.hero-sticker strong { display: block; font-size: 22px; letter-spacing: 0.05em; margin: 4px 0; }
.hero-sub {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 17px;
  color: #d8d8d8;
}
.hero-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 180px 180px;
  gap: 12px;
  max-width: 1080px;
  margin: 24px auto 32px;
}
.tile {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 4px solid #fff;
  filter: saturate(1.1) contrast(1.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  transition: transform .4s ease, box-shadow .4s ease;
}
.tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(214,40,40,0.4);
}
.tile-lg {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  height: auto;
  transform: scale(1.03);
}
.tile-tilt-l { transform: rotate(-2deg); }
.tile-tilt-l:hover { transform: rotate(-2deg) translateY(-6px) scale(1.04); }
.tile-tilt-r { transform: rotate(2deg); }
.tile-tilt-r:hover { transform: rotate(2deg) translateY(-6px) scale(1.04); }
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Section bands ===== */
.band-cream {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 25% 10%, rgba(214,40,40,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(244,185,66,0.06) 0%, transparent 50%);
  padding: 80px 0;
  position: relative;
}
.band-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.06 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.band-cream > .wrap { position: relative; z-index: 2; }
.band-light { background: #fff; padding: 80px 0; }
.band-dark {
  background:
    radial-gradient(ellipse at top, rgba(214,40,40,0.18), transparent 60%),
    var(--black);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.band-dark::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.band-red {
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.band-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.15 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.band-red > .wrap { position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}
.eyebrow-light { color: #fff; opacity: 0.75; }

.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.section-title.light { color: #fff; }

.lead { font-size: 18px; color: var(--ink-soft); max-width: 540px; }
.band-red .lead { color: #fff; opacity: 0.95; max-width: 480px; }

/* Intro grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-copy p { margin: 0 0 18px; font-size: 17px; color: var(--ink-soft); }
.link-arrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.link-arrow:hover { color: var(--red-dark); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.stat {
  position: relative;
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.stat:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: rgba(214,40,40,0.06);
}
.stat::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 24px;
  width: 50px;
  height: 4px;
  background: var(--red);
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 86px);
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num span { color: var(--red); font-size: 0.55em; margin-left: 4px; -webkit-text-fill-color: var(--red); }
.stat-label {
  font-size: 14px;
  color: #c5c5c5;
  margin-top: 14px;
  line-height: 1.5;
}

/* Feature */
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.feature-img {
  background-size: cover;
  background-position: center;
  height: 480px;
  border-radius: 4px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list strong { font-family: var(--f-display); letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); margin-right: 6px; }

/* Catering CTA (red band) */
.catering-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 60px;
  align-items: center;
}
.catering-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}
.catering-list li {
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: var(--f-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.catering-list li:last-child { border-bottom: none; }

/* Testimonials */
.placeholder-note {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 24px;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.quote {
  background: #fff;
  padding: 36px 32px 32px;
  border-top: 4px solid var(--red);
  margin: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.quote:nth-child(1) { transform: rotate(-1.5deg); }
.quote:nth-child(2) { transform: rotate(1deg) translateY(-12px); }
.quote:nth-child(3) { transform: rotate(-0.5deg); }
.quote:hover {
  transform: rotate(0) translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(214,40,40,0.18);
}
.quote::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--f-script);
  font-size: 90px;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
}
.quote blockquote {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 18px;
  color: var(--black);
  position: relative;
}
.quote figcaption {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.quote-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
.process-steps li {
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.step-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 22px;
  border: 4px solid var(--black);
  box-shadow: 0 0 0 2px var(--red);
  transition: transform .3s ease;
}
.process-steps li:hover .step-num {
  transform: scale(1.08) rotate(-6deg);
}
.process-steps h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
}
.process-steps p { color: #c5c5c5; font-size: 15px; margin: 0; }

/* Contact strip */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 60px;
  align-items: center;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.contact-info li:last-child { border-bottom: none; }
.ci-label {
  display: block;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.contact-info a { color: var(--ink); border-bottom: 1px solid var(--red); }

/* Footer */
.site-footer { background: var(--black); color: #d8d8d8; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { font-size: 26px; }
.footer-tag { color: #9d9d9d; font-size: 14px; max-width: 280px; }
.site-footer h4 {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 5px 0; font-size: 14px; }
.site-footer a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
}

/* ===== Page Hero (interior pages) ===== */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  border-bottom: 4px solid var(--red);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(13,13,13,0.7);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.page-hero p {
  font-size: 18px;
  color: #d8d8d8;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Menu Page ===== */
.menu-disclaimer {
  background: var(--cream-deep);
  border-left: 4px solid var(--red);
  padding: 16px 22px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 50px;
  font-style: italic;
}
.menu-section { margin-bottom: 60px; }
.menu-section h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 50px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: var(--black);
  text-transform: uppercase;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.menu-item-price {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
  white-space: nowrap;
}
.menu-item-text { flex: 1; }

/* ===== Catering Page ===== */
.cat-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}
.cat-pack {
  background: var(--cream);
  border-top: 4px solid var(--red);
  padding: 32px 28px;
}
.cat-pack h3 {
  font-family: var(--f-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}
.cat-pack .price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.cat-pack .price small { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.cat-pack ul { list-style: none; padding: 0; margin: 0; }
.cat-pack ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cat-pack ul li:last-child { border-bottom: none; }

.cat-form {
  background: var(--black);
  color: #fff;
  padding: 50px;
  border-radius: 4px;
}
.cat-form h2 { color: #fff; }
.cat-form label {
  display: block;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccc;
  margin: 16px 0 6px;
}
.cat-form input,
.cat-form select,
.cat-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  font-family: var(--f-body);
  font-size: 15px;
  border-radius: 3px;
}
.cat-form textarea { min-height: 120px; resize: vertical; }
.cat-form button { margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}
.about-img {
  background-size: cover;
  background-position: center;
  height: 480px;
  border-radius: 4px;
}
.about-grid p { font-size: 17px; color: var(--ink-soft); margin: 0 0 18px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.value {
  border-top: 3px solid var(--red);
  padding-top: 20px;
}
.value h3 {
  font-family: var(--f-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.value p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ===== Contact Page ===== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-card {
  background: var(--cream);
  padding: 40px;
  border-top: 4px solid var(--red);
}
.contact-card h2 { margin-top: 0; }
.contact-card .big-phone {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--red);
  display: block;
  margin: 10px 0 20px;
}

/* ===== Live pit status badge ===== */
.pit-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(244,185,66,0.4);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.pit-status .live-dot {
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  position: relative;
  animation: livePulse 2s ease-in-out infinite;
}
.pit-status .live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #2ecc71;
  opacity: 0;
  animation: livePulseRing 2s ease-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes livePulseRing {
  0% { opacity: 0.7; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(2); }
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 8px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--red);
}
.trust-label {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}

/* ===== Section title decoration ===== */
.has-flame { display: inline-block; position: relative; }
.has-flame::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z'/></svg>") center / contain no-repeat;
  vertical-align: -3px;
  margin-right: 12px;
}
.section-title.light .has-flame::before { background-color: var(--gold); }

/* ===== FAQ accordion ===== */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(214,40,40,0.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform .3s ease, background .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .faq-toggle { transform: rotate(45deg); background: var(--black); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 26px 22px;
}

/* ===== Big Poppa Platter (featured platter card) ===== */
.platter-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background:
    radial-gradient(ellipse at top right, rgba(214,40,40,0.4), transparent 60%),
    linear-gradient(135deg, var(--black) 0%, #1a0606 100%);
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 24px 60px rgba(214,40,40,0.18);
  border: 1px solid rgba(255,255,255,0.06);
}
.platter-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
}
.platter-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}
.platter-body {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.platter-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.platter-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.platter-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(46px, 6vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin: 14px 0 22px;
}
.platter-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.platter-includes li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.platter-includes li:last-child { border-bottom: none; }
.platter-foot {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin: 8px 0 0;
}

/* ===== Specials grid ===== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 60px;
}
.special-card {
  background: var(--black);
  color: #fff;
  padding: 28px 26px;
  border-radius: 4px;
  border-top: 4px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}
.special-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.special-card .day {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.special-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.special-card p {
  font-size: 14px;
  color: #c5c5c5;
  margin: 0;
  line-height: 1.5;
}

/* ===== Featured dish cards ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.dish-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(214,40,40,0.2);
}
.dish-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(1.1);
}
.dish-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.dish-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}
.dish-tag.tag-gold { background: var(--gold); color: var(--black); }
.dish-body { padding: 24px 26px 28px; }
.dish-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.dish-desc { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; line-height: 1.5; }
.dish-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.dish-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--red);
}
.dish-cta {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* ===== Gallery strip ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.0);
  transition: background .3s ease;
}
.gallery-item:hover { transform: scale(1.04); z-index: 2; }
.gallery-item:hover::after { background: rgba(214,40,40,0.25); }

/* ===== Section divider (smoke wave) ===== */
.divider-flame {
  background: var(--black);
  height: 60px;
  position: relative;
  margin-top: -1px;
}
.divider-flame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'><path d='M0,60 C150,20 300,50 450,30 C600,10 750,50 900,25 C1050,5 1150,40 1200,30 L1200,60 Z' fill='%23f7f1e7'/></svg>");
  background-size: cover;
}

/* ===== Tagline cluster ===== */
.tagline-cluster {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.tag-pill .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .wrap { padding: 0 18px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 22px 20px 26px;
    gap: 18px;
    border-bottom: 3px solid var(--red);
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 15px; padding: 6px 0; min-height: 36px; display: flex; align-items: center; }
  .site-nav .btn { width: 100%; text-align: center; padding: 14px 20px; }

  .hero { padding: 30px 0 40px; }
  .hero-title { font-size: clamp(38px, 11vw, 72px); margin-bottom: 14px; }
  .hero-sub { font-size: 16px; margin-bottom: 14px; padding: 0 6px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 14px; margin-bottom: 10px; }
  .hero-script { font-size: 22px; }
  .pit-status { font-size: 11px; padding: 6px 14px; margin-bottom: 10px; }
  .tagline-cluster { gap: 8px; margin-top: 4px; }
  .tag-pill { font-size: 11px; padding: 6px 12px; letter-spacing: 0.16em; }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px;
    margin: 22px auto 24px;
    gap: 10px;
  }
  .tile-lg { grid-column: 1 / 3; grid-row: 1 / 2; transform: none; }
  .tile-tilt-l, .tile-tilt-r { transform: none; }
  .tile-tilt-l:hover { transform: translateY(-4px) scale(1.02); }
  .tile-tilt-r:hover { transform: translateY(-4px) scale(1.02); }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; padding: 16px 20px; }

  .intro-grid,
  .feature-grid,
  .catering-grid,
  .contact-grid,
  .about-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat { padding: 22px 18px; }
  .quotes-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 26px; }
  .process-steps::before { display: none; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-item-name { font-size: 17px; }
  .menu-item-price { font-size: 17px; }
  .menu-section h2 { font-size: 26px; }
  .platter-card { grid-template-columns: 1fr; }
  .platter-img { min-height: 220px; }
  .platter-body { padding: 30px 24px; }
  .specials-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .cat-packages,
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .feature-img,
  .about-img { height: 280px; }
  .cat-form { padding: 28px 22px; }
  .featured-grid { grid-template-columns: 1fr; gap: 18px; }
  .dish-img { height: 220px; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-item { height: 130px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 0; }
  .trust-item { border-right: 1px solid var(--line); padding: 6px 4px; }
  .trust-item:nth-child(3n) { border-right: none; }
  .trust-label { font-size: 10px; letter-spacing: 0.12em; }
  .trust-icon { width: 30px; height: 30px; }
  .has-flame::before { width: 18px; height: 18px; margin-right: 8px; }
  .hero-sticker { width: 88px; height: 88px; font-size: 9px; top: 14px; right: 10px; border-width: 2px; }
  .hero-sticker strong { font-size: 14px; margin: 2px 0; }
  .strip-marquee .marquee { font-size: 18px; padding: 14px 0; letter-spacing: 0.1em; }
  .strip-marquee .marquee span { padding: 0 18px; gap: 10px; }
  .announce { font-size: 11px; letter-spacing: 0.16em; }
  .announce .marquee span { padding: 0 18px; }

  .quote { padding: 28px 22px; }
  .quote:nth-child(1),
  .quote:nth-child(2),
  .quote:nth-child(3) { transform: rotate(0); }
  .quote blockquote { font-size: 17px; }

  .page-hero { padding: 50px 0 50px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 56px); }
  .page-hero p { font-size: 16px; }

  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .lead { font-size: 16px; }

  .header-inner { padding: 12px 18px; }
  .brand-mark { font-size: 19px; }
  .brand-sub { font-size: 10px; letter-spacing: 0.26em; }

  .faq-q { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq-q .faq-toggle { width: 32px; height: 32px; font-size: 20px; }
  .faq-a { padding: 0 20px; font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 20px 20px; max-height: 600px; }

  .site-footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }

  .ci-label { font-size: 11px; }
  .contact-info li { font-size: 15px; }
  .big-phone { font-size: 30px !important; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .band-cream, .band-light, .band-dark, .band-red { padding: 60px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(34px, 12vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-collage { grid-template-rows: 120px 120px 120px; }
  .tagline-cluster .tag-pill { font-size: 10px; padding: 5px 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .trust-item { border-right: 1px solid var(--line) !important; }
  .trust-item:nth-child(2n) { border-right: none !important; }
  .menu-section h2 { font-size: 22px; }
  .menu-item { flex-direction: row; }
  .dish-title { font-size: 20px; }
  .quote blockquote { font-size: 16px; }
  .step-num { width: 64px; height: 64px; font-size: 24px; }
  .cat-pack { padding: 26px 22px; }
  .cat-pack h3 { font-size: 21px; }
  .cat-pack .price { font-size: 24px; }
}

/* Touch device — disable hover-only effects */
@media (hover: none) {
  .tile:hover { transform: none; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
  .tile-tilt-l:hover, .tile-tilt-r:hover { transform: none; }
  .dish-card:hover { transform: none; }
  .stat:hover { transform: none; }
  .gallery-item:hover { transform: none; }
  .gallery-item:hover::after { background: rgba(0,0,0,0); }
  .quote:hover { transform: none; }
  .btn:hover { transform: none; }
  .btn:hover .arrow { transform: none; }
}
