/* EPICI minisite — hostable */
:root{
  --muted:#4b5563;
  --accent:#16a34a;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#0b1220;background:#fff}
img{max-width:100%;height:auto;display:block;border-radius:14px}
a{color:inherit;text-decoration:none}
.container{max-width:1040px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.lead{font-size:1.05rem;line-height:1.55}

.topbar{position:sticky;top:0;z-index:20;background:rgba(255,255,255,.9);backdrop-filter: blur(8px);border-bottom:1px solid #eef2f7}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 18px}
.brand{display:flex;align-items:center;gap:10px}
.brand__mark{width:38px;height:38px;border-radius:12px;background:linear-gradient(135deg,var(--accent),#22c55e);color:#fff;display:grid;place-items:center;font-weight:800}
.brand__name{font-weight:900;letter-spacing:.5px}
.brand__tag{font-size:.85rem;color:var(--muted)}

.btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid #d1d5db;border-radius:12px;padding:10px 14px;font-weight:650;cursor:pointer;background:#fff}
.btn--primary{background:var(--accent);border-color:var(--accent);color:#fff}
.btn--ghost{background:#fff}
.btn--small{padding:8px 10px;border-radius:10px;font-size:.9rem}

.hero{padding:28px 0 18px;background:linear-gradient(180deg,#f8fafc, #fff)}
.hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:18px;align-items:center}
.hero__content h1{margin:0 0 10px;font-size:2.2rem}
.hero__figure{margin:0}
.hero__figure figcaption{margin-top:8px;color:var(--muted);font-size:.9rem}

.pill-row{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0 14px}
.pill{background:#f1f5f9;border:1px solid #e2e8f0;padding:8px 10px;border-radius:999px;font-weight:650;font-size:.92rem}

.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

.section{padding:26px 0}
.section--alt{background:#f8fafc;border-top:1px solid #eef2f7;border-bottom:1px solid #eef2f7}
.section h2{margin:0 0 10px;font-size:1.6rem}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:14px}
.card h3{margin:0 0 8px}
.card ul{margin:0;padding-left:18px}
.card li{margin:6px 0}

.gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:14px}
.shot{margin:0;cursor:pointer}
.shot figcaption{margin-top:8px;color:var(--muted);font-size:.9rem}

.two-cols{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:12px}
.box{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:14px}
.box h3{margin:0 0 8px}

.checklist{display:grid;gap:10px;margin:12px 0 14px}
.checklist label{display:flex;gap:10px;align-items:center;background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:12px}
.checklist input{width:18px;height:18px}

.timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.step{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:12px}
.step__k{font-weight:900;color:var(--accent)}
.step__t{color:var(--muted);margin-top:6px}

.contact-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:14px;display:grid;gap:8px}

.footer{padding:16px 0;background:#fff;border-top:1px solid #eef2f7}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:10px;color:var(--muted)}

/* Lightbox */
.lightbox{border:none;border-radius:18px;padding:0;width:min(980px,95vw)}
.lightbox::backdrop{background:rgba(0,0,0,.6)}
.lightbox img{border-radius:0}
.lightbox__cap{padding:10px 12px;color:#fff;background:#0b1220}
.lightbox__close{position:absolute;top:8px;right:10px;background:rgba(255,255,255,.85);border:1px solid #e5e7eb;border-radius:999px;width:36px;height:36px;font-size:22px;cursor:pointer}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .two-cols{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr 1fr}
}
