:root {
  color-scheme: light;
  --bg: #fff8ef;
  --ink: #231f20;
  --muted: #756b61;
  --card: #ffffff;
  --accent: #ef7d39;
  --accent-dark: #c85c1d;
  --line: #ecd8c4;
  --shadow: 0 20px 60px rgba(77, 45, 16, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a { color: inherit; }

.hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 229, 166, 0.95), transparent 28%),
    linear-gradient(135deg, #2c1810 0%, #67351e 55%, #ef7d39 100%);
  color: #fff;
  padding: 24px clamp(20px, 4vw, 56px) 72px;
}

.menu-hero { padding-bottom: 48px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav div { display: flex; gap: 16px; }
.nav a { text-decoration: none; opacity: 0.9; }
.brand { font-weight: 800; letter-spacing: -0.03em; }

.hero-copy {
  max-width: 900px;
  margin: 76px auto 0;
  text-align: center;
}

.hero-copy.narrow { max-width: 760px; }
.hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.hero p { color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; }

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  gap: 24px;
  max-width: 1180px;
  margin: -42px auto 72px;
  padding: 0 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
}

.sticky { position: sticky; top: 24px; align-self: start; }
.section-heading h2 { margin: 0 0 22px; font-size: 1.7rem; }

.menu-form, .items { display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  background: #fffdf9;
}
textarea { resize: vertical; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.item-row {
  border: 1px dashed #e7c4a4;
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 14px;
}
legend { color: var(--ink); font-weight: 900; padding: 0 8px; }

button, .button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font: inherit;
  font-weight: 900;
  padding: 14px 20px;
  text-decoration: none;
}
button:hover, .button:hover { background: var(--accent-dark); }
.secondary { background: #2c1810; }
.link-button { background: transparent; color: var(--accent-dark); justify-content: flex-start; padding: 0; }
.link-button:hover { background: transparent; text-decoration: underline; }

.status {
  border-radius: 18px;
  background: #fff3e5;
  color: #7a421f;
  line-height: 1.45;
  margin-bottom: 22px;
  padding: 14px;
}
.actions { display: grid; gap: 12px; margin-top: 18px; }

.public-menu {
  max-width: 940px;
  margin: -30px auto 70px;
  padding: 0 20px;
  display: grid;
  gap: 20px;
}
.menu-list { display: grid; gap: 16px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.menu-item h2 { margin: 0 0 8px; }
.menu-item p:not(.eyebrow) { color: var(--muted); margin: 0; }
.menu-item strong { font-size: 1.35rem; white-space: nowrap; }
.cta-card { text-align: center; }
.caption-preview { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

@media (max-width: 820px) {
  .layout, .grid-2 { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .nav { align-items: flex-start; flex-direction: column; }
  .menu-item { align-items: flex-start; flex-direction: column; }
}
