/*
 * Page Transitions
 * Target html (non body) per coprire anche il background durante il loading inter-pagina.
 * Il colore di background matcha bg-body-tertiary (#cbd0dd) per evitare flash di colore diverso.
 * L'inline <style> in <head> garantisce che opacity:0 sia applicata prima del primo paint.
 */

html {
    transition: opacity 0.18s ease;
}

html.page-ready {
    opacity: 1;
}
