
:root {
  --bg:#f6f1ea;
  --panel:#ffffff;
  --text:#222;
  --muted:#666;
  --green:#1f5c3f;
  --green-dark:#143d2b;
  --accent:#c85a2d;
  --line:#e7dfd4;
  --shadow:0 8px 24px rgba(0,0,0,.08);
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31,92,63,.06), transparent 28%),
    radial-gradient(circle at right top, rgba(200,90,45,.08), transparent 24%),
    var(--bg);
  color:var(--text);
}
.hidden { display:none !important; }

.topbar {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(20,61,43,.92);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  max-width:1250px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#fff;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark {
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg, #d8b06b, #f4dfb4);
  color:#132b1f;
  font-weight:900;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.brand-text strong {
  display:block;
  font-size:16px;
  line-height:1.1;
}
.brand-text span {
  display:block;
  font-size:12px;
  opacity:.85;
}
.lang {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.lang button {
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:9px 13px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
}
.lang button.active {
  background:#fff;
  color:var(--green-dark);
}

.hero {
  min-height:78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:70px 20px 50px;
  background:
    linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.58)),
    radial-gradient(circle at top, rgba(31,92,63,.25), transparent 48%),
    linear-gradient(135deg, #203a2d, #0f261a);
}
.hero-inner {
  max-width:980px;
}
.hero-kicker {
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:13px;
}
.hero h1 {
  margin:18px 0 12px;
  font-size:clamp(50px, 8vw, 88px);
  line-height:.95;
}
.hero p {
  margin:0 auto;
  max-width:46ch;
  font-size:clamp(16px, 2.1vw, 22px);
  color:rgba(255,255,255,.92);
}
.hero-actions {
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
  padding:13px 18px;
  border-radius:14px;
  transition:.2s ease;
}
.button:hover { transform:translateY(-2px); }
.button.primary {
  background:linear-gradient(135deg, #d6af6e, #efdebf);
  color:#27170a;
}
.button.secondary {
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
}

section {
  max-width:1250px;
  margin:0 auto;
  padding:72px 20px;
}
.section-title {
  text-align:center;
  margin-bottom:22px;
}
.section-title h2 {
  margin:0;
  color:var(--green-dark);
  font-size:clamp(32px, 4vw, 48px);
}
.section-title p {
  margin:10px auto 0;
  color:var(--muted);
  max-width:60ch;
}

.grid.three {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.card img {
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}
.content {
  padding:18px;
}
.dish-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:18px;
}
.menu-section {
  margin-top:0;
}
.menu-head {
  margin:0 0 16px;
  padding-left:6px;
}
.menu-head h3 {
  margin:0;
  font-size:26px;
  color:var(--green-dark);
}
.dish-card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.22s ease;
}
.dish-card:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(0,0,0,.12);
}
.image-slot {
  height:210px;
  background:
    linear-gradient(135deg, rgba(31,92,63,.12), rgba(200,90,45,.10)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.35) 0,
      rgba(255,255,255,.35) 12px,
      rgba(255,255,255,.18) 12px,
      rgba(255,255,255,.18) 24px
    );
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  border-bottom:1px dashed rgba(0,0,0,.08);
  color:var(--green-dark);
  font-weight:900;
  letter-spacing:.12em;
  font-size:13px;
}
.image-slot::before {
  content:"";
  position:absolute;
  inset:18px;
  border:2px dashed rgba(31,92,63,.25);
  border-radius:14px;
}
.dish-body {
  padding:18px 18px 16px;
}
.dish-name, .content h3, .content h4 {
  margin:0;
  line-height:1.28;
  font-weight:800;
  color:var(--green-dark);
}
.content p {
  margin:8px 0 0;
  color:var(--muted);
}
.tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.tag {
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:800;
  background:rgba(31,92,63,.08);
  color:var(--green);
}
.price {
  color:var(--accent);
  font-weight:900;
  font-size:20px;
  margin-top:12px;
}

.contact {
  background:linear-gradient(135deg, var(--green-dark), var(--green));
  color:#fff;
  border-radius:24px;
  padding:36px 22px;
  box-shadow:0 16px 40px rgba(0,0,0,.14);
  text-align:center;
}
.contact .buttons {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:28px 16px;
  margin-top:40px;
}

@media (max-width: 760px) {
  .topbar-inner { flex-direction:column; align-items:flex-start; }
  .hero { min-height:72vh; }
  .hero h1 { font-size:52px; }
  .grid.three { grid-template-columns:1fr; }
  .dish-grid { grid-template-columns:1fr; }
  .image-slot { height:190px; }
}
