:root{
  --accent:#06b6d4; --muted:#6b7280; --text:#0b1220;
  --card:rgba(255,255,255,0.92); --overlay:rgba(255,255,255,0.78);
  --radius:12px; --max-width:1100px;
}
*{box-sizing:border-box} html,body{height:100%}
body{
  margin:0;min-height:100vh;
  background:#eef2f7 url('/assets/images/finish_line.png') center/cover fixed no-repeat;
  color:var(--text);font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial;line-height:1.5
}
.overlay-site{background:var(--overlay);min-height:100vh}
.container{max-width:var(--max-width);margin:0 auto;padding:24px}
.navbar{display:flex;align-items:center;justify-content:space-between;padding:12px 24px;background:rgba(255,255,255,0.6)}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:48px;height:48px;border-radius:10px;background:linear-gradient(135deg,var(--accent),#7c3aed);display:grid;place-items:center;font-weight:700;color:#022}
.menu{list-style:none;display:flex;gap:16px;margin:0;padding:0}
.menu a{text-decoration:none;color:var(--text);font-weight:600}
.menu a[aria-current="page"]{text-decoration:underline}
.hero{height:56vh;display:flex;align-items:center;justify-content:center;text-align:center}
.hero .hero-box{background:var(--card);padding:28px;border-radius:12px;max-width:900px}
.cta{display:inline-block;margin-top:12px;padding:10px 16px;border-radius:8px;background:var(--accent);color:#022;text-decoration:none;font-weight:700}
main{padding:28px}
.card{background:var(--card);padding:18px;border-radius:10px;margin-bottom:16px}
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:900px){.features{grid-template-columns:1fr}.menu{flex-wrap:wrap}.hero{height:38vh}}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:10px;margin-top:12px}
.gallery-grid img{width:100%;height:160px;object-fit:cover;border-radius:8px;display:block}
.load-more{display:none;margin-top:12px;padding:8px 12px;border-radius:8px;border:none;background:var(--accent);color:#022;cursor:pointer;font-weight:700}
footer.site-footer{padding:16px;text-align:center;background:rgba(255,255,255,0.6);margin-top:20px}
.small{font-size:14px;color:var(--muted)}
.muted{color:var(--muted)}
/* ♿ */
.accessibility-btn{position:fixed;bottom:14px;right:14px;background:var(--accent);border:none;border-radius:50%;width:48px;height:48px;display:grid;place-items:center;cursor:pointer;z-index:1001;color:#022;font-weight:700;box-shadow:0 8px 24px rgba(2,6,23,0.15)}
.accessibility-panel{position:fixed;bottom:72px;right:14px;background:rgba(255,255,255,0.98);border-radius:10px;padding:10px;display:none;flex-direction:column;gap:8px;z-index:1002;box-shadow:0 8px 30px rgba(2,6,23,0.12)}
.accessibility-panel button{padding:8px 10px;border-radius:8px;border:1px solid rgba(11,18,32,0.06);background:transparent;cursor:pointer}
input,textarea{width:100%;max-width:680px;padding:10px;border-radius:8px;border:1px solid rgba(11,18,32,0.1);font:inherit}
textarea{min-height:140px}
