:root {
  --ink: #161616;
  --muted: #5d6460;
  --paper: #fafafa;
  --line: #d8ded9;
  --red: #d9362b;
  --green: #0d7a58;
  --yellow: #f2c84b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 14px 5vw;
  background: rgba(250, 250, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 5vw 64px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34)),
    url("/assets/shawarma.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: 3.3rem;
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.hero-text {
  max-width: 520px;
  margin: 22px 0 28px;
  font-size: 1.15rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #bd2d24;
}

.section {
  padding: 64px 5vw;
}

.compact {
  padding-top: 42px;
}

.section-head {
  width: min(940px, 100%);
  margin: 0 auto 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(940px, 100%);
  margin: 0 auto;
}

.menu-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.menu-item strong {
  color: var(--red);
  font-size: 1.08rem;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: center;
  padding: 54px 5vw;
  background: var(--ink);
  color: var(--white);
}

.info-band .eyebrow {
  color: var(--yellow);
}

.info-band p:last-child {
  margin: 0;
  color: #dfe7e1;
}

.plain-text {
  width: min(940px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
    padding-top: 56px;
  }

  h1 {
    max-width: 11ch;
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section,
  .compact {
    padding: 44px 5vw;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    min-height: 160px;
  }
}
