/* Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: #1c1917;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

/* Header */
.site-header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.site-logo {
    height: auto;
    width: auto;
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .site-logo {
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .site-logo {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .site-logo {
        max-height: 90px;
    }
}
