:root {
  --green: #063f22;
  --green-deep: #032a18;
  --gold: #c7943e;
  --gold-soft: #f5dfaa;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --ink: #171717;
  --muted: #6c665d;
  --line: rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --shadow: 0 18px 48px rgba(6, 63, 34, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.menu-hero {
  background:
    linear-gradient(180deg, rgba(3, 42, 24, 0.7), rgba(3, 42, 24, 0.94)),
    url("assets/hero.png") center/cover;
  color: #fff;
  min-height: 34vh;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  padding: 18px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.home-link {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

.hero-content {
  margin: 0 auto;
  max-width: 1080px;
  padding: 34px 18px 44px;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-content h1,
.featured-panel h2,
.section-title h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-content h1 {
  font-size: clamp(38px, 10vw, 70px);
  line-height: 0.98;
}

.hero-content p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-top: 18px;
  max-width: 520px;
}

.hours-pill {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  margin-top: 18px;
  padding: 9px 13px;
}

.category-tabs {
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.category-tabs a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

main,
.menu-footer {
  margin: 0 auto;
  max-width: 1080px;
}

.featured-panel,
.menu-section {
  padding: 30px 18px;
}

.featured-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
}

.featured-panel .eyebrow,
.section-title .eyebrow {
  color: var(--gold);
}

.featured-panel h2,
.section-title h2 {
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.04;
}

.featured-grid {
  display: grid;
  gap: 12px;
}

.featured-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  grid-template-columns: 72px 1fr;
  min-height: 88px;
  padding: 10px;
}

.featured-grid img {
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(199, 148, 62, 0.26);
  border-radius: 50%;
  cursor: zoom-in;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.featured-grid div {
  display: grid;
  gap: 2px;
  padding: 4px 0;
}

.featured-grid span,
.menu-card span,
.price-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.featured-grid strong {
  font-size: 18px;
}

.featured-grid b {
  color: var(--green);
  font-size: 20px;
}

.section-title {
  margin-bottom: 14px;
}

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

.menu-grid.single {
  grid-template-columns: minmax(0, 520px);
}

.menu-card {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 98px;
  padding: 10px;
}

.menu-card img {
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(199, 148, 62, 0.22);
  border-radius: 50%;
  cursor: zoom-in;
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.menu-card.compact {
  display: block;
  min-height: 0;
}

.item-body {
  padding: 0;
  width: 100%;
}

.item-head {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.item-head h3 {
  font-size: 16px;
  line-height: 1.18;
  max-width: 70%;
}

.item-head strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.item-body p {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0 8px;
}

.menu-card span {
  background: rgba(199, 148, 62, 0.12);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  padding: 4px 8px;
}

.price-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
  overflow: hidden;
}

.price-list.short {
  margin-top: 14px;
}

.price-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 66px;
  padding: 14px;
}

.price-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.price-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.price-list span {
  font-weight: 800;
  min-width: 0;
}

.price-list b {
  color: var(--green);
  font-size: 17px;
  white-space: nowrap;
}

.price-list small {
  grid-column: 1 / -1;
}

.image-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 72px);
  margin-top: 12px;
}

.image-strip img {
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(199, 148, 62, 0.22);
  border-radius: 50%;
  cursor: zoom-in;
  object-fit: cover;
  width: 72px;
}

.photo-modal {
  align-items: center;
  background: rgba(3, 42, 24, 0.86);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 50;
}

.photo-modal.is-open {
  display: flex;
}

.photo-modal figure {
  background: #fff;
  border-radius: var(--radius);
  max-height: 92vh;
  max-width: min(920px, 100%);
  overflow: hidden;
  position: relative;
}

.photo-modal img {
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.photo-modal figcaption {
  color: var(--ink);
  font-weight: 800;
  padding: 12px 14px;
}

.photo-modal button {
  background: var(--green);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  height: 42px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 42px;
}

.menu-footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 18px 40px;
}

.menu-footer a {
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  padding: 11px 15px;
}

@media (max-width: 760px) {
  .featured-panel,
  .menu-grid,
  .price-list {
    grid-template-columns: 1fr;
  }

  .price-list article,
  .price-list article:nth-child(odd) {
    border-right: 0;
  }

  .price-list article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .price-list article:last-child {
    border-bottom: 0;
  }

  .menu-card.compact {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    min-height: 30vh;
  }

  .topbar {
    padding: 14px;
  }

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

  .home-link {
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero-content {
    padding: 28px 16px 38px;
  }

  .category-tabs {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-panel,
  .menu-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .featured-grid article {
    grid-template-columns: 62px 1fr;
    min-height: 82px;
  }

  .featured-grid img {
    height: 62px;
    width: 62px;
  }

  .menu-card {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 84px;
    padding: 9px;
  }

  .menu-card img {
    height: 62px;
    width: 62px;
  }

  .item-head h3 {
    font-size: 15px;
  }

  .item-head strong {
    font-size: 15px;
  }

  .item-body p {
    font-size: 12px;
  }
}
