/* ══════════════════════════════════════════════════════════════
   ARRIVO LIFE — style-formulaires.css
   Identité v2 : bleu #1B3A9E · os #F4F2ED · encre #121418 · ambre #E3A244
   Règle : l'ambre ne porte jamais de texte courant.
   Requis par : inscription.html · soiree.html ·
                contact-proprietaire.html · merci.html
   ══════════════════════════════════════════════════════════════ */
:root{
  --bleu:#1B3A9E; --bleu-fonce:#152E7D; --os:#F4F2ED; --blanc:#FBFBF9;
  --encre:#121418; --ambre:#E3A244; --gris:#4C525C; --bord:#DCD8CE; --max:700px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{transition:none!important}}
body{font-family:'Instrument Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
     color:var(--encre);background:var(--os);line-height:1.6;font-size:16px;
     -webkit-font-smoothing:antialiased}
h1,h2,h3,.wordmark{font-family:'Instrument Sans',Arial,sans-serif;letter-spacing:-.02em}
a{color:var(--bleu)}

/* ── bandeau supérieur ── */
.top{background:var(--bleu);padding:15px 0}
.top .inner{max-width:var(--max);margin:0 auto;padding:0 22px;display:flex;
            justify-content:space-between;align-items:center;gap:14px}
.wordmark{font-weight:700;font-size:1.22rem;color:var(--os);text-decoration:none;white-space:nowrap}
.wordmark .life{color:var(--ambre)}
.top a.back{color:rgba(244,242,237,.78);text-decoration:none;font-size:.83rem;white-space:nowrap}
.top a.back:hover{color:var(--ambre)}
.horizon,.rule{height:3px;border:0;background:var(--ambre)}

/* ── page ── */
.wrap{max-width:var(--max);margin:0 auto;padding:48px 22px 84px}
.eyebrow{font-family:'IBM Plex Mono',monospace;font-weight:500;letter-spacing:.12em;
         text-transform:uppercase;font-size:.7rem;color:var(--bleu);display:block;margin-bottom:12px}
h1{font-size:clamp(1.75rem,5.5vw,2.4rem);font-weight:700;line-height:1.12;margin-bottom:12px}
.sub{color:var(--gris);margin-bottom:28px;max-width:60ch}
.sub em{font-style:normal;color:#6A717C}

.promise{background:var(--blanc);border:1px solid var(--bord);border-left:3px solid var(--ambre);
         border-radius:10px;padding:15px 18px;font-size:.9rem;margin-bottom:28px}
.promise span{font-weight:400;color:var(--gris)}

/* ── formulaire ── */
.card{background:var(--blanc);border:1px solid var(--bord);border-radius:16px;padding:32px 26px}
.field{margin-bottom:24px}
label.q{display:block;font-weight:600;font-size:.95rem;margin-bottom:4px}
label.q .en{color:var(--gris);font-weight:400}
.req{color:var(--bleu)}
.hint{color:var(--gris);font-size:.83rem;margin-bottom:9px;line-height:1.45}
input[type=text],input[type=email],input[type=tel],select,textarea{
  width:100%;padding:13px 15px;border:1.5px solid var(--bord);border-radius:10px;background:#fff;
  font:400 .97rem 'Instrument Sans',Arial,sans-serif;color:var(--encre)}
textarea{min-height:112px;resize:vertical}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--bleu);
  box-shadow:0 0 0 3px rgba(27,58,158,.14)}
.opts{display:flex;flex-direction:column;gap:9px;margin-top:5px}
.opt{display:flex;align-items:flex-start;gap:11px;background:#fff;border:1.5px solid var(--bord);
     border-radius:10px;padding:12px 14px;cursor:pointer;font-size:.94rem;transition:border-color .15s ease}
.opt:hover{border-color:var(--bleu)}
.opt:has(input:checked){border-color:var(--bleu);background:rgba(27,58,158,.04)}
.opt input{margin-top:3px;accent-color:var(--bleu);width:18px;height:18px;flex:0 0 auto}
.opt span{color:var(--gris)}

.btn{display:inline-block;width:100%;background:var(--bleu);color:#fff;border:none;cursor:pointer;
     font:600 1rem 'Instrument Sans',Arial,sans-serif;padding:16px 28px;border-radius:999px;
     text-align:center;text-decoration:none;transition:background .15s ease,transform .15s ease}
.btn:hover{background:var(--bleu-fonce);transform:translateY(-1px)}
.legal{color:var(--gris);font-size:.79rem;margin-top:16px;text-align:center;line-height:1.5}

/* ── page de confirmation ── */
.thanks{text-align:center;background:var(--blanc);border:1px solid var(--bord);
        border-radius:16px;padding:48px 26px}
.thanks .big{font-size:2.6rem;margin-bottom:12px}
.thanks h1{margin-bottom:14px}
.thanks p{color:var(--gris);margin-bottom:24px}
.thanks .btn{max-width:420px;margin:0 auto}

footer{background:var(--bleu);color:rgba(244,242,237,.72);padding:28px 0;font-size:.82rem;text-align:center;line-height:1.7}
footer a{color:rgba(244,242,237,.88);text-decoration:none}
footer a:hover{color:var(--ambre)}

a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:3px solid var(--ambre);outline-offset:3px;border-radius:6px}
