:root {
  --green: #247a3d;
  --green-dark: #16522a;
  --green-soft: #e5f4d8;
  --lime: #c7e86b;
  --ink: #102018;
  --muted: #66756c;
  --line: #dfe8dc;
  --card: #ffffff;
  --bg: #f7fbf4;
  --radius: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); }
a { color: var(--green); }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav { max-width: 1080px; margin: 0 auto; padding: 14px 18px; display: flex; align-items: center; gap: 18px; }
.brand { font-weight: 800; color: var(--green-dark); text-decoration: none; letter-spacing: .01em; }
.nav-links { margin-left: auto; display: flex; gap: 14px; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 24px 18px 56px; }
.hero { position: relative; overflow: hidden; min-height: 360px; display: grid; align-items: end; padding: 64px 0 36px; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 14% 10%, rgba(36,122,61,.24), transparent 28%),
  linear-gradient(135deg, #f7fbf4 0%, #edf8dd 44%, #d4edb8 100%);
  z-index: -2;
}
.hero::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -62px; height: 160px; background: var(--bg); border-radius: 50% 50% 0 0 / 45% 45% 0 0; z-index: -1; }
.hero-inner { max-width: 720px; }
.eyebrow { color: var(--green); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
h1 { margin: 0 0 12px; font-size: clamp(34px, 6vw, 64px); line-height: .98; letter-spacing: 0; }
.lead { font-size: 18px; line-height: 1.65; color: #31443a; max-width: 680px; }
.search-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.search-row a, .button { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border-radius: var(--radius); background: var(--green); color: #fff; text-decoration: none; font-weight: 700; border: 1px solid var(--green); }
.button.secondary { background: #fff; color: var(--green-dark); border-color: var(--line); }
.section { margin-top: 32px; }
.section h2 { font-size: 21px; margin: 0 0 12px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; text-decoration: none; color: inherit; box-shadow: 0 1px 2px rgba(16,32,24,.04); }
.card:hover { border-color: #a9cda9; }
.card-title { font-weight: 800; margin-bottom: 5px; }
.meta { color: var(--muted); font-size: 13px; line-height: 1.5; }
.pill-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 3px 8px; font-size: 12px; font-weight: 700; background: var(--green-soft); color: var(--green-dark); }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); text-decoration: none; }
.page-head { padding: 30px 0 20px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.page-head h1 { font-size: clamp(28px, 4vw, 46px); }
.empty { background: #fff; border: 1px dashed #b7cbb5; border-radius: var(--radius); padding: 22px; color: var(--muted); line-height: 1.6; }
.canteen-body { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; align-items: start; }
.sidebox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.menu-list { margin-top: 22px; }
.menu-list h3 { margin: 22px 0 10px; font-size: 16px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.dish { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; min-height: 116px; }
.dish-title { font-weight: 800; line-height: 1.35; }
.dish-desc { margin-top: 6px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.comments { scroll-margin-top: 82px; }
.notice { background: #eef8e8; border: 1px solid #b8d9ae; color: var(--green-dark); border-radius: var(--radius); padding: 12px 14px; margin: 12px 0; font-size: 14px; line-height: 1.5; }
.notice.error { background: #fff4ef; border-color: #e2b9a7; color: #7a2e14; }
.comment-form { display: grid; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin: 16px 0 18px; }
.comment-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 800; color: var(--ink); }
.label-note { font-weight: 500; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.comment-form input, .comment-form select, .comment-form textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 11px; font: inherit; color: var(--ink); background: #fff; }
.comment-form textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.comment-list { display: grid; gap: 12px; margin-top: 18px; }
.comment { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.comment-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.stars { color: #c58a17; white-space: nowrap; letter-spacing: 0; }
.comment p { margin: 10px 0; line-height: 1.6; }
.editor-reply { margin-top: 14px; padding: 12px 14px; border-left: 3px solid var(--green); background: #f4fbef; border-radius: 0 var(--radius) var(--radius) 0; }
.footer { border-top: 1px solid var(--line); color: var(--muted); padding: 24px 18px 40px; font-size: 13px; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; gap: 14px; flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 8px; }
  .nav-links { margin-left: 0; }
  .hero { min-height: 320px; padding-top: 40px; }
  .canteen-body { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .comment-head { align-items: flex-start; flex-direction: column; gap: 4px; }
}
