:root {
    /* Kleuren */
    --color-blue: #163f73;
    --color-blue-dark: #0a1f3a;
    --color-blue-deep: #061426;

    --color-red-orange: #c84f32;

    --color-gold: #d5aa45;
    --color-gold-light: #f1d27a;

    --color-white: #ffffff;
    --color-light: #f5f7fa;
    --color-muted: #aeb9c8;
    --color-dark: #111827;

    /* Lettertype */
    --font-main: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Afmetingen */
    --max-width: 1200px;

    /* Afrondingen */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    /* Afstanden */
    --space-xs: .5rem;
    --space-sm: .75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Schaduwen */
    --shadow-card: 0 18px 45px rgba(0, 0, 0, .14);
}

/* =========================================================
   RESET / ALGEMENE BASIS
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: var(--font-main);
    line-height: 1.6;

    color: var(--color-dark);
    background: var(--color-light);
}

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

a {
    color: inherit;
}

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

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
}

.section {
    padding: var(--space-xl) 0;
}

/* =========================================================
   TYPOGRAFIE
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-top: 0;
}

.eyebrow {
    margin-bottom: .5rem;

    color: var(--color-red-orange);

    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* =========================================================
   KAARTEN
   ========================================================= */

.card {
    padding: 1.5rem;

    background: var(--color-white);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-card);
}

/* =========================================================
   KNOPPEN
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: .8rem 1.25rem;

    border-radius: var(--radius-sm);

    text-decoration: none;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--color-blue-deep);

    background:
        linear-gradient(
            135deg,
            var(--color-gold-light),
            var(--color-gold)
        );
}

.button--secondary {
    color: var(--color-white);

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.08);
}

.text-link {
    color: var(--color-blue);

    font-weight: 800;
    text-decoration: none;
}

/* =========================================================
   TOEGANKELIJKHEID
   ========================================================= */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

/* =========================================================
   RESPONSIVE BASIS
   ========================================================= */

@media (max-width: 640px) {

    .container {
        width: min(
            calc(100% - 1.25rem),
            var(--max-width)
        );
    }

    .section {
        padding: 3rem 0;
    }
}