/* ==================================================================
   La Compagnie des Pas sur les Planches — feuille de style du site.

   Papier crème, encre foncée, une seule couleur d'accent (le bordeaux
   du rideau), une police de titre à empattements (Playfair Display,
   fournie avec le site), le reste en police système.
   ================================================================== */

@font-face {
  font-family: "Playfair";
  src: url("fonts/playfair.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair";
  src: url("fonts/playfair-italic.woff2") format("woff2");
  font-weight: 400 900; font-style: italic; font-display: swap;
}

:root {
  --fond:        #f6f2ea;   /* le papier */
  --fond-2:      #fffdf9;   /* les cartes */
  --fond-3:      #efe9de;   /* champs, survols */
  --trait:       #e6dfd3;   /* filets */
  --trait-2:     #d3cabb;
  --texte:       #221f1c;   /* l'encre */
  --texte-2:     #6a635b;
  --texte-3:     #9a9187;
  --accent:      #8b2635;   /* le rideau */
  --accent-2:    #6b1b28;
  --accent-fond: rgba(139, 38, 53, .08);
  --rouge:       #b8433e;
  --rayon:       12px;
  --ombre-carte: 0 1px 2px rgba(34, 31, 28, .04), 0 12px 32px -20px rgba(34, 31, 28, .22);
  --ombre-affiche: 0 26px 44px -22px rgba(34, 31, 28, .5), 0 0 0 1px rgba(34, 31, 28, .06);
  --titre: "Playfair", "Playfair Display", Georgia, "Times New Roman", serif;
  --corps: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- base ---------- */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: var(--corps);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; -webkit-tap-highlight-color: transparent; }
a:hover { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
button { font-family: inherit; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--titre);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(30px, 4.6vw, 46px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: 20px; }

.wrap {
  max-width: 1060px; margin: 0 auto;
  /* 22 px de marge, ou davantage sur les iPhone à encoche */
  padding: 0 max(22px, env(safe-area-inset-right, 0px)) 0 max(22px, env(safe-area-inset-left, 0px));
}
/* (main.wrap : plus précis que .wrap, sinon le padding vertical est écrasé) */
main.wrap { padding-top: 36px; padding-bottom: 64px; }

/* ---------- en-tête ---------- */

.tete { text-align: center; padding: 36px 22px 0; border-bottom: 1px solid var(--trait); }
.tete .marque { display: inline-block; }
.tete .marque:hover { text-decoration: none; }
.tete .marque img { width: 230px; height: auto; margin: 0 auto; }
.tete .marque b {
  font-family: var(--titre); font-weight: 600; font-size: 28px;
  color: var(--texte); letter-spacing: -.01em;
}
.tete .accroche {
  font-family: var(--titre); font-style: italic;
  color: var(--texte-2); font-size: 18.5px; margin: 12px 0 0;
}
.nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 4px 30px; margin: 24px 0 0;
}
.nav a {
  font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--texte-2); padding: 10px 0 14px; border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.nav a:hover { color: var(--texte); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 600px) {
  .tete { padding-top: 26px; }
  .tete .marque img { width: 180px; }
  .tete .accroche { font-size: 16.5px; }
  /* sur un téléphone, le menu se replie sur deux lignes centrées */
  .nav { gap: 0 20px; padding: 0 6px; }
  .nav a { font-size: 11.5px; letter-spacing: .12em; padding: 8px 0 10px; }
}

/* ---------- petites pièces ---------- */

.surtitre {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px; font-weight: 600;
}
.sous-titre {
  font-family: var(--titre); font-style: italic; font-size: 20px;
  color: var(--texte-2); margin: 8px 0 0;
}
.distribution { color: var(--texte-2); font-size: 15px; margin: 6px 0 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 14.5px; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn:hover { background: var(--accent-2); color: #fff; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--texte); border-color: var(--trait-2); }
.btn.ghost:hover { border-color: var(--texte-2); background: var(--fond-3); }
.btn.small { padding: 7px 13px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: default; }

.etiquette {
  display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; border: 1px solid var(--trait-2);
  color: var(--texte-2); white-space: nowrap; line-height: 1.2;
}
.etiquette.complet { border-color: var(--rouge); color: var(--rouge); }
.etiquette.or { border-color: var(--accent); color: var(--accent); }

.note {
  background: var(--fond-2); border: 1px solid var(--trait); border-radius: var(--rayon);
  padding: 16px 18px; color: var(--texte-2); font-size: 15px;
}
.vide {
  color: var(--texte-3); text-align: center; padding: 48px 0;
  font-style: italic; font-family: var(--titre); font-size: 19px;
}

.prose { max-width: 64ch; }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

.section { margin-top: 72px; }
.section-tete {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 20px;
}
.section-tete a { font-size: 14px; white-space: nowrap; }

/* ---------- la scène : le prochain spectacle, en haut de l'accueil ---------- */

.scene {
  display: grid; grid-template-columns: minmax(230px, 340px) 1fr;
  gap: 50px; align-items: center; margin-top: 14px;
}
.scene-affiche { display: block; transition: transform .35s ease; }
.scene-affiche:hover { transform: translateY(-4px); }
.scene-affiche img, .fiche-affiche img { width: 100%; border-radius: var(--rayon); box-shadow: var(--ombre-affiche); }
.scene h1 { margin-bottom: 4px; }
.scene .dates { margin-top: 26px; }
.scene-suite { margin-top: 20px; font-size: 15px; }

@media (max-width: 760px) {
  .scene { grid-template-columns: 1fr; gap: 28px; }
  .scene-affiche { max-width: 290px; margin: 0 auto; }
  .scene-texte { text-align: center; }
  .scene .dates { text-align: left; }
}

/* ---------- le rideau : l'accueil sans spectacle à venir ---------- */

.rideau {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 400px; display: grid; align-items: end;
  background: var(--texte); box-shadow: var(--ombre-carte);
}
.rideau img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rideau-texte {
  position: relative; width: 100%; padding: 70px 34px 34px; color: #fff;
  background: linear-gradient(to top, rgba(20, 18, 16, .92) 0%, rgba(20, 18, 16, .55) 55%, transparent 100%);
}
.rideau h1 { font-size: clamp(26px, 4vw, 40px); color: #fff; }
.rideau p { color: rgba(255, 255, 255, .78); margin: 8px 0 0; max-width: 60ch; }
.rideau .btn { margin-top: 18px; background: #fff; color: var(--texte); }
.rideau .btn:hover { background: var(--fond-3); }
@media (max-width: 600px) { .rideau { min-height: 320px; } .rideau-texte { padding: 50px 22px 24px; } }

/* ---------- les dates ---------- */

.dates { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.date {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 16px; align-items: center;
  padding: 14px 16px; background: var(--fond-2);
  border: 1px solid var(--trait); border-radius: var(--rayon); box-shadow: var(--ombre-carte);
}
.date.passee { opacity: .6; box-shadow: none; }
.date-jour {
  text-align: center; line-height: 1;
  border-right: 1px solid var(--trait); padding-right: 14px;
}
.date-jour b { display: block; font-family: var(--titre); font-size: 30px; font-weight: 600; }
.date-jour span {
  display: block; font-size: 11px; text-transform: uppercase; font-weight: 600;
  letter-spacing: .1em; color: var(--accent); margin-top: 5px;
}
.date-jour small { display: block; font-size: 10.5px; color: var(--texte-3); margin-top: 3px; }
.date-infos { min-width: 0; }
.date-quand { font-weight: 600; }
.date-ou { color: var(--texte-2); font-size: 15px; }
.date-plus { color: var(--texte-3); font-size: 14px; margin-top: 3px; overflow-wrap: anywhere; }
.date-mini {
  width: 44px; aspect-ratio: 2 / 3; border-radius: 5px; overflow: hidden;
  border: 1px solid var(--trait-2); cursor: pointer; padding: 0; background: var(--fond-3);
}
.date-mini img { width: 100%; height: 100%; object-fit: cover; }
.date-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 540px) {
  .date { grid-template-columns: 56px 1fr; }
  .date-actions { grid-column: 2; justify-self: start; }
}

/* ---------- cartes de spectacles ---------- */

.grille-spectacles {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 28px 22px;
}
.carte { display: block; color: inherit; min-width: 0; }
.carte:hover { text-decoration: none; color: inherit; }
.carte .affiche {
  aspect-ratio: 2 / 3; border-radius: 10px; overflow: hidden;
  background: var(--fond-3); box-shadow: var(--ombre-affiche);
  transition: transform .3s ease;
}
.carte:hover .affiche { transform: translateY(-4px); }
.carte .affiche img { width: 100%; height: 100%; object-fit: cover; }
.carte .affiche.vide {
  display: grid; place-items: center; padding: 0;
  font-family: var(--titre); font-size: 40px; color: var(--texte-3); font-style: italic;
}
.carte-titre { font-family: var(--titre); font-size: 18px; font-weight: 600; margin-top: 14px; line-height: 1.25; }
.carte-sous { font-size: 13.5px; color: var(--texte-2); margin-top: 4px; }
.carte-sous.or { color: var(--accent); }
@media (max-width: 600px) {
  .grille-spectacles { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .carte-titre { font-size: 16px; }
}

/* ---------- la fiche d'un spectacle ---------- */

.fiche { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: 52px; align-items: start; }
.fiche-affiche { position: sticky; top: 24px; }
.fiche-affiche .vide {
  aspect-ratio: 2 / 3; border-radius: var(--rayon); border: 1px solid var(--trait);
  display: grid; place-items: center; font-size: 60px; padding: 0;
}
.fiche h1 { margin-bottom: 2px; }
.fiche .prose { margin-top: 26px; }
.fiche h2 { margin: 42px 0 16px; font-size: 24px; }
.fiche .retour { margin-top: 40px; font-size: 14.5px; }
@media (max-width: 720px) {
  .fiche { grid-template-columns: 1fr; gap: 30px; }
  .fiche-affiche { position: static; max-width: 280px; margin: 0 auto; }
}

/* ---------- la troupe ---------- */

.troupe { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 34px 26px; }
.membre { min-width: 0; }
.membre-photo {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: var(--fond-3); box-shadow: var(--ombre-carte);
  display: grid; place-items: center;
  font-family: var(--titre); font-size: 50px; color: var(--texte-3);
}
.membre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.membre-nom { font-family: var(--titre); font-size: 21px; font-weight: 600; margin-top: 14px; }
.membre-role { color: var(--accent); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.membre-bio { color: var(--texte-2); font-size: 15px; margin-top: 8px; line-height: 1.55; }
.membre-bio p { margin: 0 0 .7em; }
.membre-bio p:last-child { margin: 0; }

.troupe.compacte { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 22px 18px; text-align: center; }
.troupe.compacte .membre { color: inherit; }
.troupe.compacte .membre:hover { text-decoration: none; }
.troupe.compacte .membre-photo { border-radius: 50%; width: 118px; margin: 0 auto; font-size: 40px; transition: transform .3s; }
.troupe.compacte .membre:hover .membre-photo { transform: translateY(-3px); }
.troupe.compacte .membre-nom { font-size: 18px; margin-top: 10px; }
.troupe.compacte .membre-role { font-size: 11px; }

/* ---------- photos ---------- */

.album { margin-bottom: 56px; }
.album-tete { margin-bottom: 16px; }
.album-tete h2 { font-size: 24px; }
.album-sous { color: var(--texte-2); font-size: 14.5px; margin-top: 4px; }
.grille-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.grille-photos button {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; background: var(--fond-3);
}
.grille-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.grille-photos button:hover img { transform: scale(1.04); }
.grille-photos button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.grille-photos.bandeau { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
@media (max-width: 600px) { .grille-photos, .grille-photos.bandeau { grid-template-columns: repeat(2, 1fr); } }

/* la visionneuse : sombre, comme une salle */
.visionneuse {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 18, 16, .95);
  display: grid; grid-template-rows: 1fr auto; place-items: center;
  animation: apparaitre .18s ease;
}
@keyframes apparaitre { from { opacity: 0; } to { opacity: 1; } }
.visionneuse figure { margin: 0; display: grid; place-items: center; max-width: 100vw; padding: 14px; }
.visionneuse img {
  max-width: calc(100vw - 28px); max-height: 86vh; max-height: 86svh; width: auto; height: auto;
  border-radius: 6px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); user-select: none; -webkit-user-select: none;
}
.visionneuse .compteur {
  color: rgba(255, 255, 255, .7); font-size: 13px; letter-spacing: .12em;
  padding: 0 0 calc(18px + env(safe-area-inset-bottom, 0px));
}
.visionneuse .bouton {
  position: fixed; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25); background: rgba(40, 36, 32, .8); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  -webkit-tap-highlight-color: transparent;
}
.visionneuse .bouton:hover { background: rgba(70, 64, 58, .9); }
.visionneuse .fermer {
  top: calc(16px + env(safe-area-inset-top, 0px)); right: calc(16px + env(safe-area-inset-right, 0px)); font-size: 22px;
}
.visionneuse .prec { left: calc(14px + env(safe-area-inset-left, 0px)); top: 50%; transform: translateY(-50%); }
.visionneuse .suiv { right: calc(14px + env(safe-area-inset-right, 0px)); top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .visionneuse .prec, .visionneuse .suiv { top: auto; bottom: calc(52px + env(safe-area-inset-bottom, 0px)); transform: none; }
}

/* ---------- partenaires ---------- */

.grille-partenaires { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 26px 22px; }
.partenaire { display: block; text-align: center; color: inherit; min-width: 0; }
.partenaire:hover { text-decoration: none; color: inherit; }
.partenaire .logo {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid var(--trait); box-shadow: var(--ombre-carte); transition: transform .3s;
  display: grid; place-items: center; color: var(--texte-3); font-family: var(--titre); font-size: 40px;
}
.partenaire:hover .logo { transform: translateY(-3px); }
.partenaire .logo img { width: 100%; height: 100%; object-fit: cover; }
.partenaire .nom { margin-top: 10px; font-weight: 600; font-size: 15.5px; }
.partenaire .site { font-size: 13px; color: var(--texte-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 600px) { .grille-partenaires { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; } }

.bandeau-partenaires { display: flex; flex-wrap: wrap; gap: 14px 22px; justify-content: center; align-items: center; }
.bandeau-partenaires a { display: flex; align-items: center; gap: 10px; color: var(--texte-2); font-size: 14px; }
.bandeau-partenaires a:hover { color: var(--texte); text-decoration: none; }
.bandeau-partenaires img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; border: 1px solid var(--trait); }

/* ---------- sur téléphone, tout est centré, comme l'en-tête ---------- */

@media (max-width: 720px) {
  .fiche-corps { text-align: center; }
  .fiche .prose { margin-left: auto; margin-right: auto; }
  .fiche .dates, .fiche .date { text-align: left; }
}
@media (max-width: 600px) {
  main > h1, main > .prose, .surtitre, .album-tete, .album-sous, .retour, .rideau-texte { text-align: center; }
  main > .prose { margin-left: auto; margin-right: auto; }
  .section-tete { flex-direction: column; align-items: center; gap: 2px; text-align: center; }
  .grille-spectacles { grid-template-columns: repeat(auto-fit, min(100%, 170px)); justify-content: center; }
  .carte { text-align: center; }
  .troupe .membre { text-align: center; }
  .rideau-texte p { margin-left: auto; margin-right: auto; }
}

/* ---------- petits boutons ronds (agenda, partage) ---------- */

.btn-icone {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 1px solid var(--trait-2); background: var(--fond-2); color: var(--texte-2);
  transition: color .15s, border-color .15s;
}
.btn-icone:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.btn-icone svg { width: 17px; height: 17px; display: block; }
.copie { font-size: 12.5px; color: var(--accent); white-space: nowrap; }

/* ---------- formulaires du site (livre d'or, abonnement) ---------- */

.formulaire input[type=text], .formulaire input[type=email], .formulaire textarea,
.abonnement input[type=email] {
  width: 100%; font: inherit; font-size: 16px; color: var(--texte);
  background: #fff; border: 1px solid var(--trait-2); border-radius: 9px;
  padding: 10px 12px; outline: none; min-width: 0;
}
.formulaire input:focus, .formulaire textarea:focus, .abonnement input:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-fond);
}
.formulaire { max-width: 560px; margin-top: 26px; }
.formulaire .champ { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.formulaire label { font-size: 13px; color: var(--texte-2); font-weight: 600; }
.formulaire textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.formulaire .msg, .abonnement .msg { font-size: 14.5px; color: var(--texte-2); margin-top: 10px; min-height: 1.2em; }
.msg.ok { color: #3f8a52; }
.msg.err { color: var(--rouge); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.abonnement {
  margin: 34px 0 0; padding: 18px 20px; max-width: 520px;
  border: 1px solid var(--trait); border-radius: var(--rayon); background: var(--fond-2);
}
.abonnement-titre { font-weight: 600; margin-bottom: 10px; }
.abonnement-ligne { display: flex; gap: 8px; }
.abonnement-ligne input { flex: 1; }
.abonnement-note { font-size: 12.5px; color: var(--texte-3); margin-top: 8px; }
.abonnement .msg { margin-top: 6px; }

/* ---------- pour les programmateurs ---------- */

.programmateurs {
  margin-top: 40px; padding: 18px 20px; font-size: 15px;
  border: 1px solid var(--trait); border-radius: var(--rayon); background: var(--fond-2);
}
.programmateurs b { display: block; font-family: var(--titre); font-size: 18px; margin-bottom: 4px; }
.programmateurs span { display: block; color: var(--texte-2); }
.programmateurs-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- le livre d'or ---------- */

.mots { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.mot {
  padding: 16px 18px; border: 1px solid var(--trait); border-radius: var(--rayon);
  background: var(--fond-2); box-shadow: var(--ombre-carte);
}
.mot-tete { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 6px; }
.mot-tete b { font-family: var(--titre); font-size: 17px; }
.mot-tete span { font-size: 13px; color: var(--texte-3); white-space: nowrap; }
.mot-texte p { margin: 0 0 .6em; }
.mot-texte p:last-child { margin: 0; }
.mot-reponse { margin-top: 12px; padding: 8px 14px; border-left: 2px solid var(--accent); color: var(--texte-2); font-size: 15px; }
.mot-reponse b { display: block; color: var(--accent); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 2px; }
.mot-reponse p { margin: 0 0 .5em; }
.mot-reponse p:last-child { margin: 0; }

@media (max-width: 600px) {
  .formulaire, .abonnement, .programmateurs, .mot, .mot-texte, .mot-reponse { text-align: left; }
  .abonnement, .formulaire { margin-left: auto; margin-right: auto; max-width: none; }
  .programmateurs { text-align: center; }
  .programmateurs-actions { justify-content: center; }
}

/* ---------- pied de page ---------- */

.pied {
  position: relative; overflow: hidden;
  background: var(--fond-3); border-top: 1px solid var(--trait);
  margin-top: 0; padding: 40px 0 46px;
  color: var(--texte-2); font-size: 14.5px;
}
.pied .wrap {
  position: relative; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 14px 30px;
}
.pied-nom { font-family: var(--titre); color: var(--texte); font-size: 17px; }
.pied-liens { display: flex; gap: 12px; flex-wrap: wrap; }
.pied-liens .icone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--trait-2); color: var(--texte-2); background: var(--fond-2);
  transition: color .15s, border-color .15s, transform .2s;
}
.pied-liens .icone:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.pied-liens .icone svg { width: 20px; height: 20px; display: block; }
.pied-pas { position: absolute; right: -30px; bottom: -70px; width: 260px; opacity: .07; pointer-events: none; }
@media (max-width: 600px) { .pied .wrap { flex-direction: column; align-items: center; text-align: center; gap: 16px; } }
