/* =========================================================
   Alteis Formation & Coaching — Design System
   D'après la charte graphique de la marque
   Palette : crème / encre / orange rouge-gorge (#F05A22)
   Typo    : Playfair Display (display) + Poppins (texte)
   ========================================================= */

:root {
  --ivoire: #FBF8F3;
  --blanc: #FFFFFF;
  --creme: #F7EFE1;
  --encre: #1D1815;
  --brun: #6E6156;
  --ardoise: #61707D;
  --or: #EEB44F;
  --bordeaux: #77343D;
  --orange: #F05A22;
  --orange-fonce: #CF4514;
  --ligne: #E7DECF;
  --font-display: "Playfair Display", Georgia, serif;
  --font-texte: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Parisienne", cursive;
  --largeur: 1160px;
  --radius: 6px;
  --transition: 220ms ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivoire);
  color: var(--encre);
  font-family: var(--font-texte);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--largeur);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typographie ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

h1 em, h2 em {
  font-style: italic;
  color: var(--orange);
}

p { margin: 0 0 1.1rem; }

.sous-titre {
  color: var(--brun);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 34em;
}

/* Surtitre — écho du sous-titre espacé du logo */
.surtitre {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brun);
  margin-bottom: 1.4rem;
}

.surtitre::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--orange);
}

/* ---------- Boutons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-texte);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.9em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
}

.btn-plein {
  background: var(--orange);
  color: var(--blanc);
}

.btn-plein:hover { background: var(--orange-fonce); transform: translateY(-2px); }

.btn-contour {
  background: transparent;
  color: var(--encre);
  border-color: var(--encre);
}

.btn-contour:hover { background: var(--encre); color: var(--ivoire); transform: translateY(-2px); }

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- En-tête ---------- */

.entete {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ligne);
}

.entete-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.logo-lien { display: inline-flex; align-items: center; text-decoration: none; }
.logo-lien img { height: 52px; width: auto; }

.nav-principale { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.2rem); }

.nav-principale a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--encre);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-principale a:hover { color: var(--orange); }

