.font-anton   { font-family: "Anton", sans-serif; font-weight: 400; }
.font-bebas   { font-family: "Bebas Neue", sans-serif; font-weight: 400; }
.font-oswald  { font-family: "Oswald", sans-serif; }

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;          /* fallback for non-Lenis browsers */
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: "Owsald", sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

:root {
    --gold:        #8A6A2F;
    --yellow:      #F1E924;
    --black:       #1C1C1C;
    --white:       #ffffff;
    --warm_white:  #FAFAF8;
    --max-width:   1200px;
    --side-pad:    clamp(24px, 5vw, 80px);
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }