/* ── Font ── */
body, h1, h2, h3, h4, h5, h6, p, input, textarea, button {
    font-family: 'Inter', sans-serif !important;
}

/* ── Type scale ── */
h4 {
    font-size: 2.8rem !important;
    line-height: 1.35em !important;
    letter-spacing: -0.02em !important;
    font-weight: 600 !important;
}
h5 {
    font-size: 2.2rem !important;
    line-height: 1.4em !important;
    letter-spacing: -0.01em !important;
    font-weight: 600 !important;
}
h2 {
    font-size: 5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
}
p {
    font-size: 1.9rem !important;
    line-height: 1.75em !important;
    letter-spacing: 0 !important;
}
p.small {
    font-size: 1.9rem !important;
    line-height: 1.6em !important;
}
p.tag {
    font-size: 1.4rem !important;
    letter-spacing: 0.18em !important;
    font-weight: 500 !important;
}

/* ── Picture box ── */
.left-content .inner-content canvas { opacity: 0 !important; }
.left-content .inner-content .picture-box {
    z-index: 3;
    background-size: contain;
}

/* ── Language Switcher ── */
.m-menu-button { top: 7rem !important; }

.lang-switcher {
    position: fixed;
    top: 6rem;
    right: 17rem;
    z-index: 9999;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    transition: opacity 0.3s ease;
}
.lang-btn {
    background: rgba(12,12,12,0.92);
    border: 1px solid #2a2a2a;
    cursor: pointer;
    border-radius: 2px;
    padding: 0;
    width: 34px;
    height: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: 0;
    transition: border-color 0.15s, background 0.15s;
    backdrop-filter: blur(8px);
}
.lang-btn .lf {
    width: 20px;
    height: 13px;
    border-radius: 1px;
    display: block;
    overflow: hidden;
}
.lang-btn:hover { border-color: #444; background: rgba(20,20,20,0.96); }
.lang-btn.lang-active { border-color: #c0392b; background: rgba(192,57,43,0.1); }

@media screen and (max-width: 992px) {
    .lang-switcher { top: 5.5rem; left: 1.5rem; right: auto; }
    .lang-btn { width: 30px; height: 26px; }
    .lang-btn .lf { width: 18px; height: 11px; }
    .left-content .inner-content .picture-box {
        z-index: 3;
        background-size: cover;
        background-position: center;
    }
    .mobile .right-content .inner-content {
        padding-top: 100vh;
        position: relative;
        width: 90%;
        left: 5%;
    }
    .mobile .section-container {
        max-width: 90rem;
        margin: 0 auto;
    }
    h4 { font-size: 2.5rem !important; }
    h5 { font-size: 1.9rem !important; }
    p  { font-size: 1.7rem !important; }
}

/* ── Custom scroll bar — keep in DOM but fully invisible ── */
.scroll-bar,
.scroll-progress { opacity: 0 !important; pointer-events: none !important; }

/* ── Custom cursor ring — removed, use native cursor ── */
.c_cursor_outer,
.c_cursor_inner { display: none !important; }
