:root {
  --bg: #191919;
  --bg-soft: #202020;
  --panel: #242424;
  --text: #f2ede8;
  --muted: #a7a19b;
  --line: rgba(229, 118, 72, 0.28);
  --accent: #ef7d4f;
  --accent-strong: #ef7447;
  --white: #ffffff;
  --max-width: 1160px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.container {
  width: min(calc(100% - 64px), var(--max-width));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.02), transparent 30%),
    linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title,
.footer-brand-title {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  display: flex;
  align-items: center;
}

.hero-page {
  min-height: 360px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.45) 0%, rgba(18, 18, 18, 0.48) 34%, rgba(20, 20, 20, 0.88) 86%, #181818 100%);
}

.hero-home::before {
  background-image: url("Image (Burger close up).png");
  background-position: center 32%;
}

.hero-about::before {
  background-image: url("Container (23).png");
}

.hero-menu::before {
  background-image: url("Section.png");
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.hero-home .hero-content {
  margin: 0 auto;
  text-align: center;
}

.hero-title,
.section-title,
.card-title,
.menu-category-title,
.footer-heading,
.showcase-title,
.menu-item-name {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  line-height: 0.95;
}

.section-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.accent {
  color: var(--accent);
}

.hero-subtitle,
.section-copy,
.card-copy,
.showcase-copy,
.menu-category-copy,
.menu-item-desc,
.footer p,
.footer li,
.footer a,
.info-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 580px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 84px 0;
}

.section-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading-left {
  margin: 0 0 34px;
  text-align: left;
}

.section-copy {
  margin: 14px auto 0;
  max-width: 780px;
}

.grid-4,
.grid-3,
.grid-2,
.menu-items,
.showcase-grid,
.reviews,
.footer-inner {
  display: grid;
  gap: 18px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.reviews,
.menu-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.review-card,
.info-card,
.menu-item,
.showcase-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.feature-card,
.review-card,
.info-card,
.showcase-body,
.menu-item {
  padding: 24px 22px;
}

.icon-badge {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(239, 125, 79, 0.12);
  color: var(--accent);
  font-size: 1.25rem;
}

.card-title,
.menu-item-name,
.showcase-title,
.footer-heading,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1;
}

.two-column,
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.media-card,
.showcase-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card img,
.mosaic img,
.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 192px 192px;
  gap: 14px;
}

.mosaic .tall {
  grid-row: span 2;
}

.showcase-image-wrap {
  position: relative;
  height: 230px;
}

.showcase-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(239, 125, 79, 0.18);
  color: #ffd7bf;
  font-size: 0.7rem;
  font-weight: 600;
}

.menu-item-name .badge {
  margin-left: 8px;
  vertical-align: middle;
}

.showcase-title-row,
.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.centered-action {
  margin-top: 32px;
  text-align: center;
}

.cta-band {
  background: linear-gradient(180deg, #3b261f 0%, #38241e 100%);
  text-align: center;
}

.footer {
  background: #232323;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  padding: 54px 0 24px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.copyright {
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.menu-category-panel {
  padding: 34px 32px 12px;
  background: #222222;
}

.menu-category {
  padding: 54px 0;
}

.menu-note {
  margin-top: 44px;
  padding: 22px 18px;
  text-align: center;
  background: var(--accent-strong);
  color: rgba(255, 255, 255, 0.86);
}

.review-card span {
  display: inline-block;
  margin-top: 16px;
}

.info-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
}

.spacer-xl {
  padding-top: 96px;
}

@media (max-width: 1080px) {
  .grid-4,
  .showcase-grid,
  .footer-inner,
  .grid-3,
  .grid-2,
  .reviews,
  .menu-items,
  .two-column,
  .about-split {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 200px);
  }

  .mosaic .tall {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-page {
    min-height: 290px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .section {
    padding: 64px 0;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }
}
