
:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#38bdf8;
  --chip:#f1f5f9;
  --rule:#e5e7eb;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);}
.container{max-width:980px;margin:0 auto;padding:28px}
.header{border-bottom:1px solid var(--rule);background:var(--panel)}
.header .inner{display:flex;gap:16px;align-items:center}
.header img{height:88px;width:auto}
.title{font-weight:800;font-size:18px;letter-spacing:.3px;color:#0b1220}
.hero{padding:28px 0 8px}
.hero h1{font-size:40px;line-height:1.1;margin:10px 0 8px;color:#0b1220}
.hero p{color:var(--muted);font-size:18px;margin:6px 0}
.section{padding:14px 0 6px;margin-top:10px}
.section h2{font-size:24px;margin:0 0 8px;color:#0b1220}
.lead{color:var(--muted);line-height:1.6}
ul{margin:8px 0 12px 20px;line-height:1.7;color:var(--muted)}
.grid-chips{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 10px}
.chip{background:var(--chip);border:1px solid var(--rule);border-radius:999px;padding:6px 10px;color:#0b1220;font-size:12px}
.rule{height:1px;background:var(--rule);margin:16px 0}
.footer{color:var(--muted);border-top:1px solid var(--rule);margin-top:20px;padding:18px 0}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gallery figure{margin:0;background:#fff;border:1px solid var(--rule);border-radius:12px;overflow:hidden}
.gallery img{width:100%;height:200px;object-fit:cover;display:block}
.gallery figcaption{padding:8px 10px;font-size:12px;color:#334155}
@media (max-width:900px){.gallery{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.gallery{grid-template-columns:1fr}.header img{height:72px}}
