:root {
    --color-primary: #252429;
    --color-muted: #777A80;
    --color-border: #D2D5D9;
    --color-bg-light: #F7F8FA;
    --color-blue: #042f65;
    --color-orange: #e97238;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'Metropolis', sans-serif;
    color: var(--color-primary);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================
   TYPOGRAPHY
========================== */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 1.25rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }

p {
    font-size: 1rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* ==========================
   PROFESSIONAL PRELOADER
========================== */

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner img {
    width: 240px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeLogo 0.8s ease forwards;
}

.accent-line {
    width: 0;
    height: 2px;
    background: var(--color-orange);
    margin: 20px auto 0;
    animation: lineGrow 1.2s ease forwards;
}

@keyframes fadeLogo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    0% { width: 0; }
    100% { width: 240px; }
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}