:root {
  --bg: #f8f2e8;
  --surface: #fffaf4;
  --surface-strong: #fff;
  --ink: #201612;
  --muted: #6c584d;
  --accent: #8f3d20;
  --accent-dark: #6f2810;
  --cream: #f4e5d2;
  --line: rgba(32, 22, 18, 0.1);
  --shadow: 0 18px 45px rgba(31, 23, 19, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fcf7f0 0%, #f6ecdf 100%);
  line-height: 1.6;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding-left: 1.1rem; }
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(252, 247, 240, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
}
.brand-title,
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}
.brand-title {
  font-size: 1.45rem;
  font-weight: 700;
}
.brand-tag {
  color: var(--muted);
  font-size: 0.88rem;
}
.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav a {
  font-weight: 700;
  color: var(--muted);
}
.nav a:hover { color: var(--accent); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.25rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 61, 32, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 40, 16, 0.12), transparent 28%);
  pointer-events: none;
}
.hero-grid,
.order-grid,
.seo-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.1fr 0.9fr; }
.order-grid { grid-template-columns: repeat(2, 1fr); }
.seo-grid { grid-template-columns: 1.15fr 0.85fr; }
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
h1 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0 0 0.8rem;
}
h4 {
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.hero-text,
.section-blurb,
.hero-note,
.menu-card p,
.order-card p,
.showcase-copy p,
.sample-copy p,
footer p,
address,
.seo-grid p,
.step-card p,
li {
  color: var(--muted);
}
.hero-actions,
.delivery-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-actions {
  margin: 1.5rem 0 1rem;
}
.delivery-actions,
.map-actions {
  margin-top: 0.9rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary,
.btn-delivery,
.btn-map {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
}
.btn-secondary:hover,
.btn-delivery:hover,
.btn-map:hover {
  background: #fff;
}
.hero-card,
.order-card,
.menu-card,
.showcase-card,
.step-card,
.sample-plate,
.seo-card {
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-card img {
  height: min(72vw, 640px);
  object-fit: cover;
}
.section {
  padding: 2.4rem 0 4.6rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}
.showcase-grid,
.builder-steps,
.card-grid,
.plate-pills {
  display: grid;
  gap: 1.25rem;
}
.showcase-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}
.showcase-card.wide {
  grid-row: span 2;
}
.showcase-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.showcase-copy {
  padding: 1rem 1.1rem 1.2rem;
}
.builder-steps {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.35rem;
}
.step-card,
.sample-plate,
.order-card,
.seo-card {
  padding: 1.7rem;
}
.step-number {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}
.sample-plate {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, #f7ebde 100%);
}
.plate-pills {
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
}
.plate-pills span {
  padding: 1rem;
  text-align: center;
  border-radius: 18px;
  background: rgba(143, 61, 32, 0.08);
  border: 1px solid rgba(143, 61, 32, 0.1);
  font-weight: 800;
}
.menu-block + .menu-block { margin-top: 2.75rem; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.five-col { grid-template-columns: repeat(5, 1fr); }
.menu-card img {
  height: 290px;
  object-fit: cover;
}
.menu-card-body {
  padding: 1.15rem 1.1rem 1.3rem;
}
.sauce-section {
  padding-top: 0;
}
.sauce-card img {
  height: 220px;
}
.sauce-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.sauce-placeholder-art {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6b3a1c 0%, #b7763a 48%, #f1d1a1 100%);
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.seo-section {
  padding-top: 0.4rem;
}
.seo-card {
  background: rgba(255,255,255,0.82);
}
address {
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1rem;
}
.light-card {
  background: rgba(255,255,255,0.75);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0 2rem;
}

@media (max-width: 1100px) {
  .showcase-grid,
  .five-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-card.wide {
    grid-row: auto;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .order-grid,
  .seo-grid,
  .builder-steps,
  .three-col,
  .four-col,
  .two-col,
  .five-col,
  .sample-plate,
  .section-heading,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero-card img,
  .menu-card img,
  .showcase-card img,
  .sauce-card img {
    height: auto;
    max-height: none;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }
  .nav-wrap {
    align-items: flex-start;
  }
  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
  .hero-actions,
  .delivery-actions,
  .map-actions {
    width: 100%;
  }
  .btn {
    width: 100%;
  }
  .step-card,
  .sample-plate,
  .order-card,
  .seo-card {
    padding: 1.25rem;
  }
  .menu-card-body,
  .showcase-copy {
    padding: 1rem;
  }
  .plate-pills {
    grid-template-columns: 1fr;
  }
}
