
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette claire — blanc / crème / noir */
  --bg:        #faf8f4;   /* fond clair (sections) */
  --bg-alt:    #ffffff;   /* blanc pur (blocs) */
  --ink:       #16161a;   /* noir encre (texte) */
  --muted:     #56565b;   /* gris foncé (texte secondaire) */
  --muted-soft:#7c7c82;   /* gris clair (eyebrows / labels) */
  --rule:      rgba(22,22,26,0.10);  /* filets / bordures */

  /* Tokens « sur fond sombre » (hero uniquement) */
  --dark:      #0c0c0d;   /* noir profond (hero) */
  --on-dark:   #f5f5f4;   /* texte clair sur le hero */

  --accent:      #3a4a3c;   /* vert forêt profond (accents, survols) */
  --accent-soft: #4f6450;   /* vert un peu plus clair */

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SECTION HEADINGS (partagés) ===== */
.section__eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section__eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section__title em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 4rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

/* Voile sombre en haut du hero pour la lisibilité du menu */
.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: -50px;
  background: linear-gradient(to bottom, rgba(12,12,13,0.70), rgba(12,12,13,0));
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: -1;
}

.nav.scrolled {
  background: rgba(250,248,244,0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.2rem 4rem;
  box-shadow: 0 1px 0 var(--rule);
}
.nav.scrolled::before { opacity: 0; }

.nav__logo {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  transition: color 0.4s, text-shadow 0.4s;
}
.nav.scrolled .nav__logo { color: var(--ink); text-shadow: none; }

.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0,0,0,0.55);
  transition: color 0.2s, opacity 0.2s, text-shadow 0.4s;
}
.nav__links a:hover { color: var(--accent); opacity: 1; }

.nav.scrolled .nav__links a { color: var(--ink); text-shadow: none; }
.nav.scrolled .nav__links a:hover { color: var(--accent); opacity: 1; }

/* Bouton hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
  transition: transform 0.35s, opacity 0.3s, background 0.3s;
}
.nav.scrolled .nav__toggle span,
.nav.open .nav__toggle span { background: var(--ink); box-shadow: none; }

.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2.2rem;
    padding: 5rem 2.5rem;
    background: var(--bg);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    z-index: 110;
  }
  .nav.open .nav__links { transform: translateX(0); }

  .nav__links a,
  .nav.scrolled .nav__links a {
    color: var(--ink);
    text-shadow: none;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,13,0.30) 0%,
    rgba(12,12,13,0.45) 55%,
    rgba(12,12,13,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-top: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
  font-weight: 400;
}

.hero__name {
  font-size: clamp(2.6rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero__name .accent { font-weight: 500; }

/* Effet lumineux mot par mot au survol */
.hero__name .word,
.hero__tagline .word {
  display: inline-block;
  cursor: default;
  color: var(--on-dark);
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}
.hero__name .word:hover,
.hero__tagline .word:hover {
  color: #fff;
  text-shadow:
    0 0 12px rgba(255,255,255,0.9),
    0 0 28px rgba(255,255,255,0.7),
    0 0 55px rgba(255,255,255,0.45);
}
.hero__name .word:hover { transform: translateY(-2px); }

.hero__cta {
  display: inline-block;
  margin-top: 2.8rem;
  padding: 0.9rem 2.6rem;
  border: 1px solid rgba(245,245,244,0.5);
  border-radius: 2px;
  color: var(--on-dark);
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.hero__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
  cursor: pointer;
}

.hero__scroll-label {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero__scroll-chevron {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.85);
  animation: chevronBounce 1.8s 2s infinite ease-in-out;
}

@keyframes chevronBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.85; }
  50%       { transform: translateY(7px); opacity: 1; }
}

/* ===== À PROPOS — bandeau immersif ===== */
.about--band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;          /* texte en bas */
  justify-content: center;        /* texte centré horizontalement */
  min-height: 92vh;
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 4.5rem;
}

.about__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 9%;    /* tête haute : visage et cou bien dégagés */
  z-index: 0;
}
.about__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* léger vignettage : bords un peu assombris */
    radial-gradient(130% 100% at 50% 42%, rgba(0,0,0,0) 58%, rgba(0,0,0,0.38) 100%),
    /* fondu noir en haut (transition depuis le hero) + voile bas pour le texte */
    linear-gradient(to bottom,
      rgba(10,12,10,0.80) 0%,
      rgba(10,12,10,0) 6%,
      rgba(10,12,10,0) 38%,
      rgba(10,12,10,0.55) 56%,
      rgba(10,12,10,0.94) 100%);
}

