:root {
  --ink: #21130d;
  --brown: #4a2318;
  --red: #7f2e21;
  --brick: #9d442c;
  --cream: #fbf1df;
  --paper: #f3dfc3;
  --gold: #d69a3a;
  --white: #fffaf0;
  --line: rgba(33, 19, 13, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 34px;
  color: var(--white);
  background: rgba(33, 19, 13, .94);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
  font-weight: 900;
}

.lang {
  justify-self: end;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}

.lang button {
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: 900 11px Inter, sans-serif;
  cursor: pointer;
}

.lang button.active {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(380px, 1.02fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 70px 48px 54px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(33,19,13,.96), rgba(74,35,24,.9) 48%, rgba(127,46,33,.78)),
    url("assets/mb-hero.jpg") center/cover;
}

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

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  line-height: .9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  font-size: clamp(72px, 8.2vw, 142px);
}

h2 {
  font-size: clamp(42px, 5.2vw, 84px);
}

h3 {
  font-size: 32px;
}

.lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255,250,240,.84);
  font-size: 19px;
  line-height: 1.65;
}

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

.btn,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.primary,
.pill:first-child {
  color: var(--ink);
  background: var(--gold);
}

.secondary,
.pill {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
}

.proof div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.proof strong,
.proof span {
  display: block;
}

.proof strong {
  color: var(--gold);
  font-size: 23px;
}

.proof span {
  margin-top: 4px;
  color: rgba(255,250,240,.72);
  font-size: 12px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0,0,0,.32);
}

.badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream);
}

.badge span,
.badge strong {
  display: block;
}

.badge span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge strong {
  margin-top: 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 36px;
  line-height: .92;
}

.story,
.value,
.reviews,
.contact {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  padding: 96px 48px;
}

.story p,
.contact-card p,
.dish-grid p,
.value-cards span {
  color: rgba(33,19,13,.72);
  font-size: 17px;
  line-height: 1.7;
}

.story > p {
  max-width: 760px;
  font-size: 21px;
}

.grill {
  display: grid;
  grid-template-rows: minmax(320px, 45vw) auto;
  color: var(--white);
  background: var(--brown);
}

.grill > img {
  min-height: 380px;
}

.grill-copy {
  display: grid;
  grid-template-columns: .3fr .7fr;
  gap: 40px;
  align-items: end;
  padding: 58px 48px 72px;
}

.menu {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 40px;
  align-items: end;
  padding: 96px 48px 42px;
}

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

.dish-grid article {
  min-width: 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.14);
}

.dish-grid img {
  aspect-ratio: 1 / .9;
  height: auto;
}

.dish-grid div {
  min-height: 250px;
  padding: 26px 28px 34px;
}

.dish-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.dish-grid p {
  color: rgba(255,250,240,.72);
}

.value {
  color: var(--white);
  background: var(--red);
}

.value .kicker {
  color: #f2c773;
}

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

.value-cards article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.value-cards strong,
.value-cards span {
  display: block;
}

.value-cards strong {
  color: var(--gold);
  font-family: Fraunces, Georgia, serif;
  font-size: 44px;
  line-height: .95;
}

.value-cards span {
  margin-top: 14px;
  color: rgba(255,250,240,.82);
}

.reviews {
  background: var(--cream);
}

.quotes {
  display: grid;
  gap: 14px;
}

.quotes blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.55);
  font-family: Fraunces, Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact {
  align-items: start;
  background: var(--paper);
}

.contact-card {
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brown);
}

.contact-card p {
  color: rgba(255,250,240,.78);
}

.hours {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.54);
}

.hours h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.hours strong {
  text-align: right;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 48px;
  color: rgba(255,250,240,.76);
  background: #160c08;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1000px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .story,
  .grill-copy,
  .section-head,
  .value,
  .reviews,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 22px 30px;
  }

  h1 {
    font-size: clamp(56px, 15vw, 102px);
  }

  .hero-media {
    width: 100%;
    max-width: 100%;
    min-height: 420px;
  }

  .story,
  .grill-copy,
  .section-head,
  .value,
  .reviews,
  .contact {
    padding: 64px 22px;
  }

  .dish-grid,
  .value-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 58px;
    padding: 0 14px;
  }

  .brand {
    font-size: 20px;
  }

  .lang button {
    width: 30px;
  }

  .lead,
  .story > p {
    font-size: 17px;
  }

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

  .hero-media {
    min-height: 350px;
  }

  .badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .badge strong {
    font-size: 30px;
  }

  h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .grill > img {
    min-height: 300px;
  }

  .contact-card,
  .hours,
  .quotes blockquote {
    padding: 24px;
  }

  .quotes blockquote {
    font-size: 23px;
  }

  footer {
    display: grid;
    padding: 24px 22px;
  }
}
