/* =============================================================
   CINASSUR — Assurance Consultants
   Design system conforme au Canon de marque Cinassur (refonte 2026)
   Fond blanc dominant · Bleu roi = élément · Or = ponctuation · accents = information
   ============================================================= */

:root {
  /* Rôles couleur (canon) */
  --bleu-roi:      #0E2A59; /* structure / ancre : cartes, blocs, CTA */
  --neige:         #F6FBFF; /* respiration / fond */
  --blanc:         #FFFFFF;
  --or:            #F9DD1E; /* énergie / signature : filet, 45°, surlignage */
  --charbon:       #101416; /* texte / fond sombre */
  --cyan:          #65E6FD; /* accent catégorie / balisage */
  --vert:          #00FFB1; /* accent positif : couvert, inclus */
  --orange:        #FF6C00; /* accent alerte / CTA fort */
  --gris:          #D8DDE1; /* filets */
  --bleu-clair:    #4A6695; /* eyebrow / légende */

  --bleu-roi-90:   rgba(14,42,89,0.90);
  --bleu-roi-06:   rgba(14,42,89,0.06);
  --bleu-roi-12:   rgba(14,42,89,0.12);

  /* Typo */
  --font-titre: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-corps: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Échelle (canon) */
  --fs-display: clamp(2.6rem, 6vw, 4rem);   /* ~64px */
  --fs-h1:      clamp(2rem, 4.2vw, 2.5rem);  /* ~40px */
  --fs-h2:      clamp(1.5rem, 3vw, 1.75rem); /* ~28px */
  --fs-h3:      1.25rem;                     /* ~20px */
  --fs-corps:   1rem;                        /* 16px */
  --fs-legende: 0.75rem;                     /* 12px caps */

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14,42,89,0.08);
  --shadow-lg: 0 24px 60px rgba(14,42,89,0.14);
  --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* -------- Reset léger -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-corps);
  font-size: var(--fs-corps);
  line-height: 1.65;
  color: var(--charbon);
  background: var(--blanc);            /* fond de page TOUJOURS blanc/neige */
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-roi); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-titre); color: var(--bleu-roi); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-neige { background: var(--neige); }
.eyebrow {
  font-family: var(--font-titre); font-weight: 700; font-size: var(--fs-legende);
  letter-spacing: .12em; text-transform: uppercase; color: var(--bleu-clair);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--or); display: inline-block; }
