* { box-sizing: border-box; margin: 0; padding: 0; }
:root { --primary:#0b1f3a; --accent:#c1121f; --muted:#64748b; --bg:#f8fafc; }
body { font-family: "Inter", "Helvetica Neue", Arial, sans-serif; color: var(--primary); background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.topbar { background: #0b1f3a; color: #fff; font-size: 12px; }
.topbar-content { display: flex; justify-content: space-between; padding: 8px 0; gap: 12px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; background: #fff; border-bottom: 1px solid #e2e8f0; z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
.logo { font-weight: 700; font-size: 20px; }
nav a { margin: 0 10px; color: var(--muted); text-decoration: none; font-size: 14px; letter-spacing: 0.2px; }
nav a:hover { color: var(--primary); }

.cta { background: var(--accent); color: #fff; border: none; padding: 10px 18px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.ghost { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 10px 18px; border-radius: 8px; cursor: pointer; }

.hero { padding: 80px 0; background: linear-gradient(120deg, #ffffff 0%, #e8eef7 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.hero h1 { font-size: 46px; line-height: 1.1; margin-bottom: 16px; }
.hero p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.hero-stats { display: flex; gap: 24px; color: #334155; }
.hero-stats strong { font-size: 20px; display: block; }
.hero-stats span { font-size: 12px; color: #64748b; }

.hero-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,42,0.08); }
.hero-card .tag { display: inline-block; padding: 4px 8px; font-size: 12px; color: #0f172a; background: #e2e8f0; border-radius: 999px; margin-bottom: 10px; }
.hero-card ul { margin-top: 12px; padding-left: 18px; color: #475569; }

.section { padding: 50px 0; }
.section h2 { font-size: 30px; margin-bottom: 14px; }
.section p { color: #475569; margin-bottom: 12px; }
.section.alt { background: #fff; }

.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
.product-thumb { width: 100%; height: 320px; object-fit: contain; border-radius: 10px; border: 1px solid #e2e8f0; background: #fff; margin-bottom: 12px; }
.img-placeholder { height: 320px; background: #e2e8f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #64748b; margin-bottom: 12px; }

.footer { background: #0f172a; color: #e2e8f0; padding: 24px 0; margin-top: 20px; }
.footer span { font-size: 14px; }

.menu-grid { column-count: 2; column-gap: 20px; }
.menu-section { display: inline-block; width: 100%; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; margin: 0 0 20px; break-inside: avoid; }
.menu-section h3 { margin-bottom: 12px; font-size: 18px; }
.menu-items { display: grid; gap: 8px; }
.menu-item { display: flex; gap: 12px; align-items: center; border-bottom: 1px dashed #e2e8f0; padding: 8px 0; font-size: 14px; }
.menu-thumb { width: 144px; height: 144px; object-fit: cover; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff; }
.menu-text { display: flex; justify-content: space-between; width: 100%; }
.item-name { color: #0f172a; }
.item-price { color: #64748b; }
.img-placeholder.small { height: 144px; min-width: 144px; }

@media (max-width: 900px) {
  .hero-grid, .three-col, .two-col, .product-grid { grid-template-columns: 1fr; }
  .menu-grid { column-count: 1; }
  nav { display: none; }
}
