/* A brief first-visit introduction; the page remains usable underneath. */
.site-opening[hidden] { display:none; }
.site-opening { position:fixed; inset:0; z-index:2000; display:grid; place-items:center; padding:28px; background:#f7f7f7; pointer-events:none; animation:opening-away 1.8s ease both; }
.site-opening__inner { text-align:center; max-width:640px; animation:opening-in .55s cubic-bezier(.22,.7,.2,1) both; }
.site-opening img { width:150px; height:auto; margin:0 auto 36px; }
.site-opening__message { color:#181818; font-size:clamp(24px,4vw,42px); font-weight:800; line-height:1.6; letter-spacing:-.035em; margin:0 0 20px; }
.site-opening__services { color:#012677; font-size:13px; line-height:2; margin:0; }
.site-opening__services span { display:inline-block; }
@keyframes opening-in { from { opacity:0; transform:translateY(9px); } to { opacity:1; transform:translateY(0); } }
@keyframes opening-away { 0%,65% { opacity:1; } 100% { opacity:0; visibility:hidden; } }
@media(max-width:480px) { .site-opening { padding:20px; } .site-opening img { width:125px; margin-bottom:28px; } .site-opening__services { font-size:12px; } }
@media(prefers-reduced-motion:reduce) { .site-opening { display:none!important; animation:none; } }
