:root{
  --bg:#f7f7f6;
  --card:#ffffff;
  --accent:#0b6b44;
  --muted:#6b6b6b;
  --max-width:1100px;
  --gap:14px;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;color:#111;background:var(--bg)}
.container{max-width:var(--max-width);margin:18px auto;padding:16px}
.site-header{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:var(--card);box-shadow:0 1px 3px rgba(0,0,0,.06)}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:84px;height:84px;object-fit:contain;border-radius:10px;box-shadow:0 2px 6px rgba(11,107,68,0.12)}
.brand-text h1{font-size:18px;margin:0}
.slogan{margin:0;color:var(--muted);font-size:13px}
.top-contacts{display:flex;gap:8px;align-items:center}
.contact-btn{background:var(--accent);color:#fff;padding:8px 12px;border-radius:8px;text-decoration:none;font-size:14px}
.topbar{background:transparent;padding:8px 16px}
.topbar ul{display:flex;gap:12px;list-style:none;padding:0;margin:0}
.topbar a{text-decoration:none;color:var(--muted);font-weight:600}
.hero{background:var(--card);padding:18px;border-radius:10px;box-shadow:0 1px 3px rgba(0,0,0,.04);margin-bottom:12px}
.hero h2{margin:0 0 8px 0}
.cta-row{display:flex;gap:10px;margin-top:12px}
.cta{background:var(--accent);color:#fff;padding:10px 14px;border-radius:8px;text-decoration:none}
.cta.ghost{background:transparent;color:var(--accent);border:1px solid var(--accent)}
.panel{background:var(--card);padding:16px;border-radius:10px;margin-bottom:12px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.card{padding:12px;border-radius:8px;background:linear-gradient(180deg,#fff,#fbfbfb);box-shadow:0 1px 2px rgba(0,0,0,.03)}
.card img{width:100%;height:140px;object-fit:cover;border-radius:6px;margin-bottom:8px}
.company-info{list-style:none;padding:0;margin:10px 0 0 0}
.long-text p{color:var(--muted);line-height:1.45}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:8px}
.gallery img{width:100%;height:80px;object-fit:cover;border-radius:6px}
.map-embed iframe{width:100%;height:220px;border:0;border-radius:8px}
.site-footer{display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;padding:18px;background:#fff;margin-top:12px;border-top:1px solid #eee}
.footer-col{min-width:180px}
.footer-col h4{margin:0 0 8px 0}
.socials a{display:inline-flex;align-items:center;gap:8px;margin-right:8px;text-decoration:none;color:var(--accent);padding:6px 8px;border-radius:8px;border:1px solid transparent}
.social-icon{width:22px;height:22px;object-fit:contain;border-radius:4px}
.small{font-size:12px;color:var(--muted)}
@media (max-width:520px){
  .topbar ul{overflow:auto;padding-bottom:8px}
  .brand-text h1{font-size:16px}
  .cta-row{flex-direction:column}
  .contact-btn{padding:10px}
}