:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-soft: #f7f1e7;
  --text: #111827;
  --muted: #4b5563;
  --accent: #d63b31;
  --accent-dark: #b62c24;
  --border: #e5e7eb;
  --radius: 18px;
  --shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  justify-self: start;
}

.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
}

.nav a.active {
  color: var(--accent);
}

.header-actions {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 16px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.btn-outline:hover {
  background: #fff1ef;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.hero {
  padding: 90px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fee2e2;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.hero h1 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.hero .lead {
  margin: 18px 0 12px;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: #374151;
}

.location-line {
  margin: 0;
  color: #6b7280;
  font-size: clamp(14px, 1.1vw, 17px);
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media,
.section-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img,
.section-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.section h2 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section h2 span {
  color: #6b7280;
}

.section p.large {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.8vw, 24px);
  color: #4b5563;
}

.section-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.gallery-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.gallery-content h3 {
  margin: 0;
  font-size: 28px;
}

.gallery-content p {
  margin: 4px 0 0;
  font-size: 17px;
  color: #e5e7eb;
}

.center {
  text-align: center;
  margin-top: 30px;
}

.home-highlights {
  margin-top: -6px;
  padding-top: 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
}

.highlight-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.highlight-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.food-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

.food-media {
  position: relative;
}

.food-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 800;
}

.food-body {
  padding: 16px 16px 18px;
}

.food-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.food-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.menu-filters {
  margin: 8px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  cursor: pointer;
  appearance: none;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
}

.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.food-card.is-hidden {
  display: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.07);
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-hero {
  background: linear-gradient(120deg, #d51920 0%, #c10f16 55%, #de3037 100%);
  color: #fff;
  padding: 36px 0;
}

.contact-hero h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
}

.contact-hero p {
  margin: 8px 0 0;
  text-align: center;
  font-size: 18px;
  color: #fee2e2;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fee2e2;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 12px;
}

.map-wrap {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: #4b5563;
}

.footer-grid {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-col strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 16px;
}

.footer-col p,
.footer-col a {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 10px 0 14px;
  }

  .brand,
  .header-actions {
    justify-self: center;
  }

  .hero-grid,
  .split-grid,
  .gallery-grid,
  .highlight-grid,
  .cards-grid,
  .info-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 17px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 16px;
  }

  .hero-media img,
  .section-image img,
  .food-card img {
    min-height: 240px;
    height: 240px;
  }

  .section,
  .hero {
    padding: 40px 0;
  }

  .map-wrap iframe {
    height: 320px;
  }
}
