body.restaurant {
  --bg: #19120f;
  --panel: #241a16;
  --surface: #31231d;
  --text: #fff4eb;
  --muted: #d5b9a8;
  --accent: #d48d31;
  --accent-2: #b87522;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  --brand-font: "Playfair Display";
  --heading-font: "Playfair Display";
  --body-font: "Inter";
}

body.restaurant {
  background: radial-gradient(circle at 12% 10%, rgba(212, 141, 49, 0.18), transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 35%),
    var(--bg);
}

body.restaurant .site-header {
  position: sticky;
}

body.restaurant .site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 141, 49, 0.12), transparent 55%);
  pointer-events: none;
}

body.restaurant .hero {
  position: relative;
}

body.restaurant .hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 141, 49, 0.2), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

body.restaurant .hero-wrap {
  grid-template-columns: 1.15fr 0.85fr;
}

body.restaurant .hero-copy p {
  color: var(--muted);
}

body.restaurant .hero-aside {
  display: grid;
  gap: 16px;
}

body.restaurant .hero-panel {
  background: linear-gradient(160deg, rgba(49, 35, 29, 0.9), rgba(25, 18, 15, 0.9));
  border-color: rgba(255, 255, 255, 0.22);
}

body.restaurant .hero-graphic {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  align-items: center;
}

body.restaurant .hero-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

body.restaurant .graphic-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
}

body.restaurant .card {
  background: linear-gradient(160deg, rgba(49, 35, 29, 0.92), rgba(36, 26, 22, 0.92));
  border-color: rgba(255, 255, 255, 0.2);
}

body.restaurant .feature-pill {
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffe4c3;
}

body.restaurant .cta {
  background: linear-gradient(120deg, rgba(212, 141, 49, 0.22), rgba(36, 26, 22, 0.9));
}

body.restaurant .site-footer {
  background: rgba(25, 18, 15, 0.9);
}

@media (max-width: 860px) {
  body.restaurant .hero-wrap {
    grid-template-columns: 1fr;
  }
}
