/* ==========================================================================
   MKO ENTERTAINMENT — Feuille de style globale
   Charte : Onyx #121317 · Or #C7A14E · Ivoire #F5F0E6 · Cuivre #B66A3B
   Typo   : Bricolage Grotesque (titres) · Hanken Grotesk (corps) · Caveat (slogan)
   Ambiance : « salle de concert sold-out sous les lumières dorées »
   ========================================================================== */

/* ---------- 1. Tokens / variables ---------------------------------------- */
:root {
  /* Couleurs charte */
  --onyx:        #121317;   /* fond principal */
  --onyx-deep:   #0C0D10;   /* fond plus profond (footer, sections sombres) */
  --panel:       #181A20;   /* panneaux / cartes */
  --panel-2:     #1F222A;   /* cartes survol / champs */
  --graphite:    #23252B;   /* bordures, séparateurs */
  --or:          #C7A14E;   /* accent / signature */
  --or-clair:    #E3C887;   /* or clair (hover, focus) */
  --ivoire:      #F5F0E6;   /* texte sur fond foncé */
  --cuivre:      #B66A3B;   /* accent chaud secondaire */
  --fumee:       #8A857C;   /* texte secondaire */
  --fumee-fonce: #5C5953;   /* texte tertiaire / légendes */

  /* Voiles & lumières (halos de projecteur — ambiance scène) */
  --halo-or:     rgba(199, 161, 78, .14);
  --halo-cuivre: rgba(182, 106, 59, .12);
  --ligne:       rgba(245, 240, 230, .08);   /* filets discrets */
  --ligne-or:    rgba(199, 161, 78, .28);

  /* Typographie */
  --f-titre:  "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --f-corps:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --f-main:   "Caveat", cursive;            /* slogan manuscrit */

  /* Échelle / rythme */
  --max:       1240px;     /* largeur de contenu max */
  --gutter:    clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 130px);
  --radius:    16px;
  --radius-sm: 10px;

  /* Transitions */
  --t-rapide: .2s ease;
  --t-doux:   .45s cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset léger ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-corps);
  background: var(--onyx);
  color: var(--ivoire);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* Sélection */
::selection { background: var(--or); color: var(--onyx); }

/* Focus clavier visible (accessibilité) */
:focus-visible {
  outline: 2px solid var(--or-clair);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Utilitaires ----------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Lien d'évitement (skip link) */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--or); color: var(--onyx); padding: 10px 18px;
  border-radius: 8px; font-weight: 700; transition: top var(--t-rapide);
}
.skip-link:focus { top: 16px; }

/* ---------- 4. Typographie ----------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--f-titre); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }

.eyebrow {
  font-family: var(--f-corps);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  flex-wrap: wrap;
  max-width: 100%;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--ligne-or);
}
.eyebrow.is-centered { justify-content: center; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-top: 18px;
  max-width: 16ch;
}
.section-title.is-centered { margin-inline: auto; }

.lead { color: var(--fumee); font-size: 1.06rem; max-width: 60ch; }
.lead.is-centered { margin-inline: auto; }

/* Slogan manuscrit signature */
.signature {
  font-family: var(--f-main);
  color: var(--or);
  font-weight: 600;
  line-height: 1;
}

/* ---------- 5. Boutons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform var(--t-rapide), background var(--t-rapide),
              color var(--t-rapide), border-color var(--t-rapide), box-shadow var(--t-rapide);
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--or {
  background: var(--or); color: var(--onyx);
  box-shadow: 0 8px 30px -10px rgba(199, 161, 78, .5);
}
.btn--or:hover { background: var(--or-clair); box-shadow: 0 12px 38px -8px rgba(199, 161, 78, .6); }

.btn--ghost {
  border-color: var(--graphite); color: var(--ivoire); background: rgba(245, 240, 230, .02);
}
.btn--ghost:hover { border-color: var(--or); color: var(--or); }

.btn .arrow { transition: transform var(--t-rapide); }
.btn:hover .arrow { transform: translateX(3px); }

/* Lien fléché simple */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; color: var(--or); font-size: .95rem;
}
.link-arrow .arrow { transition: transform var(--t-rapide); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- 6. En-tête / navigation -------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t-doux), border-color var(--t-doux), backdrop-filter var(--t-doux);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(12, 13, 16, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--ligne);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.nav__logo img { height: 30px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: .95rem; font-weight: 600; color: var(--ivoire);
  position: relative; padding: 6px 0; transition: color var(--t-rapide);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--or); transition: width var(--t-rapide);
}
.nav__links a:hover { color: var(--or); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--or); }

