:root {
    /* Colors */
    --vermilion-muted: #e65a19;
    --vermilion-hover: #f26b2a;
    --marshland-black: #181a18;
    --marshland-gray: #515452;
    --off-white: #f4f5f5;
    --pure-white: #ffffff;

    /* Typography */
    --font-main: 'Host Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--marshland-black);
    color: var(--pure-white);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px; /* Swiss padding */
}

.container {
    max-width: 800px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px; /* Ruime witruimte tussen logo en tekst */
}

.brandmark img {
    width: 80px; /* Compacte maar krachtige aanwezigheid */
    height: auto;
}

.display {
    font-size: clamp(48px, 8vw, 80px); /* Responsive Swiss type */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.body-lg {
    font-size: 20px;
    line-height: 1.6;
    color: var(--off-white);
    max-width: 540px;
    margin-bottom: 48px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--off-white); /* Secundaire informatie in grijs */
}

.email-link {
    font-size: 24px;
    color: var(--vermilion-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.email-link:hover {
    color: var(--vermilion-hover); /* Interactieve state */
}

.footer-note {
    margin-top: 120px;
    font-size: 14px;
    color: var(--off-white);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    body { padding: 24px; }
    .container { gap: 48px; }
    .email-link { font-size: 18px; }
}