/* Minimal, clean styling */ 
:root { --accent:#0ea5e9; --dark:#0f172a; --muted:#475569; --bg:#f8fafc; --card:#ffffff; --line:#e5e7eb; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--dark); background: #fff; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.topbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top:0; z-index: 50; }
.topbar .wrap { height: 44px; display:flex; align-items:center; justify-content:space-between; font-size: 14px; }
.topbar a { color: var(--dark); text-decoration:none; }
.lang-btn { border:none; background:transparent; cursor:pointer; font-weight:700; color: var(--muted); }
.lang-btn.active { color: var(--dark); }
.dot, .slash { color: var(--line); margin: 0 8px; }

.navbar { background: rgba(255,255,255,0.8); backdrop-filter: saturate(120%) blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 44px; z-index: 40; }
.navbar .wrap { height: 64px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; align-items:center; gap:8px; font-weight:800; }
.nav a { text-decoration:none; color: var(--dark); margin: 0 10px; font-weight:600; }
.btn { display:inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 800; text-decoration:none; }
.btn-primary { background: var(--accent); color:#fff; }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }

.hero { background: linear-gradient(180deg, #e0f2fe 0%, #ffffff 60%); }
.hero-grid { display:grid; grid-template-columns: 1fr; gap: 24px; padding: 60px 0; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items:center; } }
.lead { font-size: 18px; color: var(--muted); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top: 16px; }
.rating { margin-top: 12px; color: var(--muted); }
.hero-card { display:flex; justify-content:center; }
.glass { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 16px; padding: 16px; width: 320px; }

.section { padding: 64px 0; }
.alt { background: #fff; }
.cards { display:grid; grid-template-columns: 1fr; gap:16px; margin-top: 24px; }
.cards.three { grid-template-columns: 1fr; }
@media (min-width: 900px){ .cards { grid-template-columns: repeat(3, 1fr);} .cards.three { grid-template-columns: repeat(3, 1fr);} }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.card.soft { padding: 20px; }
.center { text-align:center; }
.mt-24 { margin-top: 24px; }

.grid-2 { display:grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px){ .grid-2 { grid-template-columns: 1fr 1fr; } }
.box { min-height: 220px; border-radius: 16px; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); border: 1px dashed var(--line); }

.checks { list-style: none; padding-left: 0; }
.checks li::before { content: '✔'; color: var(--accent); margin-right: 8px; }

.form { display:grid; gap: 10px; }
.form input, .form textarea { width:100%; padding:12px 14px; border-radius:12px; border:1px solid var(--line); font-size: 15px; }
.row { display:flex; gap: 12px; flex-wrap: wrap; }

.map { height: 180px; width: 100%; background: linear-gradient(135deg, #e2e8f0, #cbd5e1); border-radius: 12px; border: 1px solid var(--line); margin: 8px 0 12px; }
.hours { list-style:none; padding-left:0; }
.hours li { display:flex; justify-content:space-between; padding: 2px 0; }

.footer { border-top: 1px solid var(--line); margin-top: 24px; }
.footer .wrap { padding: 24px 0; }
.grid-3 { display:grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px){ .grid-3 { grid-template-columns: 1.2fr 0.8fr 0.8fr; } }
.footer-title { font-weight: 700; }
.list { list-style:none; padding-left:0; }
.copy { text-align:center; font-size: 12px; color: var(--muted); padding: 8px 0 24px; }
.muted { color: var(--muted); }
.brand.small { font-weight:800; } 