.nav__cta { display: flex; align-items: center; gap: 14px; }

/* Burger mobile */
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--ivoire);
  transition: transform var(--t-rapide), opacity var(--t-rapide);
}
.nav__burger span::before { transform: translateY(-7px); }
.nav__burger span::after  { transform: translateY(5px); }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { transform: rotate(45deg); }
.nav.is-open .nav__burger span::after  { transform: rotate(-45deg) translateY(-1px); }

/* ---------- 7. Hero ------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 78px; overflow: hidden; isolation: isolate;
}
/* Halos de projecteur — ambiance scène (lumière, pas de dégradé typographique) */
.hero__lights { position: absolute; inset: 0; z-index: -1; }
.hero__lights::before, .hero__lights::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero__lights::before {
  width: 60vw; height: 60vw; top: -18vw; right: -10vw;
  background: radial-gradient(circle, var(--halo-or), transparent 65%);
}
.hero__lights::after {
  width: 45vw; height: 45vw; bottom: -16vw; left: -8vw;
  background: radial-gradient(circle, var(--halo-cuivre), transparent 65%);
}
/* Grain léger + vignette */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(12,13,16,.65) 100%);
}

.hero__inner { display: grid; gap: 28px; max-width: 880px; padding-block: 60px; }
.hero__inner > * { min-width: 0; }   /* évite que l'image/le texte ne forcent la grille à dépasser sur mobile */
.hero__wordmark { width: min(560px, 82%); height: auto; }
.hero__signature { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-top: -6px; }
.hero__pitch { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ivoire); max-width: 48ch; opacity: .92; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fumee);
}
.hero__scroll .dot {
  width: 22px; height: 36px; border: 1px solid var(--graphite); border-radius: 12px;
  position: relative;
}
.hero__scroll .dot::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--or);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 8px); } }

/* ---------- 8. Bande de statistiques ------------------------------------- */
.stats {
  border-block: 1px solid var(--ligne); background: var(--onyx-deep);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--ligne);
}
.stat { background: var(--onyx-deep); padding: clamp(28px, 4vw, 46px) 20px; text-align: center; }
.stat__num { font-family: var(--f-titre); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--or); line-height: 1; }
.stat__label { color: var(--fumee); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 10px; }

/* ---------- 9. Pôles / services ------------------------------------------ */
.poles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.pole {
  position: relative; background: var(--panel); border: 1px solid var(--graphite);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 38px);
  overflow: hidden; transition: transform var(--t-doux), border-color var(--t-doux);
}
.pole::before { /* halo au survol */
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--t-doux);
  background: radial-gradient(80% 60% at 80% 0%, var(--halo-or), transparent 70%);
}
.pole:hover { transform: translateY(-6px); border-color: var(--ligne-or); }
.pole:hover::before { opacity: 1; }
.pole__icon {
  width: 56px; height: 56px; display: grid; place-items: center; color: var(--or);
  border: 1px solid var(--ligne-or); border-radius: 14px; margin-bottom: 22px;
  background: rgba(199,161,78,.06);
}
.pole__icon svg { width: 30px; height: 30px; }
.pole__num { position: absolute; top: 26px; right: 30px; font-family: var(--f-titre); font-weight: 800; color: var(--graphite); font-size: 2.4rem; }
.pole h3 { font-size: 1.45rem; margin-bottom: 12px; }
.pole p { color: var(--fumee); font-size: .98rem; }
.pole__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  font-size: .74rem; letter-spacing: .06em; color: var(--ivoire);
  border: 1px solid var(--graphite); border-radius: 999px; padding: 5px 12px; opacity: .85;
}

/* ---------- 10. Réalisations (cartes) ------------------------------------ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.realisations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.real-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--graphite); aspect-ratio: 4 / 5; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--t-doux), border-color var(--t-doux);
}
.real-card:hover { transform: translateY(-6px); border-color: var(--ligne-or); }
/* Placeholder visuel élégant (à remplacer par une photo) */
.media-ph {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(199,161,78,.22), transparent 60%),
    linear-gradient(160deg, #211a12, #14151a 70%);
}
.media-ph::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,240,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,230,.05) 1px, transparent 1px);
  background-size: 28px 28px; mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
}
.real-card__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,13,16,.92) 12%, transparent 62%); }
.real-card__body { padding: 24px; }
.real-card__loc { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--or); display: inline-flex; align-items: center; gap: 6px; }
.real-card__loc svg { width: 14px; height: 14px; }
.real-card h3 { font-size: 1.5rem; margin-top: 10px; }
.real-card__year { color: var(--fumee); font-size: .9rem; margin-top: 4px; }
.real-card__tag-ph {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(12,13,16,.6); border: 1px solid var(--ligne); color: var(--fumee);
  padding: 5px 10px; border-radius: 6px; backdrop-filter: blur(4px);
}

/* ---------- 11. Vidéos --------------------------------------------------- */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--graphite); aspect-ratio: 16 / 10; isolation: isolate;
  display: flex; align-items: flex-end; transition: transform var(--t-doux), border-color var(--t-doux);
}
.video-card:hover { transform: translateY(-4px); border-color: var(--ligne-or); }
.video-card__play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; z-index: 2;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(199,161,78,.92); color: var(--onyx);
  transition: transform var(--t-rapide), background var(--t-rapide);
}
.video-card:hover .video-card__play { transform: scale(1.08); background: var(--or-clair); }
.video-card__play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card__body { position: relative; z-index: 1; padding: 20px; width: 100%; }
.video-card__body .veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,13,16,.9), transparent 90%); }
.video-card__kind { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--or); }
.video-card h3 { font-size: 1.15rem; margin-top: 6px; font-weight: 800; }

/* Lecteur intégré (ratio responsive) */
.embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--graphite); background: var(--panel); }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 12. À propos / teaser ---------------------------------------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__portrait {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--graphite);
}
.about__portrait .media-ph { z-index: 0; }
.about__portrait .label {
  position: absolute; inset: auto 0 0 0; padding: 20px; z-index: 1;
  background: linear-gradient(0deg, rgba(12,13,16,.9), transparent);
  font-size: .8rem; color: var(--fumee); letter-spacing: .08em;
}
.about blockquote {
  font-family: var(--f-titre); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2; margin: 24px 0; letter-spacing: -.02em;
}
.about blockquote .or { color: var(--or); }

/* ---------- 13. Bandeau CTA contact -------------------------------------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; border-radius: clamp(20px, 3vw, 32px); }
.cta-band__inner { background: var(--panel); border: 1px solid var(--ligne-or); padding: clamp(40px, 6vw, 80px); text-align: center; position: relative; overflow: hidden; }
.cta-band__inner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 120% at 50% -10%, var(--halo-or), transparent 60%);
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--fumee); margin-top: 16px; max-width: 52ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; margin-top: 30px; }

/* ---------- 14. Newsletter ----------------------------------------------- */
.newsletter { border: 1px solid var(--graphite); border-radius: var(--radius); padding: clamp(30px, 4vw, 50px); background: var(--panel); }
.newsletter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.newsletter h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.newsletter p { color: var(--fumee); margin-top: 10px; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 220px; background: var(--onyx); border: 1px solid var(--graphite);
  border-radius: 999px; padding: 14px 20px; color: var(--ivoire); font: inherit;
}
.news-form input::placeholder { color: var(--fumee-fonce); }
.news-form input:focus { border-color: var(--or); outline: none; }

/* ---------- 15. Formulaires (contact) ------------------------------------ */
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 8px; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; letter-spacing: .06em; color: var(--ivoire); font-weight: 600; }
.field label .req { color: var(--cuivre); }
.field input, .field select, .field textarea {
  background: var(--onyx); border: 1px solid var(--graphite); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--ivoire); font: inherit; width: 100%; transition: border-color var(--t-rapide);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--or); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--fumee-fonce); }

/* ---------- 16. Filtres (réalisations) ----------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.filter {
  border: 1px solid var(--graphite); border-radius: 999px; padding: 9px 18px;
  font-size: .88rem; font-weight: 600; color: var(--fumee); transition: all var(--t-rapide);
}
.filter:hover { color: var(--ivoire); border-color: var(--fumee); }
.filter.is-active { background: var(--or); color: var(--onyx); border-color: var(--or); }

/* ---------- 17. Bloc de page (titre de page secondaire) ------------------ */
.page-head { position: relative; padding-top: calc(78px + var(--section-y)); padding-bottom: var(--section-y); overflow: hidden; isolation: isolate; }
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 100% at 80% -10%, var(--halo-or), transparent 60%);
}
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 18ch; }
.page-head .lead { margin-top: 20px; }

/* ---------- 18. Timeline (à propos) -------------------------------------- */
.timeline { margin-top: 52px; border-left: 1px solid var(--graphite); padding-left: 0; }
.tl-item { position: relative; padding: 0 0 40px 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -6px; top: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--or); box-shadow: 0 0 0 4px rgba(199,161,78,.18);
}
.tl-item__year { font-family: var(--f-titre); font-weight: 800; color: var(--or); font-size: 1.1rem; }
.tl-item h3 { font-size: 1.2rem; margin: 4px 0 6px; }
.tl-item p { color: var(--fumee); font-size: .96rem; }

/* ---------- 18b. Lightbox vidéo ------------------------------------------ */
.video-modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: var(--gutter);
  background: rgba(8, 9, 11, .9); backdrop-filter: blur(6px);
}
.video-modal.is-open { display: flex; }
.video-modal__dialog { width: min(960px, 100%); position: relative; }
.video-modal__frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ligne-or); background: var(--panel); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__ph { position: absolute; inset: 0; display: grid; place-content: center; gap: 8px; text-align: center; padding: 24px; }
.video-modal__ph strong { font-family: var(--f-titre); font-size: 1.4rem; }
.video-modal__ph span { color: var(--fumee); font-size: .9rem; }
.video-modal__close {
  position: absolute; top: -52px; right: 0; width: 44px; height: 44px;
  display: grid; place-items: center; border: 1px solid var(--graphite);
  border-radius: 12px; color: var(--ivoire); background: rgba(12,13,16,.6); transition: all var(--t-rapide);
}
.video-modal__close:hover { color: var(--or); border-color: var(--ligne-or); }
.video-modal__close svg { width: 20px; height: 20px; }

/* Note de retour formulaire / newsletter */
.note { margin-top: 14px; font-size: .92rem; color: var(--or); }

/* ---------- 19. Pied de page --------------------------------------------- */
.site-footer { background: var(--onyx-deep); border-top: 1px solid var(--ligne); padding-top: clamp(56px, 7vw, 90px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand img { height: 30px; margin-bottom: 18px; }
.footer__brand p { color: var(--fumee); font-size: .95rem; max-width: 34ch; }
.footer__brand .signature { font-size: 1.7rem; margin-top: 14px; display: block; }
.footer col, .footer__col h4 { }
.footer__col h4 { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--or); margin-bottom: 18px; }
.footer__col a, .footer__col li { color: var(--fumee); font-size: .95rem; padding: 5px 0; display: block; transition: color var(--t-rapide); }
.footer__col a:hover { color: var(--or); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; color: var(--ivoire);
  border: 1px solid var(--graphite); border-radius: 12px; transition: all var(--t-rapide);
}
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { color: var(--or); border-color: var(--ligne-or); transform: translateY(-3px); }
.footer__bottom {
  margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--ligne);
  padding-block: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: var(--fumee-fonce);
}
.footer__bottom a:hover { color: var(--or); }

/* ---------- 20. Contenu légal (prose) ------------------------------------ */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--ivoire); }
.prose p, .prose li { color: var(--fumee); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose a { color: var(--or); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 21. Animations reveal au scroll ------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll .dot::after { animation: none; }
  .btn, .pole, .real-card, .video-card { transition: none; }
}

/* ---------- 22. Responsive ----------------------------------------------- */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .realisations, .videos { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__portrait { max-width: 420px; }
  .newsletter__grid, .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  /* Menu mobile déroulant */
  .nav__links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; background: rgba(12,13,16,.97);
    backdrop-filter: blur(14px); border-bottom: 1px solid var(--ligne);
    padding: 8px var(--gutter) 22px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--t-rapide), transform var(--t-rapide);
  }
  .nav.is-open .nav__links { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--ligne); font-size: 1.05rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .poles { grid-template-columns: 1fr; }
  .realisations, .videos { grid-template-columns: 1fr; }
  .hero__wordmark { width: 90%; }
  .hero { min-height: 92svh; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
}
