:root {
  --green-950: #06130a;
  --green-900: #0d2414;
  --gold: #e8cf6a;
  --cream: #fff3b8;
  --paper: #fff8e5;
  --ink: #172016;
  --muted: rgba(255, 248, 229, .74);
  --line: rgba(255, 243, 184, .26);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(6, 19, 10, .94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 900;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
}

.hero {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: linear-gradient(120deg, rgba(6, 19, 10, .96), rgba(13, 36, 20, .82)), url('../assets/photos/patio-course-view.jpg') center/cover;
  color: var(--paper);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: .92;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
}

.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--cream);
  border-radius: 8px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 900;
}

.btn.primary {
  background: var(--cream);
  color: var(--ink);
}

.menu-feature-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.menu-photo-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(23, 32, 22, .14);
  background: #07140b;
}

.menu-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrap-photo img {
  object-position: center 42%;
}

.menu-section,
.sides {
  padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.menu-section.alt {
  background: #f4e9c8;
}

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

.menu-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(23, 32, 22, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
}

.menu-grid.compact article {
  min-height: 112px;
}

article div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

strong {
  white-space: nowrap;
  color: #52651f;
}

article p,
.fine,
.sides p {
  color: rgba(23, 32, 22, .72);
}

.fine {
  max-width: 960px;
  margin: 0 0 20px;
}

.sides {
  background: #ead89d;
}

.sides p {
  max-width: 980px;
  font-size: 1.12rem;
}

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

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

  .menu-feature-photos {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .menu-grid article {
    min-height: auto;
  }

  .hero,
  .menu-section,
  .sides {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  article div {
    gap: 8px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }
}
