/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Inter font guarantee — prevents Bootstrap reboot overriding */
body, input, button, select, textarea {
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* Image fit helpers */
img { max-width: 100%; height: auto; }

/* Prevent layout shift from fixed header on anchor jumps */
:target { scroll-margin-top: 80px; }

/* Remove default input autofill blue tint */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #09090b inset;
    -webkit-text-fill-color: #fafafa;
}

.cv-auto {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay { background: linear-gradient(to bottom, rgba(9,9,11,0.45) 0%, rgba(9,9,11,0.92) 100%); }
.section-divider { border-color: #27272a; }
.site-footer { background-color: #000000; }

.lite-embed-button {
    cursor: pointer;
}

iframe[loading="lazy"] {
    content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}