* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg-light);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

[data-component="header"] {
    position: sticky;
    top: 0;
    z-index: 1000;
}

[data-component="header"] .brand-nav {
    position: relative;
}

.component-error {
    padding: 1rem clamp(1.25rem, 4vw, 3rem);
    color: var(--color-white);
    background: var(--color-error);
    font-weight: 700;
}