* {
  box-sizing: border-box;
}

:root {
  --cream: #fbf4e8;
  --paper: #fffaf2;
  --green: #0f3f27;
  --green-dark: #082414;
  --charcoal: #17130f;
  --red: #a82424;
  --red-dark: #7f1719;
  --gold: #d7a84f;
  --olive: #5f7035;
  --text: #1f1b16;
  --muted: #70675e;
  --line: #eadcc9;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('assets/hero-food.png');
  background-size: cover;
  background-position: center;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 700;
}

.hero-content {
  padding: 95px 7%;
  max-width: 760px;
}

.hero-content h1 {
  font-size: 64px;
  margin: 10px 0;
}

.tag {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.button, button {
  display: inline-block;
  border: none;
  background: var(--red);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--red-dark);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #111;
  color: white;
}

.info-strip div {
  padding: 22px 7%;
  border-right: 1px solid rgba(251,244,232,.18);
}

.info-strip a {
  color: var(--gold);
}

.section {
  padding: 60px 7%;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 8px;
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 620px;
  text-align: center;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .8fr);
  gap: 34px;
  align-items: center;
  background: var(--paper);
}

.story-content {
  max-width: 780px;
}

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

.story-content h2 {
  text-align: left;
}

.story-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.story-highlights {
  display: grid;
  gap: 14px;
}

.story-highlights div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.story-highlights strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.story-highlights span {
  color: var(--text);
  font-weight: 800;
}

.menu-nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 -7% 30px;
  padding: 14px 7%;
  background: rgba(251,244,232,.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.menu-nav a {
  color: var(--red);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.menu-nav a:hover {
  color: white;
  background: var(--red);
  border-color: var(--red);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  column-gap: 30px;
  row-gap: 6px;
}

.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(31,27,22,.06);
}

.menu-section {
  scroll-margin-top: 92px;
  margin-bottom: 24px;
}

.menu-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.menu-card h3::before,
.menu-card h3::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--line);
}

.menu-card h3:not(:first-child) {
  margin-top: 36px;
}

.item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.item:last-child {
  border-bottom: none;
}

.item span {
  font-weight: 800;
  line-height: 1.25;
}

.item small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 5px;
}

.item b {
  align-self: start;
  color: var(--red-dark);
  background: #f7eadc;
  border: 1px solid #efd5bf;
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.small {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.menu-note {
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.menu-order {
  margin-top: 32px;
  text-align: center;
}

.contact {
  text-align: center;
}

.directions-button {
  margin: 10px 0 24px;
}

.map {
  max-width: 980px;
  height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31,27,22,.08);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background: var(--charcoal);
  color: white;
  text-align: center;
  padding: 22px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 70px 7%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  nav, .nav-links {
    display: block;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .nav-links a {
    display: inline-block;
    margin: 12px 12px 0 0;
  }

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

  .section {
    padding: 46px 5%;
  }

  .section h2 {
    font-size: 34px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-content h2 {
    text-align: center;
  }

  .story-content p,
  .eyebrow {
    text-align: center;
  }

  .menu-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 -5% 24px;
    padding: 12px 5%;
  }

  .menu-nav a {
    padding: 10px 8px;
    text-align: center;
    font-size: 14px;
  }

  .menu-card {
    padding: 20px;
  }

  .menu-card h3 {
    font-size: 18px;
  }

  .menu-card h3::before,
  .menu-card h3::after {
    width: 28px;
  }

  .item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .item b {
    justify-self: start;
  }

  .map {
    height: 300px;
  }
}
