/* Palette suisse — demande de Jeremy : rouge et blanc, en CLAIR.
   Le rouge est celui du drapeau (#DA291C), le reste est blanc et gris
   doux : un site d'urgence doit etre lisible en plein soleil sur un
   trottoir, pas elegant dans le noir. */
:root { --rouge:#DA291C; --rouge-fonce:#B02318; --creme:#FAFAF7;
        --encre:#20262e; --nuit:#20262e; --jaune:#DA291C; }
* { margin:0; box-sizing:border-box; }
body { font:16px/1.6 system-ui,-apple-system,sans-serif; color:var(--encre); background:var(--creme); }
.haut { display:flex; align-items:center; gap:28px; padding:14px 5vw; background:#fff;
        border-bottom:3px solid var(--rouge); position:sticky; top:0; z-index:50; }
.logo { text-decoration:none; color:var(--nuit); font-size:1.25rem;
        display:flex; align-items:center; gap:10px; }
.logo .embleme { width:40px; height:40px; border-radius:10px; object-fit:cover; }
.logo span { color:var(--rouge); font-weight:800; }
.logo .drapeau { width:26px; height:26px; border-radius:5px; box-shadow:0 1px 4px rgba(0,0,0,.18); }
.haut nav { display:flex; gap:20px; margin-left:auto; }
.haut nav a { text-decoration:none; color:var(--encre); font-weight:600; }
.haut nav a.fort { color:#fff; background:var(--rouge); border:2px solid var(--rouge);
                   padding:4px 12px; border-radius:8px; }
.tel { background:var(--rouge); color:#fff; text-decoration:none; font-weight:800;
       padding:10px 18px; border-radius:10px; }
.tel:hover { background:var(--rouge-fonce); }
.heros { background:linear-gradient(160deg,rgba(255,255,255,.94),rgba(255,255,255,.80)),
         url('/assets/img/srr-hero-porte.jpg') center/cover; color:var(--encre); padding:64px 5vw;
         border-bottom:1px solid #eee; }
.heros h1 { font-size:clamp(1.6rem,4vw,2.6rem); line-height:1.2; max-width:20ch; }
.heros p { margin-top:14px; max-width:52ch; color:#45525e; }
.heros .cta { display:inline-block; margin-top:24px; background:var(--rouge); color:#fff;
              font-weight:800; padding:14px 26px; border-radius:12px; text-decoration:none;
              box-shadow:0 3px 10px rgba(218,41,28,.3); }
.heros .cta:hover { background:var(--rouge-fonce); }
.bloc { padding:44px 5vw; max-width:1100px; margin:0 auto; }
.bloc h2 { color:var(--nuit); margin-bottom:14px; }
.cartes { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; margin-top:18px; }
.carte { background:#fff; border:1px solid #e4e4de; border-radius:14px; padding:20px; }
.carte b { color:var(--nuit); }
.pied { display:flex; flex-wrap:wrap; gap:18px; justify-content:space-between; padding:26px 5vw;
        background:var(--rouge); color:#fff; font-size:.9rem; }
.pied a { color:#fff; text-decoration:underline; }
@media (max-width:720px) { .haut { flex-wrap:wrap; gap:10px; } .haut nav { margin-left:0; } }

/* WhatsApp, en bas a GAUCHE (demande explicite) : la droite est prise par
   les gestes systeme sur mobile, et c est la ou tout le monde le met. */
.wa { position:fixed; left:18px; bottom:18px; z-index:90; width:56px; height:56px;
      background:#25D366; border-radius:50%; display:flex; align-items:center;
      justify-content:center; box-shadow:0 4px 14px rgba(0,0,0,.25); }
.wa:hover { transform:scale(1.06); }
.pied .role { font-size:.8rem; color:#ffd9d5; }
.pied .role a { color:#fff; }

/* Sous-menus : CSS pur, ouverts au survol et au clavier (focus-within).
   Pas de JS pour un menu — rien a casser. */
.menu { align-items:center; }
.deroulant { position:relative; }
.deroulant > a { display:inline-block; }
.deroulant .sous { display:none; position:absolute; top:100%; left:0; background:#fff;
  border:1px solid #e4e4de; border-radius:10px; box-shadow:0 8px 22px rgba(0,0,0,.12);
  min-width:230px; padding:8px 0; z-index:60; }
.deroulant:hover .sous, .deroulant:focus-within .sous { display:block; }
.deroulant .sous a { display:block; padding:9px 16px; font-weight:500; }
.deroulant .sous a:hover { background:var(--creme); color:var(--nuit); }
@media (max-width:720px) {
  .deroulant .sous { position:static; border:none; box-shadow:none; padding-left:14px; }
}
