:root {
  --bg: #f6f2ea;
  --ink: #1d1a16;
  --muted: #6e665c;
  --line: #dfd4c4;
  --gold: #9a7a45;
  --card: #fffdf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  background:
    radial-gradient(900px 500px at 85% -10%, #efe6d9 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 110%, #ece2d3 0%, transparent 60%),
    var(--bg);
}

/* ── Header ──────────────────────────────────────── */

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 22px 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.logo-mark {
  color: var(--gold);
  margin-bottom: 18px;
}

.logo-name {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 10px;
}

.logo-tagline {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Meal header ─────────────────────────────────── */

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 22px 56px;
}

.meal-heading {
  margin-bottom: 28px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 6px;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

.sub {
  color: var(--muted);
  font-size: 17px;
  font-style: italic;
  margin: 0;
}

/* ── Divider ─────────────────────────────────────── */

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--line);
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Menu card ───────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 8px 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #eee3d4;
}

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

.name {
  font-size: 24px;
  margin-bottom: 3px;
}

.desc {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

.price {
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────── */

.site-foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: .03em;
}

.site-foot a {
  color: var(--muted);
  text-decoration: none;
}

.site-foot a:hover {
  color: var(--gold);
}