/* ==================================================
   GLOBAL — BASE (DESKTOP LARGO) - v0.3
================================================== */

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: #000b19;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #ffffff;
}

/* ===== Background provider (PICTURE) ===== */
#site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #000b19;
    overflow: hidden;
    pointer-events: none;
}

.site-bg__picture,
.site-bg__picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: #000b19;
}

/* ===== Layout ===== */
#site-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.container {
    width: 1200px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    font-weight: 700;
}

p {
    line-height: 1.5;
}

/* ===== Links ===== */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 1300px) {
    .container {
        width: 90%;
    }
}