.nav-principale a.actif {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-principale a.btn {
  margin-left: 0.5rem;
  padding: 0.72em 1.7em;
  color: var(--blanc);
  border-bottom: none;
}

.nav-principale a.btn:hover { color: var(--blanc); }

.burger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--encre);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-creme { background: var(--creme); }
.section-blanche { background: var(--blanc); }
.section-encre { background: var(--encre); color: var(--ivoire); }
.section-encre .sous-titre { color: #C9BFB2; }
.section-encre .surtitre { color: #C9BFB2; }

.entete-section { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Héros ---------- */

.heros {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.heros-inner { position: relative; max-width: 780px; }

.heros .sous-titre { margin-top: 1.4rem; }

.heros-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* La ligne de vol — signature du site */
.ligne-vol {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ligne-vol path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  opacity: 0.75;
}

.oiseau-heros {
  position: absolute;
  width: clamp(90px, 12vw, 150px);
  height: auto;
  right: clamp(1rem, 6vw, 5rem);
  top: clamp(2rem, 8vw, 5rem);
}

@media (prefers-reduced-motion: no-preference) {
  .ligne-vol path {
    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;
    animation: tracer 2.4s ease-out 0.3s forwards;
  }
  .oiseau-heros {
    animation: apparaitre 0.9s ease-out 1.6s both;
  }
}

@keyframes tracer { to { stroke-dashoffset: 0; } }
@keyframes apparaitre { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Héros secondaire (pages intérieures) : bande crème distincte des sections */
.heros-page {
  position: relative;
  overflow: hidden;
  background: var(--creme);
  border-bottom: 1px solid var(--ligne);
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.heros-page h1 { margin-bottom: 0.4rem; max-width: 13em; }
.heros-page .sous-titre { margin-top: 0.8rem; }

.heros-page .accroche {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: var(--orange);
  margin: 1rem 0 0;
}

.oiseau-page {
  position: absolute;
  right: clamp(1.5rem, 9vw, 9rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(64px, 8vw, 110px);
  height: auto;
}

@media (max-width: 760px) {
  .oiseau-page { opacity: 0.25; }
}

/* ---------- Bande logos clients ---------- */

/* Mur de clients, à la manière de la référence : calme et aéré, logos en couleur */
.section-clients {
  background: var(--blanc);
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.clients-titre {
  text-align: center;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.clients-sous-titre {
  text-align: center;
  color: var(--brun);
  font-size: 0.98rem;
  max-width: 46em;
  margin: 0 auto clamp(2.4rem, 4.5vw, 3.6rem);
}

.clients-grille {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: clamp(2.8rem, 6vw, 5.5rem);
  row-gap: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 1000px;
  margin: 0 auto;
}

.clients-grille img {
  max-height: 52px;
  max-width: 176px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.clients-grille img:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Deux colonnes ---------- */

.deux-colonnes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.deux-colonnes.inverse > .colonne-image { order: 2; }

.colonne-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Liste d'approches (tags) */
.liste-approches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.liste-approches li {
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.42em 1em;
  border: 1px solid var(--ligne);
  border-radius: 999px;
  background: var(--blanc);
  color: var(--brun);
}

/* ---------- Indicateurs ---------- */

.grille-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  text-align: center;
}
.grille-stats > div { flex: 0 1 168px; }

.stat-nombre {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--encre);
}

.stat-nombre sup { font-size: 0.5em; color: var(--orange); }

.stat-libelle {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brun);
}

/* ---------- Cartes ---------- */

.grille-cartes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Rangée de cartes défilant horizontalement — évite les cartes orphelines
   quand le nombre ne remplit pas la dernière ligne */
.cartes-defile {
  display: flex;
  gap: clamp(1.3rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.4rem;
  scroll-padding-left: 2px;
}

.cartes-defile .carte {
  flex: 0 0 clamp(264px, 82vw, 300px);
  scroll-snap-align: start;
}

/* en-tête de carte à hauteur constante : tag figé sur 1 ligne + titre sur 3 lignes
   réservées, pour que les paragraphes et les liens s'alignent d'une carte à l'autre */
/* Grille à lignes fixes : tag et titre occupent une hauteur constante,
   donc le paragraphe et le lien s'alignent parfaitement d'une carte à l'autre.
   Lignes : tag · titre · corps (souple) · lien */
.cartes-defile .carte-corps {
  display: grid;
  grid-template-rows: 1.1rem 5.3rem 1fr auto;
  row-gap: 0.9rem;
  align-content: start;
}

.cartes-defile .carte-tag {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cartes-defile .carte h3 {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  align-self: start;
}

.cartes-defile .carte p { margin: 0; }
.cartes-defile .carte .lien-fleche { margin-top: 1rem; }

.cartes-defile::-webkit-scrollbar { height: 8px; }
.cartes-defile::-webkit-scrollbar-track { background: var(--ligne); border-radius: 999px; }
.cartes-defile::-webkit-scrollbar-thumb { background: var(--brun); border-radius: 999px; }
.cartes-defile::-webkit-scrollbar-thumb:hover { background: var(--encre); }

.carte {
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.carte:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(29, 24, 21, 0.25);
}

.carte img { width: 100%; height: 220px; object-fit: cover; }
/* cartes coaching : format paysage bas, assez haut pour montrer tout le monde */
.cartes-coaching .carte img { height: auto; aspect-ratio: 3 / 2; }

.carte-corps { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }

.carte-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

/* hauteur de titre constante : les paragraphes et liens s'alignent d'une carte à l'autre */
.carte h3 { margin-bottom: 0.6rem; min-height: 2.4em; }

/* grille à lignes fixes (cartes avec tag) : le tag occupe une hauteur constante, donc tous les titres démarrent à la même hauteur */
.grille-cartes .carte-corps:has(> .carte-tag) { display: grid; grid-template-rows: 1.1rem auto 1fr auto; row-gap: 0.7rem; align-content: start; }
.grille-cartes .carte-corps:has(> .carte-tag) > .carte-tag { margin: 0; height: 1.1rem; line-height: 1.1rem; white-space: nowrap; overflow: hidden; align-self: start; }
.grille-cartes .carte-corps:has(> .carte-tag) > h3 { margin: 0; }
.grille-cartes .carte-corps:has(> .carte-tag) > p { margin: 0; }
.grille-cartes .carte-corps:has(> .carte-tag) > .lien-fleche { margin: 0; }

.carte p { color: var(--brun); font-size: 0.98rem; flex: 1; }

.lien-fleche {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--encre);
  text-decoration: none;
  margin-top: 1rem;
}

.lien-fleche::after { content: "\2192"; color: var(--orange); transition: transform var(--transition); }
.lien-fleche:hover::after { transform: translateX(5px); }

/* Cartes programmes (offre) */
.carte-programme { padding: clamp(2rem, 4vw, 3rem); }

.carte-programme ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--brun);
  font-size: 0.98rem;
}

.carte-programme li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-top: 1px solid var(--ligne);
}

.carte-programme li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.7rem;
  height: 1px;
  background: var(--orange);
}

/* Signature d'un billet d'actualité */
.signature {
  color: var(--brun);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--ligne);
  padding-top: 1rem;
  margin-top: 1.6rem;
}

/* Bandeau book d'offres */
.bandeau-book {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.bandeau-book h3 { margin-bottom: 0.4rem; }
.bandeau-book p { margin: 0; color: var(--brun); max-width: 38em; }

/* ---------- Témoignages ---------- */

.nuage-mots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1.2em;
  align-items: baseline;
  font-family: var(--font-display);
  color: var(--encre);
  max-width: 900px;
}

.nuage-mots span { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
.nuage-mots span:nth-child(2n) { color: var(--orange); font-style: italic; }
.nuage-mots span:nth-child(3n) { font-size: clamp(1.2rem, 2.4vw, 1.8rem); color: var(--brun); }

blockquote.citation {
  margin: 2.5rem 0 0;
  padding-left: 1.8rem;
  border-left: 2px solid var(--orange);
  max-width: 640px;
}

blockquote.citation p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.4;
}

blockquote.citation footer {
  font-size: 0.88rem;
  color: var(--brun);
  letter-spacing: 0.04em;
}

/* ---------- Équipe ---------- */

.grille-equipe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.membre { text-align: left; }

.membre img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.3rem;
}

.membre-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.3rem;
}

.membre h3 { margin-bottom: 0.5rem; }

.membre ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--brun);
  font-size: 0.95rem;
}

