:root {
  --black: #15110f;
  --cream: #fff7e8;
  --gold: #c89435;
  --red: #7b211f;
  --white: #ffffff;
  --muted: #6f6258;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}
.container { width: min(1120px, 92%); margin: auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(21,17,15,.97); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1rem 0; }
.brand { color: var(--gold); font-weight: 800; text-decoration: none; font-size: 1.15rem; }
nav { display: flex; flex-wrap: wrap; gap: 1rem; }
nav a { color: white; text-decoration: none; font-size: .95rem; }
nav a:hover { color: var(--gold); }
.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(21,17,15,.72), rgba(21,17,15,.82)),
    url('assets/soul-food-platter.jpg') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 880px; padding: 6rem 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-weight: 800; color: var(--gold); font-size: .82rem; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 8vw, 6.8rem); line-height: .95; margin: .5rem 0 1rem; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; margin: .4rem 0 1.1rem; }
h3 { margin-top: 0; }
.tagline { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 700; }
.badge { display: inline-block; margin: .6rem 0 1rem; padding: .65rem 1rem; border: 1px solid var(--gold); color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-copy { max-width: 720px; margin: 1rem auto 1.7rem; color: #f1e9df; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }
.btn { display: inline-block; padding: .9rem 1.2rem; border-radius: 4px; text-decoration: none; font-weight: 800; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-secondary { border: 1px solid rgba(255,255,255,.6); color: white; }
.section { padding: 5.5rem 0; }
.alt { background: white; }
.private-chef { background: linear-gradient(135deg, #fff7e8 0%, #f1dcc0 100%); border-top: 4px solid var(--gold); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card, .panel, .contact-box { background: var(--cream); border: 1px solid #e5d6bf; padding: 1.4rem; border-radius: 8px; }
.card h3 { color: var(--red); }
.note { color: var(--muted); font-style: italic; margin-top: 1.5rem; }
.food-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.food-gallery figure { margin: 0; overflow: hidden; background: var(--black); border-radius: 10px; }
.food-gallery img { width: 100%; height: 270px; object-fit: cover; display: block; }
.food-gallery figcaption { color: var(--cream); padding: .85rem 1rem; font-weight: 700; }
.panel { background: var(--black); color: white; }
.panel h3 { color: var(--gold); }
.foodtruck { background: var(--red); color: white; text-align: center; }
.foodtruck .eyebrow { color: #f5ca73; }
.big-copy { max-width: 820px; margin: 0 auto 1.4rem; font-size: 1.18rem; }
.status { display: inline-block; padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.contact-box { display: flex; flex-direction: column; gap: .4rem; }
.contact-box strong { color: var(--red); }
.contact-box a { color: var(--black); font-weight: 700; }
footer { background: var(--black); color: #d8cbbf; padding: 1.5rem 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 800px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  nav { gap: .7rem; }
  .two-col, .cards, .contact-grid, .food-gallery { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}