/* Le texte s'illumine au survol de la section */
.about__band .section__eyebrow,
.about__band .section__title,
.about__band .about__body p,
.about__band .about__cta {
  transition: text-shadow 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.about--band:hover .section__eyebrow { color: #fff; }
.about--band:hover .section__title {
  text-shadow: 0 0 24px rgba(255,243,224,0.55), 0 0 8px rgba(255,243,224,0.45);
}
.about--band:hover .about__body p {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45), 0 0 16px rgba(255,243,224,0.5);
}
.about--band:hover .about__cta {
  border-color: rgba(255,243,224,0.9);
  text-shadow: 0 0 12px rgba(255,243,224,0.5);
}

.about__band {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  text-align: center;
}
.about__band .section__eyebrow { justify-content: center; margin-bottom: 0.8rem; }
.about__band .section__title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 1.2rem;
}
.about__band .section__title,
.about__band .section__title em { color: var(--on-dark); }
.about__band .section__eyebrow { color: rgba(245,245,244,0.8); }
.about__band .section__eyebrow::before { background: rgba(245,245,244,0.6); }

.about__body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(245,245,244,0.82);   /* sobre par défaut */
  font-weight: 400;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.about__body strong { font-weight: 600; color: rgba(255,255,255,0.95); }

.about__cta {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(245,245,244,0.5);
  border-radius: 2px;
  color: var(--on-dark);
  text-decoration: none;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.about__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 900px) {
  .about--band {
    min-height: 0;
    padding: 5.5rem 2rem;
    align-items: flex-end;
  }
  .about__band { margin-left: 0; max-width: 100%; }
  /* voile plus uniforme pour la lisibilité sur mobile */
  .about__veil {
    background: linear-gradient(to bottom,
      rgba(10,12,10,0.45) 0%,
      rgba(10,12,10,0.85) 100%);
  }
}

/* ===== GALERIE PHOTO (mosaïque) ===== */
.galerie {
  background: var(--bg-alt);
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
}

.galerie__header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: center;
}
.galerie__header .section__eyebrow { justify-content: center; }

.galerie__mosaic {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.galerie__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  /* largeur & hauteur calculées en JS */
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* la boîte a déjà le bon ratio → pas de recadrage */
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}
.galerie__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12,12,13,0);
  transition: background 0.4s ease;
}
.galerie__item:hover img { transform: scale(1.04); }
.galerie__item:hover::after { background: rgba(12,12,13,0.18); }

@media (max-width: 900px) {
  .galerie { padding: 6rem 2rem; }
}
@media (max-width: 600px) {
  .galerie__mosaic { gap: 6px; }
}

/* ===== VIDÉOS (fond coucher de soleil + dégradé noir) ===== */
.videos {
  position: relative;
  padding: 8rem 4rem;
  background-image:
    linear-gradient(to bottom,
      rgba(250,248,244,0.82) 0%,
      rgba(250,248,244,0.66) 35%,
      rgba(250,248,244,0.64) 70%,
      rgba(250,248,244,0.84) 100%),
    url('img/fond-videos.jpg?v=2');
  background-size: cover;
  background-position: center;
}
.videos > * { position: relative; z-index: 1; }

