:root {
  --green: #0d3b21;
  --green-2: #164a2d;
  --red: #b50d0b;
  --cream: #fbf6ec;
  --paper: #fffdf7;
  --ink: #1f1b16;
  --muted: #766d5f;
  --line: rgba(13, 59, 33, 0.18);
  --gold: #c89c52;
  --shadow: 0 18px 50px rgba(31, 27, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(181, 13, 11, 0.08), transparent 30rem),
    radial-gradient(circle at 85% 18%, rgba(13, 59, 33, 0.1), transparent 32rem),
    linear-gradient(135deg, var(--cream), #fffaf0 45%, #f7efe2);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(13, 59, 33, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 59, 33, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(13, 59, 33, 0.14);
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(18px);
}

.brand-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0 33%, #ffffff 33% 66%, var(--red) 66% 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.brand img {
  display: block;
  width: clamp(150px, 20vw, 230px);
  height: auto;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-nav a {
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
}

.quick-nav a:hover {
  border-color: var(--red);
  color: var(--green);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 28px;
}

.section-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.menu-tools {
  display: block;
  max-width: 640px;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 12px 34px rgba(31, 27, 22, 0.07);
  gap: 18px;
}

.search-wrap {
  display: grid;
  gap: 8px;
}

.search-wrap label {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(13, 59, 33, 0.24);
  border-radius: 6px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

input[type="search"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 59, 33, 0.12);
}

.menu-shell {
  display: grid;
  gap: 26px;
  padding: 12px 0 72px;
}

.menu-section {
  scroll-margin-top: 110px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(13, 59, 33, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 16px 44px rgba(31, 27, 22, 0.07);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.section-head h2 {
  margin: 4px 0 12px;
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.9;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(13, 59, 33, 0.24);
  gap: 14px;
}

.item-text h3 {
  margin: 0;
  color: #201a14;
  font-size: 1.45rem;
  line-height: 1.05;
}

.item-text p {
  max-width: 54ch;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.item-price {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.subgroup {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  margin: 22px 0 0;
  padding: 7px 10px;
  border-left: 4px solid var(--red);
  background: rgba(181, 13, 11, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-state {
  padding: 34px;
  border: 1px dashed rgba(13, 59, 33, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.8);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 20px 48px;
  border-top: 1px solid rgba(13, 59, 33, 0.16);
  background: rgba(255, 253, 247, 0.62);
  text-align: center;
}

.site-footer img {
  width: 170px;
  height: auto;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 840px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
  }

  .quick-nav {
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

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

@media (max-width: 540px) {
  main,
  .header-inner {
    width: min(100% - 22px, 1120px);
  }

  .quick-nav a {
    padding: 8px 7px;
    font-size: 0.7rem;
  }

  .menu-tools,
  .menu-section {
    padding: 14px;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .item-price {
    justify-self: start;
  }
}
