:root {
  --ink: #17120f;
  --charcoal: #241915;
  --ember: #b73f22;
  --flame: #e48a2d;
  --green: #1f5b40;
  --mint: #eaf3ec;
  --paper: #fff8ef;
  --cream: #f3e7d6;
  --muted: #77675d;
  --line: #e2d0be;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 18, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(23, 18, 15, 0.94);
  color: var(--paper);
  border-bottom: 1px solid rgba(228, 138, 45, 0.38);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  text-decoration: none;
  line-height: 1.05;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand small {
  color: var(--flame);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.nav a {
  padding: 9px 10px;
  color: rgba(255, 248, 239, 0.82);
  font-size: 14px;
  text-decoration: none;
}

.nav .call-link {
  color: var(--ink);
  background: var(--flame);
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  min-height: calc(100vh - 65px);
  display: grid;
  background: var(--charcoal);
  color: var(--paper);
}

.hero-media {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(23, 18, 15, 0.1), rgba(23, 18, 15, 0.45)),
    url("assets/real/hero-grill.jpg") center/cover;
}

.hero-copy {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 22px;
}

.demo-label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--flame);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.demo-label {
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  text-transform: none;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  font-size: 45px;
}

h2 {
  font-size: 34px;
}

h3 {
  margin: 0;
  line-height: 1.18;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 248, 239, 0.78);
  font-size: 17px;
}

.actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--flame);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 248, 239, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--charcoal);
  border-color: var(--line);
  background: var(--paper);
}

.review-band {
  display: grid;
  gap: 18px;
  padding: 34px 20px;
  background: var(--green);
  color: var(--paper);
}

.review-band > * {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}

.review-band div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.review-band strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.9;
}

.review-band span {
  color: rgba(255, 248, 239, 0.86);
  font-weight: 900;
}

.review-band p {
  margin: 0;
  color: rgba(255, 248, 239, 0.8);
  font-size: 17px;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 68px 20px;
}

.section-title {
  max-width: 760px;
}

.section-title.narrow {
  max-width: 650px;
}

.feature-grid,
.menu-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 18, 15, 0.07);
}

.feature-grid span {
  color: var(--ember);
  font-weight: 900;
}

.feature-grid h3 {
  margin-top: 10px;
}

.feature-grid p,
.booking-panel p,
.menu-card span,
.footer p {
  color: var(--muted);
}

.menu-section {
  padding: 68px 20px;
  background: var(--mint);
}

.menu-section > * {
  max-width: 1120px;
  margin-inline: auto;
}

.menu-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(31, 91, 64, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-card.large img {
  aspect-ratio: 4 / 3;
}

.menu-card div {
  padding: 20px;
}

.menu-card p {
  margin: 0 0 8px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.booking-panel {
  display: grid;
  gap: 20px;
  padding: 46px 20px;
  background: var(--charcoal);
  color: var(--paper);
}

.booking-panel > * {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}

.booking-panel p {
  max-width: 680px;
  color: rgba(255, 248, 239, 0.76);
}

.visit {
  padding: 74px 20px;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.88), rgba(23, 18, 15, 0.48)),
    url("assets/real/platter.jpg") center/cover;
  color: var(--paper);
}

.visit-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.visit-content p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 248, 239, 0.82);
  font-size: 18px;
}

.footer {
  padding: 26px 20px;
  background: var(--ink);
}

.footer p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 248, 239, 0.68);
  font-size: 13px;
}

@media (min-width: 760px) {
  .topbar {
    padding-inline: 34px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }

  .hero-media {
    min-height: calc(100vh - 65px);
  }

  .hero-copy {
    min-height: calc(100vh - 65px);
    padding: 60px 58px;
  }

  h1 {
    font-size: 60px;
  }

  .review-band {
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    align-items: center;
    padding-inline: 48px;
  }

  .review-band > * {
    margin-inline: 0;
  }

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

  .menu-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .booking-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-inline: 48px;
  }
}

@media (max-width: 470px) {
  .nav a:not(.call-link) {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    min-height: 500px;
  }

  .button {
    width: 100%;
  }
}
