/* ============================================================
   story4 — Feuille de style (V3)
   Base V1 (téléphone vertical) + polish cinématographique
   ============================================================ */

:root {
  --bg:        #08080a;
  --bg-alt:    #0d0d10;
  --surface:   #131317;
  --surface-2: #1b1b20;
  --line:      rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.055);

  --text:      #f5f2ec;
  --muted:     #a8a39a;
  --muted-2:   #726e67;

  --gold:      #cba766;
  --gold-soft: #e2caa0;
  --gold-glow: rgba(203, 167, 102, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65; font-weight: 300; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Grain pellicule ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(4) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-4%,3%)} 50%{transform:translate(3%,-2%)} 75%{transform:translate(-2%,-3%)} 100%{transform:translate(2%,2%)} }

/* ---------- Typo utilitaire ---------- */
.eyebrow { font-size: 0.76rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 22px; }
.section__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.06; letter-spacing: -0.01em; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 32px; border-radius: 100px; font-size: 0.92rem; font-weight: 500; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease); }
.btn--primary { background: var(--gold); color: #1a1408; }
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-3px); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--lg { padding: 17px 42px; font-size: 1rem; }
.link { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.link:hover { border-color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .5s var(--ease), border-color .5s var(--ease); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.header__logo img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 38px; }
.nav__link { font-size: 0.9rem; color: var(--muted); font-weight: 400; letter-spacing: 0.02em; transition: color .3s var(--ease); position: relative; }
.nav__link:not(.nav__link--cta)::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--gold); transition:width .35s var(--ease); }
.nav__link:not(.nav__link--cta):hover { color: var(--text); }
.nav__link:not(.nav__link--cta):hover::after { width: 100%; }
.nav__link--cta { color:var(--text); border:1px solid var(--line); padding:10px 22px; border-radius:100px; transition:border-color .3s var(--ease), color .3s var(--ease); }
.nav__link--cta:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle { display: none; width: 42px; height: 42px; position: relative; z-index: 101; }
.nav-toggle span { position:absolute; left:10px; right:10px; height:1.5px; background:var(--text); transition:transform .35s var(--ease), opacity .25s var(--ease); }
.nav-toggle span:nth-child(1){top:15px} .nav-toggle span:nth-child(2){top:21px} .nav-toggle span:nth-child(3){top:27px}
.nav-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* ============================================================
   HERO (téléphone vertical)
   ============================================================ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__glow { position: absolute; top: -6%; right: -4%; width: 62vw; height: 62vw; max-width: 820px; max-height: 820px; background: radial-gradient(circle, var(--gold-glow) 0%, transparent 62%); filter: blur(18px); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 40px; align-items: center; position: relative; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.015em; margin-bottom: 22px; }
.hero__lead { color: var(--muted); font-size: 1.24rem; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__platforms { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted-2); }
.hero__platforms span { letter-spacing: 0.04em; }
.hero__platforms strong { color: var(--text); font-weight: 500; }
.hero__platforms i { color: var(--gold); font-style: normal; }

