/* ── VARIABLES ── */
:root {
    --accent: #e8d5a3;
    --accent-dark: #c4a96a;
    --surface: #1e1e1e;
    --border: #2a2a2a;
    --text: #f0f0f0;
    --muted: #888;
    --radius: 10px;
}

/* ── BODY / LAYOUT ── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #141414;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem 5rem;
    font-family: 'DM Sans', Arial, sans-serif;
}

/* ── HERO ── */
.hero {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    font-family: 'DM Sans', Arial, sans-serif;
}

.hero .label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    letter-spacing: 0.05em;
    line-height: 1;
    color: #f0f0f0;
    margin: 0;
}

.hero .sub {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 360px;
    margin-inline: auto;
    line-height: 1.6;
}

/* ── FORMULAIRE ── */
form.message {
    width: 100%;
    max-width: 580px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.field input,
.field textarea {
    background: #0e0e0e;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: none;
    width: 100%;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 213, 163, 0.08);
}

.field textarea {
    height: 140px;
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: var(--border);
}

/* ── SUBMIT ── */
.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.submit-row .hint {
    font-size: 0.75rem;
    color: var(--muted);
}

.btn-submit {
    background: var(--accent);
    color: #0e0e0e;
    border: none;
    border-radius: var(--radius);
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 393px) {
    .hero {
        padding: 2.5rem 1rem 1rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    form.message {
        padding: 1.6rem 1.2rem;
    }
    .row-2 {
        grid-template-columns: 1fr;
    }
    .submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-submit {
        text-align: center;
    }
}