* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fffaf6;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.topbar {
  border-bottom: 2px solid #111;
  background: #fff;
}

.topbar__inner,
.content,
.footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #eb5e3d;
}

.hero {
  padding: 56px 0 32px;
}

.eyebrow {
  color: #eb5e3d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(36px, 7vw, 76px);
  line-height: .95;
  letter-spacing: 0;
  margin: 0 0 20px;
  max-width: 900px;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(18px, 3vw, 24px);
  max-width: 760px;
  margin: 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 40px;
}

.fact {
  background: #fff;
  border: 2px solid #111;
  padding: 16px;
}

.fact strong {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 32px;
}

.section {
  background: #fff;
  border: 2px solid #111;
  margin-bottom: 24px;
  padding: 28px;
}

h2 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.menu-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.menu-list li {
  border-top: 1px solid #ddd;
  list-style: none;
  padding-top: 10px;
}

.cta {
  align-items: center;
  background: #111;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 18px;
  text-decoration: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-row .cta {
  margin-top: 0;
}

.cta--secondary {
  background: #fff;
  border: 2px solid #111;
  color: #111;
}

.cta:hover {
  background: #eb5e3d;
  color: #111;
}

.aside {
  position: sticky;
  top: 24px;
}

.footer {
  color: #555;
  font-size: 13px;
  padding: 32px 0 48px;
}

@media (max-width: 800px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .facts,
  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 22px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }
}