/* Composition de téléphones */
.hero__media { display: flex; justify-content: center; }
.hero__phones { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; min-height: 620px; }
.phone {
  position: relative; width: 330px; aspect-ratio: 9 / 16; border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #2b2b31, #101013);
  box-shadow: 0 44px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 2px rgba(255,255,255,0.03);
}
.phone--main { z-index: 3; }
.phone--back { position: absolute; z-index: 1; width: 232px; border-radius: 36px; box-shadow: 0 30px 70px rgba(0,0,0,0.6); }
.phone--back .phone__screen { border-radius: 26px; }
.phone--back::after { content:""; position:absolute; inset:0; border-radius: inherit; background: rgba(8,8,10,0.42); z-index: 5; }
.phone--back-left  { left: 2%;  top: 8%;  transform: rotate(-7deg); }
.phone--back-right { right: 2%; bottom: 6%; transform: rotate(6deg); z-index: 2; }
.reelui--mini { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.phone__notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 96px; height: 7px; border-radius: 100px; background: #000; z-index: 4; }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #000; }
.phone__screen video { width: 100%; height: 100%; object-fit: cover; }

/* Reel UI overlay */
.reelui { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.reelui__progress { position: absolute; top: 12px; left: 16px; right: 16px; height: 2.5px; border-radius: 4px; background: rgba(255,255,255,0.25); overflow: hidden; }
.reelui__progress span { display: block; height: 100%; width: 40%; background: #fff; border-radius: 4px; animation: reelbar 8s linear infinite; }
@keyframes reelbar { from { width: 0 } to { width: 100% } }
.reelui__top { position: absolute; top: 24px; left: 16px; }
.reelui__live { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.35); padding: 4px 9px; border-radius: 100px; backdrop-filter: blur(4px); }
.reelui__live::first-letter { color: var(--gold); }
.reelui__side { position: absolute; right: 12px; bottom: 74px; display: flex; flex-direction: column; gap: 20px; }
.reelui__icon { width: 26px; height: 26px; display: block; opacity: 0.92; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)); background-repeat: no-repeat; background-position: center; background-size: contain; }
.reelui__icon--heart { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.7l-1-1.1a5.5 5.5 0 0 0-7.8 7.8l1 1.1L12 21l7.8-7.5 1-1.1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E"); }
.reelui__icon--comment { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 9 9 0 0 1-4-.9L3 21l1.9-4a8.4 8.4 0 0 1-.9-4 8.4 8.4 0 0 1 8.4-8.4h.5A8.4 8.4 0 0 1 21 11.5z'/%3E%3C/svg%3E"); }
.reelui__icon--share { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E"); }
.reelui__caption { position: absolute; left: 16px; right: 56px; bottom: 22px; font-size: 0.72rem; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.7); line-height: 1.4; }
.reelui__caption strong { font-weight: 600; }

.phone__sound {
  position: absolute; bottom: 20px; right: 12px; z-index: 3; pointer-events: auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.3); color: #fff;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.phone__sound:hover { border-color: var(--gold); color: var(--gold); }
.phone__sound .ico-sound { display: none; }
.phone__sound.on .ico-sound { display: block; }
.phone__sound.on .ico-muted { display: none; }

/* ============================================================
   MARQUEE / AUDIENCE
   ============================================================ */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 32px 0; }
.marquee__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.marquee__label { font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.marquee__items { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-family: var(--serif); font-size: 1.4rem; color: var(--muted); }
.marquee__items .dot { color: var(--gold); font-size: 0.6rem; font-style: normal; }

/* ============================================================
   SECTIONS génériques
   ============================================================ */
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin-bottom: 62px; }
.section__intro { color: var(--muted); margin-top: 20px; font-size: 1.08rem; }

/* ============================================================
   RÉALISATIONS (reels vivants)
   ============================================================ */
/* ---------- Profil style Instagram ---------- */
.igp { max-width: 940px; margin: 0 auto; }
.igp__head { display: flex; align-items: center; gap: 52px; padding: 24px 10px 34px; }
.igp__avatar {
  width: 150px; height: 150px; flex-shrink: 0; border-radius: 50%; padding: 4px;
  background: conic-gradient(from 215deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
}
.igp__avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: contain;
  background: #0b0b0d; border: 4px solid var(--bg); padding: 30px;
}
.igp__info { flex: 1; min-width: 0; }
.igp__toprow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.igp__name { font-size: 1.4rem; font-weight: 400; letter-spacing: 0.01em; }
.igp__verified { display: inline-flex; color: #3897f0; margin-left: -6px; }
.igp__btn { display: inline-flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--text); border: 1px solid var(--line); padding: 8px 22px; border-radius: 9px; font-size: 0.9rem; font-weight: 600; transition: background .3s var(--ease), border-color .3s var(--ease); }
.igp__btn:hover { background: var(--surface); }
.igp__btn--primary { background: #3897f0; border-color: #3897f0; color: #fff; }
.igp__btn--primary:hover { background: #2b7fd4; }
.igp__stats { display: flex; gap: 40px; list-style: none; margin-bottom: 22px; }
.igp__stats li { color: var(--muted); font-size: 1rem; }
.igp__stats strong { color: var(--text); font-weight: 600; }
.igp__bio { font-size: 0.96rem; line-height: 1.65; color: var(--text); }
.igp__bio p { margin: 0; }
.igp__bio-name { font-weight: 600; margin-bottom: 2px; }
.igp__bio em { color: var(--gold-soft); font-style: normal; font-weight: 500; }

.igp__tabs { display: flex; justify-content: center; gap: 60px; border-top: 1px solid var(--line); }
.igp__tab { display: inline-flex; align-items: center; gap: 7px; padding: 18px 0; margin-top: -1px; border-top: 1px solid transparent; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.igp__tab.is-active { color: var(--text); border-top-color: var(--text); }

/* Grille de reels façon onglet Reels */
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 5px; }
.reel { position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: var(--surface); text-align: left; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.reel__media { position: absolute; inset: 0; }
.reel__media img, .reel__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__media video { opacity: 0; transition: opacity .5s var(--ease); }
.reel.playing .reel__media video { opacity: 1; }
.reel__media img { transition: transform .9s var(--ease); }
.reel::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.02) 44%, rgba(0,0,0,0.12) 100%); transition: opacity .5s var(--ease); }
.reel:hover { transform: translateY(-6px); box-shadow: 0 34px 70px rgba(0,0,0,0.55); }
.reel:hover .reel__media img { transform: scale(1.06); }

.reel__play { position: absolute; top: 50%; left: 50%; z-index: 2; transform: translate(-50%, -50%) scale(0.9); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.35); opacity: 0; transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.reel__play::before { content:""; position:absolute; top:50%; left:54%; transform:translate(-50%,-50%); border-style:solid; border-width:9px 0 9px 15px; border-color:transparent transparent transparent #fff; transition: border-color .3s var(--ease); }
.reel:hover .reel__play { opacity: 1; transform: translate(-50%,-50%) scale(1); background: var(--gold); border-color: var(--gold); }
.reel:hover .reel__play::before { border-left-color: #1a1408; }

/* Style onglet Reels : coins droits, survol discret, icône reel + vues */
.igp .reel { border-radius: 0; }
.igp .reel:hover { transform: none; box-shadow: none; z-index: 4; }
.igp .reel:hover .reel__media img { transform: scale(1.04); }
.reel__reel { position: absolute; top: 8px; right: 9px; z-index: 3; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.65)); pointer-events: none; }
.reel__views { position: absolute; left: 9px; bottom: 9px; z-index: 3; display: flex; align-items: center; gap: 5px; color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.7)); pointer-events: none; }
.reel__views svg { opacity: 0.95; }

