:root {
    --background: #f7f7f5;
    --text: #181817;
    --muted: #6d6d68;
    --line: #deded9;
    --accent: #1f342d;
    --accent-hover: #31483f;
}

* { box-sizing: border-box; }
html { background: var(--background); }
body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: var(--background);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
.page { width: min(100%, 560px); min-height: 100vh; margin: 0 auto; padding: 32px 24px; display: flex; flex-direction: column; }
.brand { margin: 0 0 auto; color: var(--muted); font-size: 0.8rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
.content { padding: 72px 0; }
.eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 0.8rem; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
h1 { max-width: 18ch; margin: 0; font-size: clamp(2rem, 8vw, 3.25rem); font-weight: 650; letter-spacing: -0.05em; line-height: 1.02; }
.lead { max-width: 32rem; margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.contact-list { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-action { width: 100%; min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; color: var(--text); border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-action:hover { color: var(--accent); }
.contact-name { font-size: 1.05rem; font-weight: 600; }
.contact-action::after { content: "Appeler"; color: var(--muted); font-size: 0.9rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; margin-top: 32px; padding: 0 20px; color: #fff; background: var(--accent); border: 1px solid var(--accent); border-radius: 4px; font: inherit; font-weight: 650; text-decoration: none; }
.button:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.code { margin: 28px 0 0; padding: 12px 0; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; overflow-wrap: anywhere; }
.footer { margin-top: auto; color: var(--muted); font-size: 0.78rem; }
@media (max-width: 480px) { .page { padding: 24px 20px; } .content { padding: 56px 0; } }
