/* ── INSTANT BLACK COVER ─────────────────────────────────────────────────── */

html {
    background: #0a0a0a;
}

html.is-transitioning::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 99998;
    pointer-events: none;
}

/* ── GSAP OVERLAY ────────────────────────────────────────────────────────── */

.transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
}

.transition-row {
    flex: 1;
    display: flex;
}

.transition-row.row-1 .block {
    transform-origin: top;
}

.transition-row.row-2 .block {
    transform-origin: bottom;
}

.block {
    flex: 1;
    background: #0a0a0a;
    transform: scaleY(0);
    will-change: transform;
}

.menu_row_pages > h2 > a {
    color: inherit;
    text-decoration: none;
}