/* Bouton son par reel (façon fil social) */
.reel__mute {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.42); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  backdrop-filter: blur(4px); cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.reel__mute:hover { transform: scale(1.08); border-color: var(--gold); color: var(--gold); }
.reel__mute .ico-sound { display: none; }
.reel__mute.on { background: var(--gold); border-color: var(--gold); color: #1a1408; }
.reel__mute.on .ico-sound { display: block; }
.reel__mute.on .ico-muted { display: none; }
.reel.sound { box-shadow: 0 0 0 2px var(--gold), 0 30px 60px rgba(0,0,0,0.5); }

.reel__meta { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.reel__tag { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; }
.reel__title { font-family: var(--serif); font-size: 1.4rem; color: #fff; line-height: 1.08; }

/* ============================================================
   SHOWREEL (vertical)
   ============================================================ */
.showreel { position: relative; padding: 120px 0; overflow: hidden; background: var(--bg-alt); }
.showreel__ambient { position: absolute; inset: 0; z-index: 0; }
.showreel__ambient video { width: 100%; height: 100%; object-fit: cover; filter: blur(38px) saturate(1.1); transform: scale(1.15); opacity: 0.32; }
.showreel::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to bottom, var(--bg-alt) 0%, rgba(13,13,16,0.72) 40%, rgba(13,13,16,0.85) 100%); }
.showreel__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.7fr; gap: 60px; align-items: center; }
.showreel__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.04; margin: 6px 0 18px; }
.showreel__lead { color: var(--muted); font-size: 1.06rem; max-width: 30em; }
.showreel__frame { position: relative; display: block; width: 100%; max-width: 320px; margin: 0 auto; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(0,0,0,0.6); }
.showreel__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.showreel__frame::after { content:""; position:absolute; inset:0; background: rgba(0,0,0,0.25); transition: background .4s var(--ease); }
.showreel__frame .reel__play { opacity: 1; transform: translate(-50%,-50%) scale(1); width: 74px; height: 74px; }
.showreel__frame:hover img { transform: scale(1.06); }
.showreel__frame:hover .reel__play { background: var(--gold); border-color: var(--gold); }
.showreel__frame:hover .reel__play::before { border-left-color: #1a1408; }

/* ============================================================
   SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 44px 42px; transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease); }
.card:hover { transform: translateY(-5px); border-color: var(--line); background: var(--surface-2); }
.card__num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 20px; }
.card__title { font-family: var(--serif); font-weight: 500; font-size: 1.75rem; margin-bottom: 14px; line-height: 1.14; }
.card__text { color: var(--muted); font-size: 1rem; }

/* ============================================================
   BANDE PHOTO (respiration)
   ============================================================ */
.photoband { position: relative; height: 58vh; min-height: 380px; overflow: hidden; }
.photoband__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 42%;
  filter: brightness(0.58) contrast(1.02) saturate(0.9);
  transform: scale(1.03);
}
.photoband::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(8,8,10,0.45) 20%, rgba(8,8,10,0.5) 80%, var(--bg) 100%),
    radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.5) 100%);
}