.videos__header { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.videos__header .section__eyebrow { justify-content: center; }
.videos__lead {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}

/* Vidéo vedette en pleine largeur (bord à bord) */
.videos__featured {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.videos__featured .video-lite { border-radius: 0; }
.videos__featured .video-lite::after { background: rgba(0,0,0,0); }
.videos__featured .video-lite:hover::after { background: rgba(0,0,0,0.18); }

/* La miniature se fond dans l'arrière-plan (haut + bas) — fondu par masque.
   Quand la vidéo est lancée, on retire le masque pour un rendu net. */
.videos__featured .video-lite {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 9%, #000 78%, transparent 100%);
}
.videos__featured .video-lite.is-playing {
  -webkit-mask-image: none;
          mask-image: none;
}

/* Lecteur léger (miniature -> iframe au clic) */
.video-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #111;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.video-lite::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.video-lite:hover::after { background: rgba(0,0,0,0.30); }
.video-lite.is-playing { cursor: default; }
.video-lite.is-playing::after { display: none; }
.video-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.video-lite:hover .video-play { transform: scale(1.08); }

.video-lite--empty {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(22,22,26,0.03);
  border: 1px dashed var(--rule);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.video-lite--empty small { color: var(--muted-soft); }

/* Carrousel de shorts (vertical) */
.videos__shorts { max-width: 1100px; margin: 3.5rem auto 0; }
.videos__shorts-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.videos__shorts-title {
  font-size: 0;
}
.yt-shorts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ff0000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem 0.3rem 0.55rem;
  border-radius: 999px;
  line-height: 1;
}
.yt-shorts-badge__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.videos__arrows { display: flex; gap: 0.8rem; }
.videos__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.videos__arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.videos__arrow.prev:hover { transform: translateX(-2px); }
.videos__arrow:not(.prev):hover { transform: translateX(2px); }

.videos__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.videos__viewport::-webkit-scrollbar { display: none; }
.videos__viewport.grabbing { cursor: grabbing; }

.videos__track { display: flex; gap: 14px; padding: 2px 0; }

.video-short {
  flex: 0 0 auto;
  width: 210px;
  aspect-ratio: 9 / 16;
  background-color: #111;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.video-short.video-lite--empty {
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,22,26,0.03);
  border: 1px dashed var(--rule);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-short iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.videos__cta-wrap { text-align: center; margin-top: 3.2rem; }


@media (max-width: 900px) {
  .videos { padding: 5rem 1.5rem 6rem; }
}
@media (max-width: 600px) {
  .video-short { width: 160px; }
}

/* ===== EXPOSITION ===== */
.expo {
  padding: 6rem 0;
  background: var(--bg);
}
.expo__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}
.expo__visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.18);
}
.expo__visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.expo__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.6s ease;
  pointer-events: none;
}
.expo__visual:hover img {
  transform: scale(1.06);
}
.expo__visual:hover::after {
  background: rgba(0,0,0,0.18);
}
.expo__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.expo__content { display: flex; flex-direction: column; gap: 1.4rem; }
.expo__dates {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.expo__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}
.expo__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.4rem;
}
.expo__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.expo__meta-item svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .expo__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .expo__visual { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .expo { padding: 4rem 0; }
  .expo__visual { max-width: 280px; }
}

/* ===== INSTAGRAM (section verte) ===== */
.insta {
  background: var(--accent);
  padding: 7rem 4rem 8rem;
}

/* Textes clairs sur fond vert */
.insta .section__eyebrow { color: rgba(245,245,244,0.75); }
.insta .section__eyebrow::before { background: rgba(245,245,244,0.6); }
.insta .section__title,
.insta .section__title em { color: var(--on-dark); }

.insta__header {
  max-width: 1100px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.insta__header .section__eyebrow { justify-content: center; }

.insta__handle {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-decoration: none;
  color: var(--on-dark);
  border-bottom: 1px solid rgba(245,245,244,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.insta__handle:hover { color: #fff; border-color: #fff; }

/* Grille type Instagram */
.insta__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.insta__tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  text-decoration: none;
}

.insta__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.insta__tile:hover img { transform: scale(1.05); }

/* Badge Reel (vidéos), toujours visible en haut à droite */
.insta__reel {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* Survol : logo Instagram */
.insta__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,12,13,0);
  opacity: 0;
  transition: background 0.35s ease, opacity 0.35s ease;
}
.insta__tile:hover .insta__overlay { background: rgba(12,12,13,0.45); opacity: 1; }

.insta__ig {
  color: #fff;
  transform: scale(0.7);
  transition: transform 0.35s ease;
}
.insta__tile:hover .insta__ig { transform: scale(1); }

.insta__cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.2rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Bouton sur la section verte */
.insta .btn-outline {
  border-color: rgba(245,245,244,0.4);
  color: var(--on-dark);
}
.insta .btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
}

.btn-outline__ig,
.btn-outline__yt { flex-shrink: 0; }
.btn-outline__arrow { transition: transform 0.3s; }
.btn-outline:hover .btn-outline__arrow { transform: translateX(4px); }

/* ===== BLOG ===== */
.blog {
  background: var(--bg);
  padding: 7rem 4rem 5rem;
  border-top: 1px solid var(--rule);
}
.blog__header {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  position: relative;
  text-align: center;
}
.blog__header-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.blog__header a {
  text-decoration: none;
  color: inherit;
}
.blog__eyebrow { color: var(--accent-soft); }

/* Flèches carrousel blog */
.blog__arrows {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 2rem;
  bottom: 0;
}
.blog__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.blog__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Viewport + track scrollable */
.blog__viewport {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 2rem 1.5rem;
  cursor: grab;
}
.blog__viewport::-webkit-scrollbar { display: none; }
.blog__viewport.grabbing { cursor: grabbing; }

.blog__track {
  display: flex;
  gap: 20px;
  padding-right: 2rem;
}

/* Carte en mode carrousel */
.blog__card {
  flex-shrink: 0;
  width: 340px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  border: 1px solid var(--rule);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}

.blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(22,22,26,0.14);
}