.lead { font-size: 1.125rem; color: #33414f; max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.grid { display: grid; gap: 1.5rem; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .g-3, .g-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* -------- Boutons (CTA) -------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-titre); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform var(--t), box-shadow var(--t), background var(--t);
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--bleu-roi); color: #fff; }
.btn-primary:hover { box-shadow: var(--shadow); background: #0b2148; }
.btn-cta { background: var(--orange); color: #fff; }          /* orange = CTA fort (canon) */
.btn-cta:hover { box-shadow: 0 10px 24px rgba(255,108,0,.28); }
.btn-ghost { background: transparent; color: var(--bleu-roi); border-color: var(--bleu-roi-12); }
.btn-ghost:hover { border-color: var(--bleu-roi); }
.btn-light { background: #fff; color: var(--bleu-roi); }
.btn-light:hover { box-shadow: var(--shadow); }

/* -------- Header / Nav -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gris);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-titre); font-weight: 600; font-size: .95rem; color: var(--bleu-roi); }
.nav-links a:hover { color: var(--orange); text-decoration: none; }
.nav-cta { display: inline-flex; gap: .6rem; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--bleu-roi); margin: 5px 0; transition: var(--t); }
@media (max-width: 940px){
  .nav-links {
    position: fixed; inset: 62px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: #fff; padding: 1rem 1.25rem; gap: .4rem; border-bottom: 1px solid var(--gris);
    transform: translateY(-120%); transition: transform var(--t); box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .6rem 0; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
}

/* -------- Hero -------- */
.hero { position: relative; overflow: hidden; background: var(--neige); }
.hero::after { /* angle 45° or, motif signature */
  content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: var(--or); transform: rotate(45deg); opacity: .9; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; } .hero::after{ width:150px; height:150px; } }
.hero h1 { font-size: var(--fs-display); font-weight: 900; letter-spacing: -.01em; }
.hero .baseline {
  font-family: var(--font-titre); font-weight: 800; color: var(--bleu-roi);
  text-transform: uppercase; letter-spacing: .04em; font-size: .95rem;
  display: inline-block; border-bottom: 4px solid var(--or); padding-bottom: 2px; margin-bottom: 1rem;
}
.hero-card {
  background: var(--bleu-roi); color: #fff; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 { color: #fff; }
.hero-card ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hero-card li { display: flex; gap: .6rem; align-items: flex-start; padding: .45rem 0; border-top: 1px solid rgba(255,255,255,.12); }
.hero-card li:first-child { border-top: 0; }
.tick { color: var(--vert); flex: 0 0 auto; font-weight: 900; }

/* -------- Hero visuel (photo + carte flottante) -------- */
.hero-visual { position: relative; }
.hero-visual .photo { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-visual .float-card {
  position: absolute; bottom: -26px; left: -22px; background: var(--bleu-roi); color:#fff;
  border-radius: 12px; padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); max-width: 260px;
}
.hero-visual .float-card strong { font-family: var(--font-titre); font-weight:900; font-size:1.6rem; display:block; }
.hero-visual .float-card span { color: var(--cyan); font-size:.85rem; font-family: var(--font-titre); font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
@media (max-width: 900px){ .hero-visual .float-card { position: static; margin-top:1rem; max-width:none; } }

/* -------- Bandeau image de section (photo DA) -------- */
.photo-band { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display:flex; align-items:flex-end; }
.photo-band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.photo-band .veil { position:absolute; inset:0; background: linear-gradient(90deg, var(--bleu-roi-90) 0%, rgba(14,42,89,.35) 65%, transparent 100%); z-index:1; }
.photo-band .content { position:relative; z-index:2; color:#fff; padding: 2rem; max-width: 620px; }
.photo-band .content h2 { color:#fff; }
.photo-band .content p { color: rgba(255,255,255,.9); }
.photo-band .eyebrow { color: var(--cyan); }

/* -------- Cartes piliers -------- */
.pillar-card {
  background: #fff; border: 1px solid var(--gris); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-card .cat {
  font-family: var(--font-titre); font-weight: 700; font-size: var(--fs-legende);
  text-transform: uppercase; letter-spacing: .1em; color: var(--bleu-clair); margin-bottom: .5rem;
}
.pillar-ico { width: 54px; height: 54px; border-radius: 12px; background: var(--bleu-roi-06);
  display: grid; place-items: center; margin-bottom: 1rem; }
.pillar-ico svg { width: 30px; height: 30px; stroke: var(--bleu-roi); }
.pillar-card h3 { font-size: 1.35rem; }
.pillar-card p { color: #46545f; flex: 1; }
.pillar-card .more { font-family: var(--font-titre); font-weight: 700; color: var(--orange); margin-top: .5rem; }
.pillar-card .more:hover { text-decoration: none; }
.pillar-card::before { /* filet or catégorie */
  content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%; background: var(--cyan);
}
.pillar-card.p-rc::before { background: var(--cyan); }
.pillar-card.p-rev::before { background: var(--vert); }
.pillar-card.p-pen::before { background: var(--orange); }

/* -------- Gros chiffre (motif signature) -------- */
.stat-band { background: var(--bleu-roi); color: #fff; }
.stat-band .eyebrow { color: var(--cyan); }
.stat-band .eyebrow::before { background: var(--or); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-titre); font-weight: 900; font-size: clamp(2.6rem,6vw,3.6rem); color: #fff; line-height: 1; }
.stat .num span { color: var(--or); }
.stat .lbl { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: .4rem; }

/* -------- Bloc "étapes / méthode" -------- */
.step { background:#fff; border:1px solid var(--gris); border-radius: var(--radius); padding:1.5rem; height:100%; }
.step .n { font-family: var(--font-titre); font-weight:900; font-size:2rem; color: var(--or); -webkit-text-stroke: 1px var(--bleu-roi); }
.step h3 { margin-top:.3rem; }

/* -------- Liste couverte / exclue -------- */
.cov { list-style:none; padding:0; margin:0; }
.cov li { display:flex; gap:.6rem; padding:.5rem 0; border-bottom:1px dashed var(--gris); }
.cov li:last-child{ border-bottom:0; }
.cov .yes { color: var(--vert); font-weight:900; }
.cov .no  { color: var(--orange); font-weight:900; }

/* -------- FAQ (accordéon) -------- */
.faq { max-width: 800px; margin-inline:auto; }
.faq details { border:1px solid var(--gris); border-radius: 12px; padding: .25rem 1.1rem; margin-bottom: .75rem; background:#fff; }
.faq details[open] { border-color: var(--bleu-roi-12); box-shadow: var(--shadow); }
.faq summary { font-family: var(--font-titre); font-weight:700; color: var(--bleu-roi); cursor:pointer; padding: .9rem 0; list-style:none; display:flex; justify-content:space-between; gap:1rem; align-items:center; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.4rem; color: var(--orange); transition: var(--t); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color:#46545f; padding-bottom: .9rem; margin:0; }

/* -------- CTA final -------- */
.cta-final { background: var(--bleu-roi); color:#fff; border-radius: var(--radius); padding: clamp(2rem,5vw,3.5rem); text-align:center; position:relative; overflow:hidden; }
.cta-final::after { content:""; position:absolute; bottom:-50px; left:-50px; width:160px; height:160px; background: var(--or); transform: rotate(45deg); opacity:.85; }
.cta-final h2 { color:#fff; position:relative; z-index:1; }
.cta-final p { color: rgba(255,255,255,.85); position:relative; z-index:1; }
.cta-final .btn { position:relative; z-index:1; }

/* -------- Formulaire -------- */
.form-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items:start; }
@media (max-width: 860px){ .form-wrap { grid-template-columns: 1fr; } }
.form-card { background:#fff; border:1px solid var(--gris); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field label { display:block; font-family: var(--font-titre); font-weight:600; font-size:.9rem; color: var(--bleu-roi); margin-bottom:.35rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.75rem .9rem; border:1px solid var(--gris); border-radius: 10px;
  font-family: var(--font-corps); font-size: 1rem; color: var(--charbon); background:#fff; transition: border var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--bleu-roi); box-shadow: 0 0 0 3px var(--bleu-roi-12); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size:.85rem; color:#57626d; }
.form-ok { display:none; background: rgba(0,255,177,.12); border:1px solid var(--vert); color:#0a5c46; padding:1rem; border-radius:10px; margin-top:1rem; }
.consent { display:flex; gap:.6rem; align-items:flex-start; font-size:.85rem; color:#46545f; }
.consent input { width:auto; margin-top:.25rem; }

/* -------- Trust / logos -------- */
.trust { display:flex; flex-wrap:wrap; gap:1.5rem 2.5rem; align-items:center; justify-content:center; }
.trust span { font-family: var(--font-titre); font-weight:700; color: var(--bleu-clair); font-size:1.05rem; opacity:.85; }

/* -------- Breadcrumb -------- */
.crumb { font-size:.85rem; color: var(--bleu-clair); padding-top: 1rem; }
.crumb a { color: var(--bleu-clair); }
.crumb a:hover { color: var(--orange); }

/* -------- Footer -------- */
.site-footer { background: var(--charbon); color: #cfd6dd; padding: 3rem 0 1.5rem; }
.site-footer h4 { color:#fff; font-size:1rem; margin-bottom:.9rem; }
.site-footer a { color:#cfd6dd; }
.site-footer a:hover { color: var(--or); text-decoration:none; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:2rem; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 38px; }
.footer-list { list-style:none; padding:0; margin:0; }
.footer-list li { padding:.25rem 0; }
.finch { font-size:.8rem; color:#8a949e; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2rem; padding-top:1.25rem; font-size:.8rem; color:#8a949e; display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; justify-content:space-between; }

/* -------- Utilities -------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}
.hl { background: linear-gradient(transparent 60%, var(--or) 60%); padding:0 .1em; } /* surlignage or */
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* =============================================================
   V2 — retours Flo : top-bar, nav sans wrap, marqueur jaune,
   photo-frame responsive, chips partenaires, bureaux.
   (Bloc ajouté en fin de fichier : prévaut sur les règles ci-dessus.)
   ============================================================= */

/* Barre supérieure */
.topbar { background: var(--bleu-roi); color:#fff; font-size:.82rem; }
.topbar .container { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.4rem 1.25rem; }
.topbar a { color:#fff; } .topbar a:hover { color:var(--or); text-decoration:none; }
.topbar .offices { color:rgba(255,255,255,.85); }
.topbar .tb-contact { display:inline-flex; gap:1.1rem; align-items:center; white-space:nowrap; font-family:var(--font-titre); font-weight:600; }
@media (max-width:760px){ .topbar .offices{ display:none; } .topbar .container{ justify-content:center; } }

/* Nav resserrée + collapse à 1040px (fin du wrap sur 2 lignes) */
.nav-links { gap:1.05rem; }
.nav-links a { font-size:.88rem; white-space:nowrap; }
.nav-links a[aria-current="page"] { color:var(--orange); }
.nav-toggle { display:none; }
@media (max-width:1040px){
  .nav-links { position:absolute; top:100%; left:0; right:0; flex-direction:column; align-items:flex-start;
    background:#fff; padding:1rem 1.25rem; gap:.2rem; border-bottom:1px solid var(--gris);
    transform:translateY(-135%); transition:transform var(--t); box-shadow:var(--shadow); z-index:49; }
  .nav-links.open { transform:translateY(0); }
  .nav-links li { width:100%; }
  .nav-links a { display:block; padding:.7rem 0; font-size:1rem; }
  .nav-toggle { display:block; }
}
@media (max-width:600px){ .nav-cta .phone-pill{ display:none; } }

/* Photo encadrée (ratio = ratio image → aucun recadrage → marqueur toujours aligné) */
.photo-frame { position:relative; aspect-ratio:1280/853; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); background:#0b2148; }
.photo-frame img { width:100%; height:100%; object-fit:cover; display:block; }

/* Marqueur jaune (repère du sujet, ajouté APRÈS la photo — canon). Position via --mx/--my. */
.marker { position:absolute; left:var(--mx,50%); top:var(--my,50%); width:clamp(54px,11%,104px); aspect-ratio:1;
  transform:translate(-50%,-50%); pointer-events:none; filter:drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.marker svg { width:100%; height:100%; display:block; }
.marker .lbl { position:absolute; left:50%; top:-14px; transform:translateX(-50%); background:var(--or); color:var(--bleu-roi);
  font-family:var(--font-titre); font-weight:800; font-size:.6rem; letter-spacing:.06em; text-transform:uppercase;
  padding:2px 7px; border-radius:20px; white-space:nowrap; }

/* Le hero visuel accueille le cadre + la carte flottante */
.hero-visual .photo-frame { width:100%; }

/* Bloc proximité en 2 colonnes (remplace le bandeau plein cadre) */
.split { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:center; }
@media (max-width:860px){ .split { grid-template-columns:1fr; } }

/* Chips partenaires */
.chips { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; }
.chip { border:1px solid var(--gris); border-radius:999px; padding:.5rem 1rem; font-family:var(--font-titre);
  font-weight:700; font-size:.9rem; color:var(--bleu-roi); background:#fff; }
.chip.soft { color:var(--bleu-clair); font-weight:600; }

/* Grille bureaux */
.offices-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
@media (max-width:860px){ .offices-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .offices-grid { grid-template-columns:1fr; } }
.office { background:#fff; border:1px solid var(--gris); border-radius:12px; padding:1.1rem; }
.office .name { font-family:var(--font-titre); font-weight:700; font-size:.8rem; text-transform:uppercase; letter-spacing:.05em; color:var(--bleu-clair); }
.office .addr { color:#46545f; font-size:.95rem; margin-top:.2rem; }
.office.main { border-color:var(--bleu-roi); border-width:2px; }
.office.main .name { color:var(--orange); }


/* Skip-link accessibilité (ajout V2) */
.skip-link { position:absolute; left:-9999px; top:0; z-index:100; background:var(--bleu-roi); color:#fff;
  font-family:var(--font-titre); font-weight:700; padding:.7rem 1.1rem; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }


/* -------- Avis Google (social proof) -------- */
.rating-hero { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:.6rem; margin-top:.4rem; }
.rating-hero .rating-num { font-family:var(--font-titre); font-weight:900; font-size:2.4rem; color:var(--bleu-roi); line-height:1; }
.rating-hero .rating-count { color:#46545f; font-weight:600; }
.stars { color:#F5A623; letter-spacing:2px; }
.review { background:#fff; border:1px solid var(--gris); border-radius:var(--radius); padding:1.5rem 1.6rem; margin:0;
  box-shadow:var(--shadow); display:flex; flex-direction:column; gap:.7rem; }
.review .stars { font-size:1rem; }
.review blockquote { margin:0; color:#33414f; font-size:1.06rem; line-height:1.6; }
.review figcaption { font-family:var(--font-titre); font-weight:700; color:var(--bleu-roi); font-size:.9rem; }
.review figcaption span { color:var(--bleu-clair); font-weight:600; }


/* Carte "voir tous les avis" (5e tuile, lien Google) */
.review-all { margin-top:1.5rem; padding:1.4rem 1.6rem; border-radius:var(--radius); border:0;
  background:var(--bleu-roi); color:#fff; box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:center; gap:.4rem 1.1rem; flex-wrap:wrap; text-align:center;
  transition:transform var(--t), box-shadow var(--t); }
.review-all:hover { text-decoration:none; transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.review-all .all-num { font-family:var(--font-titre); font-weight:900; font-size:2rem; color:var(--or); line-height:1; }
.review-all .all-txt { color:rgba(255,255,255,.92); font-size:1.05rem; }
.review-all .all-txt strong { color:#fff; }
.review-all .all-cta { font-family:var(--font-titre); font-weight:700; color:var(--or); }


/* Sélecteur de langue (topbar) */
.tb-lang { margin-right:.5rem; font-family:var(--font-titre); font-weight:700; }
.tb-lang strong { color:var(--or); }
.tb-lang a { color:#fff; opacity:.75; }
.tb-lang a:hover { opacity:1; color:var(--or); text-decoration:none; }


/* Champ téléphone avec indicatif pays */
.tel-group { display:flex; gap:.5rem; align-items:stretch; }
.tel-group select { flex:0 0 auto; width:auto; min-width:6.2rem; }
.tel-group input { flex:1 1 auto; min-width:0; }