/* ============================================================
   ACCOMPAGNEMENT À L'ANNÉE (événements)
   ============================================================ */
.events__head { max-width: 720px; }
.events__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.events__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-top: 1px solid var(--line-soft);
  transition: border-color .4s var(--ease);
}
.events__item:hover { border-color: var(--line); }
.events__item:hover .events__num { color: var(--gold-soft); }
.events__num {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.04em;
  transition: color .3s var(--ease);
}
.events__label {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--text);
  font-weight: 400;
}
.events__note {
  margin-top: 44px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============================================================
   APPROCHE
   ============================================================ */
.approche__inner { display: grid; grid-template-columns: 1fr 0.8fr; gap: 66px; align-items: center; }
.approche__lead { font-family: var(--serif); font-size: 1.6rem; line-height: 1.4; color: var(--text); margin: 24px 0 18px; }
.approche__body { color: var(--muted); margin-bottom: 40px; }
.stats { display: flex; gap: 42px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat__label { font-size: 0.8rem; color: var(--muted-2); margin-top: 8px; max-width: 12em; }
.approche__frame { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/16; max-width: 340px; margin: 0 auto; box-shadow: 0 40px 80px rgba(0,0,0,0.5); border: 1px solid var(--line); cursor: pointer; }
.approche__frame img, .approche__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.approche__frame video { opacity: 0; transition: opacity .5s var(--ease); }
.approche__frame.playing video { opacity: 1; }
.approche__frame:hover .reel__play { opacity: 1; transform: translate(-50%,-50%) scale(1); background: var(--gold); border-color: var(--gold); }
.approche__frame:hover .reel__play::before { border-left-color: #1a1408; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { text-align: center; }
.contact__inner { max-width: 740px; margin: 0 auto; }
.contact__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin-bottom: 20px; }
.contact__lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 46px; }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; margin-bottom: 30px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field textarea { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .3s var(--ease), background .3s var(--ease); resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.contact__form .btn { grid-column: 1 / -1; justify-self: center; }
.contact__alt { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding: 58px 0 40px; background: var(--bg-alt); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px 40px; align-items: start; }
.footer__logo { height: 30px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted-2); font-size: 0.92rem; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; justify-self: end; }
.footer__nav a { color: var(--muted); font-size: 0.92rem; transition: color .3s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__copy { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); padding-top: 26px; color: var(--muted-2); font-size: 0.82rem; }

/* ============================================================
   LECTEUR STYLE INSTAGRAM REELS
   ============================================================ */
.ig { position: fixed; inset: 0; z-index: 200; background: rgba(4,4,6,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); padding: 20px; }
.ig.open { opacity: 1; visibility: visible; }

.ig__stage { position: relative; height: min(90vh, 860px); aspect-ratio: 9/16; max-width: 94vw; transform: scale(0.94); transition: transform .45s var(--ease); }
.ig.open .ig__stage { transform: scale(1); }

.ig__video-wrap { position: relative; width: 100%; height: 100%; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,0.65); cursor: pointer; }
.ig__video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Dégradés haut/bas pour lisibilité */
.ig__gradient { position: absolute; left: 0; right: 0; pointer-events: none; z-index: 1; }
.ig__gradient--top { top: 0; height: 130px; background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent); }
.ig__gradient--bottom { bottom: 0; height: 220px; background: linear-gradient(to top, rgba(0,0,0,0.72), transparent); }