/* Photo en haut */
.blog__card-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.blog__card:hover .blog__card-img { transform: scale(1.05); }

/* Numéro en haut à droite sur la photo */
.blog__card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(10,12,10,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Texte sur fond blanc */
.blog__card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.blog__card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.blog__card-date {
  font-size: 0.72rem;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
}
.blog__card-title {
  font-family: var(--font-main);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 0.15rem;
}
.blog__card-excerpt {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.8rem;
  transition: gap 0.3s;
}
.blog__card:hover .blog__card-link { gap: 10px; }

.blog__cta-wrap { text-align: center; margin-top: 3rem; }
.blog__btn { border-color: var(--ink); color: var(--ink); }

@media (max-width: 900px) {
  .blog { padding: 5rem 0 4rem; }
  .blog__header { padding: 0 2rem; }
  .blog__card { width: 280px; }
}
@media (max-width: 600px) {
  .blog__card { width: 260px; }
  .blog__card-excerpt { display: none; }
}

/* ===== TIRAGES D'ART ===== */
.tirages {
  background: #0e1410;
  padding: 7rem 0;
  overflow: hidden;
}
.tirages__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.tirages__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 100px -25px rgba(0,0,0,0.7);
}
.tirages__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.tirages__visual:hover img { transform: scale(1.05); }
.tirages__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.tirages__content { display: flex; flex-direction: column; }
.tirages__eyebrow { color: rgba(245,245,244,0.55); }
.tirages__eyebrow::before { background: rgba(245,245,244,0.35); }
.tirages__title {
  color: var(--on-dark);
  margin-top: 1rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.tirages__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(245,245,244,0.6);
}
.tirages__text {
  margin-top: 1.8rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,245,244,0.58);
  max-width: 44ch;
}
.tirages__legende {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,245,244,0.35);
  font-style: italic;
}
.tirages__legende:empty { display: none; }
.tirages__btn {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(245,245,244,0.3);
  border-radius: 2px;
  color: var(--on-dark);
  text-decoration: none;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  align-self: flex-start;
}
.tirages__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .tirages__inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 2rem; }
  .tirages__visual img { aspect-ratio: auto; object-fit: contain; }
  .tirages__text { max-width: 100%; }
}
@media (max-width: 600px) {
  .tirages { padding: 5rem 0; }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 8rem 4rem;
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #000;
  font-weight: 500;
  margin: 2rem 0 2.5rem;
  max-width: 40ch;
}

/* Deux pitches (tirages + missions) */
.contact__pitches {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 2rem 0 0.5rem;
}
.contact__pitch {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.contact__pitch:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px -8px rgba(58,74,60,0.14);
  transform: translateY(-2px);
}
.contact__pitch-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58,74,60,0.07);
  border-radius: 8px;
  color: var(--accent);
}
.contact__pitch-body { display: flex; flex-direction: column; gap: 0.3rem; }
.contact__pitch-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.contact__pitch-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

.contact__info a {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  font-style: normal;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.contact__info a:hover { color: var(--accent); border-color: var(--accent); }

/* Signature (photo + nom) dans la section contact */
.contact__signature {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-bottom: 1.8rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}
.contact__photo-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.35);
}
.contact__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.25);
  transform-origin: center 20%;
}
.contact__sign-text { display: flex; flex-direction: column; }
.contact__sign-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.contact__sign-role {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 500;
}

/* ===== FORMULAIRE (style 2026, champs remplis) ===== */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__honeypot { display: none !important; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form__group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: none;
  box-shadow: 0 1px 2px rgba(22,22,26,0.03);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(22,22,26,0.38);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,74,60,0.12);
}

/* Flèche personnalisée du menu déroulant */
.form__group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356565b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}

.form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, background 0.25s;
  margin-top: 0.6rem;
  box-shadow: 0 10px 24px -12px rgba(58,74,60,0.6);
}

.form__submit:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(58,74,60,0.7);
}

.btn__icon { font-size: 1.1rem; transition: transform 0.3s; }
.form__submit:hover .btn__icon { transform: translateX(4px); }

