@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Poppins:wght@400;500;600&display=swap');

:root {
  --bg: #16110d;
  --cream: #f3ead9;
  --muted: rgba(243, 234, 217, 0.62);
  --gold: #cda45e;
  --gold-soft: rgba(205, 164, 94, 0.6);
  --rule: rgba(205, 164, 94, 0.28);
  --rule-soft: rgba(205, 164, 94, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  font-family: 'Poppins', sans-serif;
  color: var(--cream);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(205, 164, 94, 0.07), transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(205, 164, 94, 0.05), transparent 45%);
  min-height: 100vh;
  line-height: 1.4;
}

.hero {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1rem;
}

.gate-icon {
  width: 60px;
  height: 60px;
  color: var(--gold);
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: clamp(2.2rem, 7vw, 3rem);
  color: var(--gold);
  margin: 0.8rem 0 0;
}

.subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.lede {
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin: 1.4rem auto 0;
}

.menu-nav {
  display: flex;
  justify-content: safe center;
  gap: 1.4rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-soft);
}

.menu-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

main {
  max-width: 720px;
  margin: 3rem auto 0;
  scroll-margin-top: 1rem;
}

.price-section {
  scroll-margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.price-section h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3.2vw, 1.35rem);
  margin: 0 0 1.2rem;
  color: var(--gold);
}

.price-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.price-section h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-soft);
  margin: 1.8rem 0 0.4rem;
}

.price-section h3 .unit {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.note {
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dish {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule-soft);
}

.dish:last-child { border-bottom: none; }

.dish-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0;
}

.dish-name {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--cream);
}

.tags {
  font-size: 0.66rem;
  color: var(--gold-soft);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-left: 0.4rem;
}

.dish-price {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

.dish-desc {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.variants {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.allergen-grid .code {
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.4rem;
}

footer {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.85rem;
  color: var(--muted);
}

footer .tagline {
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
}

footer p { margin: 0.3rem 0; }

@media (max-width: 480px) {
  body { padding: 2rem 1rem 3rem; }
  .gate-icon { width: 48px; height: 48px; }
  .dish-name { font-size: 0.88rem; }
  .dish-price { font-size: 0.85rem; }
}