.membre li { padding: 0.28rem 0; }

.membre li strong { font-weight: 500; color: var(--encre); }

/* ---------- Boutique ---------- */

.produit {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.produit-visuel img {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(29, 24, 21, 0.35);
}

.produit .prix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  margin: 0.8rem 0 1.6rem;
}

/* ---------- Actualités ---------- */

.carte time {
  font-size: 0.8rem;
  color: var(--brun);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.4rem;
}

/* ---------- Formulaire ---------- */

.formulaire {
  display: grid;
  gap: 1.3rem;
}

.champ { display: grid; gap: 0.4rem; }

.champ label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.champ input,
.champ select,
.champ textarea {
  font-family: var(--font-texte);
  font-size: 1rem;
  font-weight: 400;
  color: var(--encre);
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: var(--radius);
  padding: 0.85em 1em;
  transition: border-color var(--transition);
}

.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.champ textarea { resize: vertical; min-height: 150px; }

.champs-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }

.note-formulaire { font-size: 0.85rem; color: var(--brun); }
.form-message {
  margin-top: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-message.succes {
  background: rgba(46, 110, 64, 0.12);
  color: #2c6a41;
  border: 1px solid rgba(46, 110, 64, 0.32);
}
.form-message.erreur {
  background: rgba(176, 58, 46, 0.10);
  color: #b03a2e;
  border: 1px solid rgba(176, 58, 46, 0.30);
}

/* ---------- Bloc contact ---------- */

.bloc-coordonnees {
  display: grid;
  gap: 1.6rem;
}

.coordonnee { border-top: 1px solid var(--ligne); padding-top: 1.2rem; }

.coordonnee .surtitre { margin-bottom: 0.4rem; }

.coordonnee a { color: var(--encre); text-decoration: none; }
.coordonnee a:hover { color: var(--orange); }

/* ---------- CTA final ---------- */

.cta-final { text-align: center; }

.cta-final h2 { max-width: 16em; margin-left: auto; margin-right: auto; }

.cta-final .btn { margin-top: 1.8rem; }

.cta-final .oiseau-cta {
  width: 78px;
  margin: 0 auto 1.6rem;
}

/* ---------- Pied de page ---------- */

.pied {
  background: var(--encre);
  color: #C9BFB2;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.95rem;
}

.pied-grille {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.pied-marque {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.28em;
  color: var(--ivoire);
  text-transform: uppercase;
}

.pied-marque small {
  display: block;
  font-family: var(--font-texte);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  margin-top: 0.4rem;
  color: #C9BFB2;
}

.pied h4 {
  font-family: var(--font-texte);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivoire);
  margin: 0 0 1rem;
}

.pied ul { margin: 0; padding: 0; list-style: none; }
.pied li { padding: 0.25rem 0; }
.pied a { color: #C9BFB2; text-decoration: none; transition: color var(--transition); }
.pied a:hover { color: var(--orange); }

.pied-bas {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ---------- Révélation au défilement ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .carte, .btn { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .deux-colonnes { grid-template-columns: 1fr; }
  .deux-colonnes.inverse > .colonne-image { order: 0; }
  .grille-stats { grid-template-columns: repeat(2, 1fr); }
  .produit { grid-template-columns: 1fr; }
  .produit-visuel { max-width: 340px; }
  .pied-grille { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .burger { display: block; }
  .nav-principale {
    position: fixed;
    inset: 69px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivoire);
    border-bottom: 1px solid var(--ligne);
    padding: 0.5rem 1.5rem 1.5rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-principale.ouverte { transform: none; }
  .nav-principale a { padding: 0.8rem 0; font-size: 1.05rem; width: 100%; }
  .nav-principale .btn { margin: 0.8rem 0 0; text-align: center; }
  .champs-duo { grid-template-columns: 1fr; }
  .ligne-vol { display: none; }
  .oiseau-heros { opacity: 0.3; animation: none; }
  .heros h1 br { display: none; }
}