/* ===== FOOTER (vert) ===== */
.footer {
  background: var(--accent);
  color: var(--on-dark);
  padding: 4rem 4rem 0;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__logo {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer__nav a:hover { opacity: 0.7; }

.footer__social {
  display: flex;
  gap: 0.8rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245,245,244,0.3);
  border-radius: 50%;
  color: var(--on-dark);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer__social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(245,245,244,0.15);
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.footer__bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__bottom a:hover { color: #fff; }

@media (max-width: 700px) {
  .footer { padding: 3rem 2rem 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.8rem; text-align: left; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.96);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  transform: scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.lightbox.open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.lightbox__close:hover { opacity: 1; color: var(--accent); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.lightbox__nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lightbox__nav.prev { left: 24px; }
.lightbox__nav.next { right: 24px; }

@media (max-width: 600px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav.prev { left: 12px; }
  .lightbox__nav.next { right: 12px; }
  .lightbox__close { top: 16px; right: 18px; }
}

/* ===== LIGHTBOX SHORT YOUTUBE ===== */
.short-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.96);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.short-modal.open { display: flex; opacity: 1; }

.short-modal__frame {
  width: min(360px, 88vw);
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.short-modal.open .short-modal__frame { transform: scale(1); }
.short-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.short-modal__close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.short-modal__close:hover { opacity: 1; }

@media (max-width: 600px) {
  .short-modal__frame { width: min(300px, 88vw); }
  .short-modal__close { top: 16px; right: 18px; }
}

/* ===== BOUTON INSTAGRAM FLOTTANT ===== */
/* ===== BOUTON YOUTUBE FLOTTANT ===== */
.youtube-float {
  position: fixed;
  bottom: 100px;
  right: 96px;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: #FF0000;
  box-shadow: 0 12px 30px -10px rgba(255,0,0,0.5),
              0 4px 12px -4px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.youtube-float svg { width: 26px; height: 26px; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.youtube-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(255,0,0,0.7),
              0 6px 18px -4px rgba(0,0,0,0.25);
}
.youtube-float:hover svg { transform: scale(1.1); }
.youtube-float:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 600px) {
  .youtube-float { bottom: 84px; right: 78px; width: 48px; height: 48px; }
  .youtube-float svg { width: 22px; height: 22px; }
}

/* ===== BOUTON INSTAGRAM FLOTTANT ===== */
.insta-float {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 12px 30px -10px rgba(220,39,67,0.55),
              0 4px 12px -4px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.insta-float svg { width: 26px; height: 26px; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.insta-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(220,39,67,0.7),
              0 6px 18px -4px rgba(0,0,0,0.25);
}
.insta-float:hover svg { transform: rotate(-8deg) scale(1.08); }
.insta-float:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 600px) {
  .insta-float { bottom: 84px; right: 20px; width: 48px; height: 48px; }
  .insta-float svg { width: 23px; height: 23px; }
}

/* ===== BOUTON WHATSAPP FLOTTANT ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.55),
              0 4px 12px -4px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.whatsapp-btn:hover {
  background: #1ebd5b;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -10px rgba(37,211,102,0.7),
              0 6px 18px -4px rgba(0,0,0,0.25);
}

.whatsapp-btn:hover svg { transform: rotate(-8deg) scale(1.08); }
.whatsapp-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 600px) {
  .whatsapp-btn { bottom: 20px; right: 20px; padding: 14px; gap: 0; }
  .whatsapp-btn .whatsapp-label { display: none; }
}

/* ===== REVEAL AU DÉFILEMENT ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Apparition décalée des vignettes */
.insta__tile.reveal { transition-delay: calc(var(--i, 0) * 60ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 1.5rem 2rem; }
  .nav.scrolled { padding: 1rem 2rem; }
  .nav__links { gap: 1.5rem; }
  .insta { padding: 5rem 1.5rem 6rem; }
  .contact { padding: 6rem 2rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 4rem; }
  .contact__text { max-width: 100%; }
  .footer { padding: 2rem; }
}

@media (max-width: 600px) {
  .insta__grid { gap: 3px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__name { font-size: clamp(2.4rem, 13vw, 4rem); }
}

/* ===== PAGE DE REMERCIEMENT ===== */
.merci {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  padding: 3rem 1.5rem;
  text-align: center;
}
.merci__inner { max-width: 540px; }
.merci__check {
  color: #fff;
  margin: 0 auto 1.8rem;
  display: inline-flex;
  animation: merciPop 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.merci .section__eyebrow {
  justify-content: center;
  color: rgba(255,255,255,0.75);
}
.merci .section__eyebrow::before { background: rgba(255,255,255,0.6); }
.merci__title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.merci__title em {
  font-style: normal;
  font-weight: 600;
}
.merci__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.merci__text strong { color: #fff; font-weight: 600; }
.merci__btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.merci__btn:hover { background: #fff; color: var(--accent); }

@keyframes merciPop {
  0% { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}