/* Barre de progression */
.ig__progress { position: absolute; top: 10px; left: 12px; right: 12px; height: 3px; border-radius: 4px; background: rgba(255,255,255,0.3); z-index: 5; overflow: hidden; }
.ig__progress span { display: block; height: 100%; width: 0; background: #fff; border-radius: 4px; }

/* En-tête compte */
.ig__top { position: absolute; top: 22px; left: 14px; right: 14px; z-index: 4; display: flex; align-items: center; justify-content: space-between; }
.ig__user { display: flex; align-items: center; gap: 9px; }
.ig__avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; }
.ig__avatar img { width: 78%; height: 78%; object-fit: contain; }
.ig__name { color: #fff; font-size: 0.9rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.ig__dot { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.ig__follow { color: #fff; font-size: 0.82rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.7); padding: 4px 12px; border-radius: 8px; transition: background .3s var(--ease), color .3s var(--ease); }
.ig__follow:hover { background: #fff; color: #111; }
.ig__mute { width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,0.4); border: none; color: #fff; display: flex; align-items: center; justify-content: center; transition: color .3s var(--ease); }
.ig__mute:hover { color: var(--gold); }
.ig__mute .ico-sound { display: none; }
.ig__mute.on .ico-sound { display: block; }
.ig__mute.on .ico-muted { display: none; }

/* Lecture / pause central */
.ig__playpause { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8); z-index: 4; width: 84px; height: 84px; border-radius: 50%; background: rgba(0,0,0,0.42); backdrop-filter: blur(4px); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none; }
.ig__playpause .ico-play { margin-left: 4px; }
.ig.paused .ig__playpause { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Colonne d'actions */
.ig__actions { position: absolute; right: 12px; bottom: 96px; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.ig__act { width: 32px; height: 32px; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)); transition: transform .25s var(--ease), color .25s var(--ease); }
.ig__act:hover { transform: scale(1.12); }
.ig__act-ico { width: 30px; height: 30px; }
.ig__act.liked { color: #ff3040; }
.ig__act.liked .ig__act-ico { fill: #ff3040; stroke: #ff3040; }
.ig__act-more { color: #fff; letter-spacing: 1px; font-size: 0.8rem; transform: rotate(90deg); }

/* Légende */
.ig__caption { position: absolute; left: 16px; right: 62px; bottom: 22px; z-index: 4; color: #fff; }
.ig__caption-text { font-size: 0.9rem; line-height: 1.45; text-shadow: 0 1px 3px rgba(0,0,0,0.6); margin-bottom: 10px; }
.ig__caption-text strong { font-weight: 600; }
.ig__audio { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.92); }
.ig__audio svg { flex-shrink: 0; }
.ig__audio span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Fermer + navigation */
.ig__close { position: absolute; top: 22px; right: 26px; z-index: 10; width: 46px; height: 46px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; transition: color .3s var(--ease), background .3s var(--ease); }
.ig__close:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.ig__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 56px; height: 56px; border-radius: 50%; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.ig__nav:hover { background: var(--gold); color: #1a1408; border-color: var(--gold); }
.ig__nav--prev { left: max(20px, 4vw); }
.ig__nav--next { right: max(20px, 4vw); }

@media (max-width: 760px) {
  .ig { padding: 0; }
  .ig__stage { height: 100vh; height: 100svh; max-width: 100vw; width: 100vw; }
  .ig__video-wrap { border-radius: 0; }
  .ig__nav { width: 44px; height: 44px; background: rgba(0,0,0,0.35); }
  .ig__nav--prev { left: 8px; } .ig__nav--next { right: 8px; }
  .ig__close { top: 14px; right: 12px; }
  .ig__top { top: 16px; padding-right: 52px; } /* laisse la place au bouton fermer */
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } .grain { display: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .phone--back { width: 200px; }
  .phone--back-left { left: -2%; } .phone--back-right { right: -2%; }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .hero__phones { min-height: 0; }
  .phone--main { width: 270px; }
  .phone--back { display: none; }
  .approche__inner { grid-template-columns: 1fr; gap: 46px; }
  .approche__media { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .showreel__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .showreel__lead { margin: 0 auto; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: rgba(8,8,10,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s var(--ease); }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 14px 0; font-size: 1.4rem; font-family: var(--serif); }
  .nav__link--cta { border: none; color: var(--gold); }
  .nav-toggle { display: block; }

  .section, .showreel { padding: 84px 0; }
  .hero { padding: 130px 0 72px; }
  .reels { gap: 3px; margin-top: 3px; } /* 3 colonnes, façon Instagram */
  .reel__views { font-size: 0.72rem; }
  .reel__reel svg { width: 15px; height: 15px; }
  .contact__form { grid-template-columns: 1fr; }
  .stats { gap: 30px; }
  .events__list { grid-template-columns: 1fr; gap: 0; }
  .events__label { font-size: 1.2rem; }
  .events__item { padding: 18px 2px; }
  .photoband { height: 42vh; min-height: 280px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { justify-self: start; }

  /* Profil Instagram sur mobile */
  .igp__head { flex-direction: column; align-items: center; text-align: center; gap: 18px; padding: 8px 0 26px; }
  .igp__avatar { width: 96px; height: 96px; }
  .igp__avatar img { padding: 18px; }
  .igp__toprow { justify-content: center; gap: 12px; margin-bottom: 16px; }
  .igp__stats { gap: 26px; justify-content: center; margin-bottom: 16px; }
  .igp__bio { text-align: center; font-size: 0.9rem; }
  .igp__tabs { gap: 46px; }
}
@media (max-width: 420px) {
  .container { padding: 0 22px; }
  .marquee__items { font-size: 1.15rem; }
  .igp__stats { gap: 18px; font-size: 0.85rem; }
}
