/* =========================================================
   BLUME — styles spécifiques aux pages internes
   ========================================================= */

/* ---------- bandeau de tête commun ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(150px, 22vh, 240px);
  padding-bottom: clamp(60px, 9vh, 120px);
  background: radial-gradient(120% 120% at 80% 0%, #232325 0%, #161617 55%, #0e0e0f 100%);
  color: #fff; overflow: hidden;
}
.page-hero__waves {
  position: absolute; inset: 0; z-index: 1;
  background: url("../img/wave-1.png") right center/cover no-repeat;
  opacity: .4; will-change: transform;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); letter-spacing: -.02em; margin-top: 1.2rem; }
.page-hero h1 .accent { color: var(--blue); }
.page-hero p { margin-top: 1.4rem; font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.72); max-width: 620px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact__info .block { margin-bottom: 2.4rem; }
.contact__info h2, .contact__info h3 { font-family: var(--ff-display); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: .7rem; }
.contact__info p, .contact__info a { font-size: 1.05rem; color: var(--ink); line-height: 1.7; }
.contact__info a:hover { color: var(--blue); }
.contact__flags { display: flex; flex-direction: column; gap: .5rem; }

.contact__form-wrap {
  background: linear-gradient(155deg, #0f70b0, var(--blue-deep));
  border-radius: 24px; padding: clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(18,84,144,.6);
}
.contact__form-wrap::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.05) 0 1px, transparent 1px 26px);
  opacity: .5; pointer-events: none;
}
.contact__form-wrap::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  pointer-events: none;
}
.contact__form { position: relative; z-index: 2; display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: span 2; }
.field label { font-family: var(--ff-display); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: .5rem; }
.field input, .field textarea {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 12px; padding: .9rem 1rem; color: #fff; font-family: var(--ff-body); font-size: 1rem;
  transition: border-color .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.45); }
.field input:focus, .field textarea:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.contact__form .btn { grid-column: span 2; justify-self: start; background: #fff; color: var(--blue-deep); margin-top: .4rem; }
.contact__form .btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(0,0,0,.45); }
.form-note { grid-column: span 2; font-size: .82rem; color: rgba(255,255,255,.6); }
.form-status { grid-column: span 2; padding: .9rem 1.1rem; border-radius: 10px; font-size: .95rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(255,255,255,.16); color: #fff; }
.form-status.err { background: rgba(255,80,80,.2); color: #ffd5d5; }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .field--full, .contact__form .btn, .form-note, .form-status { grid-column: span 1; }
}

/* =========================================================
   L'AGENCE
   ========================================================= */
.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.story__text h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--ink); margin-bottom: 1.4rem; }
.story__text h2 .accent { color: var(--blue); }
.story__text p { color: #55555b; font-size: 1.05rem; margin-bottom: 1.1rem; }
.story__media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }

.values { background: var(--ink); color: #fff; }
.values__head { max-width: 720px; margin-bottom: 3rem; }
.values__head h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; margin-top: 1.2rem; }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.value-card { background: #232325; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 2.2rem; transition: transform .5s var(--ease), border-color .5s; }
.value-card:hover { transform: translateY(-8px); border-color: var(--blue); }
.value-card__icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(150deg,var(--blue),var(--blue-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; color: #fff; font-size: 1.3rem; margin-bottom: 1.4rem; }
.value-card h3 { font-size: 1.25rem; margin-bottom: .8rem; }
.value-card p { color: rgba(255,255,255,.66); font-size: .98rem; }

.locations { background: var(--paper); }
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.loc-card { background: #fff; border: 1px solid #e7e7ea; border-radius: 18px; padding: 2.4rem; transition: transform .5s var(--ease), box-shadow .5s; }
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(18,84,144,.4); }
.loc-card__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.loc-card__head .flag { width: 26px; height: 18px; }
.loc-card h3 { font-size: 1.4rem; color: var(--ink); margin: 0; }
.loc-card p { color: #55555b; }
.loc-card a { color: var(--blue); font-weight: 600; }

/* =========================================================
   PAGES SERVICES (Blume / Blue Core)
   ========================================================= */
.svc-intro { background: var(--paper); }
.svc-intro.svc-dark { background: var(--ink); }
.svc-intro__inner { max-width: 820px; }
.svc-intro h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--ink); margin-top:1.2rem; }
.svc-intro h2 .accent { color: var(--blue); }
.svc-intro p { color:#55555b; font-size: 1.1rem; margin-top: 1.2rem; }

.svc-list { background: var(--paper); padding-top: 0; }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; padding: clamp(2.5rem,5vw,4.5rem) 0; border-top: 1px solid #e3e3e8; }
.svc-row:nth-child(even) .svc-row__media { order: -1; }
.svc-row__media { border-radius: 18px; overflow: hidden; aspect-ratio: 16/11; position: relative; }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.svc-row__media:hover img { transform: scale(1.05); }
.svc-row__num { font-family: var(--ff-display); font-weight: 800; color: var(--blue); letter-spacing: .1em; }
.svc-row h3 { font-size: clamp(1.4rem,3vw,2rem); color: var(--ink); margin: .8rem 0 1rem; }
.svc-row p { color: #55555b; font-size: 1.05rem; }
.svc-row ul { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.svc-row li { font-family: var(--ff-display); font-size: .85rem; font-weight: 600; color: var(--blue-deep); background: rgba(0,124,193,.1); padding: .4rem .9rem; border-radius: 999px; }

.svc-dark { background: var(--ink); }
.svc-dark .svc-row { border-top-color: rgba(255,255,255,.1); }
.svc-dark .svc-row h3 { color: #fff; }
.svc-dark .svc-row p { color: rgba(255,255,255,.66); }
.svc-intro.svc-dark h2 { color: #fff; }
/* Tags (Conception, Montage...) : contraste lisible sur fond sombre */
.svc-dark .svc-row li {
  color: #eaf4fb;
  background: rgba(0,124,193,.28);
  border: 1px solid rgba(0,124,193,.5);
}

/* =========================================================
   RÉALISATIONS
   ========================================================= */
.work { background: var(--paper); }
.work__filters { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.5rem; }
.work__filters button { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; padding: .6rem 1.3rem; border-radius: 999px; border: 1.5px solid #d9d9df; color: #55555b; transition: all .3s; }
.work__filters button.active, .work__filters button:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.work__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.work-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work-card:hover img { transform: scale(1.07); }
.work-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,13,.92) 0%, rgba(11,11,13,.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem; opacity: 1; }
.work-card__tag { font-family: var(--ff-display); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.work-card h3 { color: #fff; font-size: 1.3rem; }
.work-card p { color: rgba(255,255,255,.75); font-size: .92rem; margin-top: .4rem; opacity: 0; max-height: 0; transition: opacity .4s, max-height .4s; }
.work-card:hover p { opacity: 1; max-height: 80px; }

@media (max-width: 860px) {
  .story__grid, .values__grid, .locations__grid, .svc-row, .work__grid { grid-template-columns: 1fr; }
  .values__grid { gap: 1rem; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
}

/* =========================================================
   PAGE PROJET (étude de cas)
   ========================================================= */
.proj-hero{position:relative;padding-top:clamp(160px,24vh,260px);padding-bottom:clamp(50px,8vh,100px);background:var(--ink);color:#fff;overflow:hidden}
.proj-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.35;z-index:1}
.proj-hero__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,15,16,.5),rgba(15,15,16,.92));z-index:2}
.proj-hero__inner{position:relative;z-index:3;max-width:880px}
.proj-back{display:inline-block;margin-bottom:1.6rem;font-family:var(--ff-display);font-size:.9rem;color:rgba(255,255,255,.7);transition:color .3s}
.proj-back:hover{color:var(--blue)}
.proj-hero__tag{display:inline-block;font-family:var(--ff-display);font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:1rem}
.proj-hero h1{color:#fff;font-size:clamp(2.2rem,5.5vw,4rem);letter-spacing:-.02em}
.proj-hero__intro{margin-top:1.4rem;font-size:clamp(1.05rem,2vw,1.3rem);color:rgba(255,255,255,.8);line-height:1.6}
.proj-meta{margin-top:2.4rem;display:flex;gap:2.5rem;flex-wrap:wrap}
.proj-meta__item{display:flex;flex-direction:column;gap:.2rem}
.proj-meta__item span{font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.5)}
.proj-meta__item strong{font-family:var(--ff-display);font-size:1.1rem;color:#fff}

.proj-sections{background:var(--paper)}
.proj-section{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center;margin-bottom:clamp(3rem,7vw,6rem)}
.proj-section:last-child{margin-bottom:0}
.proj-section--reverse .proj-section__media{order:2}
.proj-section__media{border-radius:16px;overflow:hidden}
.proj-section__media img{width:100%;height:100%;object-fit:cover}
.proj-section__text h2{font-size:clamp(1.5rem,3vw,2.2rem);color:var(--ink);margin-bottom:1.2rem}
.proj-section__body{font-size:1.05rem;line-height:1.75;color:#4a4a50;white-space:pre-line}
.proj-section:only-child,.proj-section:not(:has(.proj-section__media)){grid-template-columns:1fr;max-width:760px;margin-inline:auto}

.proj-gallery{background:#fff}
.proj-gallery__grid{margin-top:2.5rem;display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.4rem}
.proj-gallery__item{border-radius:14px;overflow:hidden;position:relative}
.proj-gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.proj-gallery__item:hover img{transform:scale(1.04)}
.proj-gallery__item figcaption{padding:.8rem 1rem;font-size:.88rem;color:#55555b;background:var(--paper)}

@media(max-width:820px){
  .proj-section{grid-template-columns:1fr;gap:1.5rem}
  .proj-section--reverse .proj-section__media{order:0}
}

/* lien "voir le projet" sur les vignettes réalisations */
.work-card__more{display:inline-block;margin-top:.8rem;font-family:var(--ff-display);font-weight:600;font-size:.85rem;color:#fff;opacity:0;transform:translateX(-8px);transition:opacity .4s var(--ease),transform .4s var(--ease)}
.work-card:hover .work-card__more{opacity:1;transform:translateX(0)}

/* =========================================================
   PAGES LÉGALES
   ========================================================= */
.legal{padding-top:clamp(140px,20vh,200px);padding-bottom:clamp(50px,8vh,90px);background:var(--paper)}
.legal__container{max-width:820px}
.legal__back{display:inline-block;margin-bottom:1.4rem;font-family:var(--ff-display);font-size:.9rem;color:var(--grey);transition:color .3s}
.legal__back:hover{color:var(--blue)}
.legal h1{font-size:clamp(2rem,5vw,3rem);color:var(--ink);margin-bottom:.6rem}
.legal__updated{color:var(--grey);font-size:.88rem;margin-bottom:2.5rem}
.legal__content{font-size:1rem;line-height:1.75;color:#3f3f45}
.legal__content h2{font-family:var(--ff-display);font-size:1.4rem;color:var(--ink);margin:2.2rem 0 .8rem}
.legal__content h3{font-family:var(--ff-display);font-size:1.1rem;color:var(--ink);margin:1.6rem 0 .6rem}
.legal__content p{margin-bottom:1rem}
.legal__content ul{margin:0 0 1.2rem 1.2rem;display:flex;flex-direction:column;gap:.4rem}
.legal__content li{list-style:disc}
.legal__content a{color:var(--blue);text-decoration:underline}
.legal__content strong{color:var(--ink)}

/* =========================================================
   ÉCRANS LED (Blue Core)
   ========================================================= */
.led{background:var(--ink);color:#fff}
.led__head{max-width:760px;margin-bottom:3rem}
.led__head h2{color:#fff;font-size:clamp(1.8rem,4vw,2.8rem)}
.led__lead{margin-top:1.2rem;color:rgba(255,255,255,.75);font-size:1.05rem;line-height:1.7}
.led__versions{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;margin-bottom:3rem}
.led-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;overflow:hidden;transition:transform .4s var(--ease),border-color .4s}
.led-card:hover{transform:translateY(-6px);border-color:var(--blue)}
.led-card--featured{border-color:rgba(0,124,193,.4)}
.led-card__visual{aspect-ratio:16/9;position:relative;display:flex;align-items:flex-end;padding:1.2rem;overflow:hidden}
.led-card__visual--standard{background:linear-gradient(135deg,#123,#0a2540 60%,#007CC1)}
.led-card__visual--textured{background:
  repeating-linear-gradient(115deg,rgba(255,255,255,.06) 0 2px,transparent 2px 9px),
  radial-gradient(circle at 30% 20%,#0a4a7a,#061a2e 70%)}
.led-card__visual::after{content:"";position:absolute;inset:0;
  background:repeating-linear-gradient(0deg,rgba(255,255,255,.04) 0 1px,transparent 1px 4px),
  repeating-linear-gradient(90deg,rgba(255,255,255,.04) 0 1px,transparent 1px 4px);
  mix-blend-mode:overlay;pointer-events:none}
.led-card__pitch{position:relative;z-index:2;font-family:var(--ff-display);font-weight:700;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;background:rgba(0,0,0,.4);color:#fff;padding:.3rem .8rem;border-radius:99px;backdrop-filter:blur(4px)}
.led-card__body{padding:1.8rem}
.led-card__body h3{font-family:var(--ff-display);font-size:1.35rem;color:#fff;margin-bottom:.7rem;display:flex;align-items:center;gap:.7rem;flex-wrap:wrap}
.led-card__badge{font-size:.68rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;background:var(--blue);color:#fff;padding:.25rem .7rem;border-radius:99px}
.led-card__body>p{color:rgba(255,255,255,.72);line-height:1.65;margin-bottom:1.2rem}
.led-card__feat{display:flex;flex-direction:column;gap:.6rem}
.led-card__feat li{position:relative;padding-left:1.6rem;color:rgba(255,255,255,.85);font-size:.94rem}
.led-card__feat li::before{content:"";position:absolute;left:0;top:.45em;width:8px;height:8px;border-radius:2px;background:var(--blue)}

.led__offers{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem;margin-bottom:2.5rem}
.led-offer{background:rgba(255,255,255,.03);border-radius:16px;padding:1.8rem;border-left:3px solid var(--blue)}
.led-offer h4{font-family:var(--ff-display);font-size:1.2rem;color:#fff;margin-bottom:.7rem}
.led-offer p{color:rgba(255,255,255,.7);line-height:1.6;margin-bottom:1rem}
.led-offer ul{display:flex;flex-direction:column;gap:.4rem}
.led-offer li{color:rgba(255,255,255,.82);font-size:.9rem;padding-left:1.2rem;position:relative}
.led-offer li::before{content:"→";position:absolute;left:0;color:var(--blue)}
.led__cta{text-align:center;padding:2rem;background:linear-gradient(135deg,rgba(0,124,193,.15),transparent);border-radius:18px}
.led__cta p{color:rgba(255,255,255,.85);margin-bottom:1.4rem;font-size:1.05rem}

/* =========================================================
   OFFRES / TARIFS (Blume)
   ========================================================= */
.offers{background:var(--paper)}
.offers__head{max-width:720px;margin:0 auto 3rem;text-align:center}
.offers__lead{margin-top:1.2rem;color:var(--grey);font-size:1.05rem;line-height:1.7}
.offers__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;align-items:stretch}
.offer-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:2rem;display:flex;flex-direction:column;position:relative;transition:transform .4s var(--ease),box-shadow .4s}
.offer-card:hover{transform:translateY(-6px);box-shadow:0 30px 60px -30px rgba(18,84,144,.4)}
.offer-card--featured{border-color:var(--blue);box-shadow:0 20px 50px -28px rgba(0,124,193,.5)}
.offer-card__flag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--blue);color:#fff;font-family:var(--ff-display);font-weight:700;font-size:.72rem;letter-spacing:.05em;text-transform:uppercase;padding:.35rem 1rem;border-radius:99px;white-space:nowrap}
.offer-card__top{border-bottom:1px solid var(--line);padding-bottom:1.4rem;margin-bottom:1.4rem}
.offer-card__top h3{font-family:var(--ff-display);font-size:1.4rem;color:var(--ink);margin-bottom:.5rem}
.offer-card__desc{color:var(--grey);font-size:.92rem;line-height:1.5;margin-bottom:1.2rem;min-height:2.7em}
.offer-card__price{font-family:var(--ff-display);font-weight:800;font-size:1.9rem;color:var(--blue)}
.offer-card__price span{display:block;font-size:.78rem;font-weight:500;color:var(--grey);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.1rem}
.offer-card__list{flex:1;display:flex;flex-direction:column;gap:.7rem;margin-bottom:1.6rem}
.offer-card__list li{position:relative;padding-left:1.7rem;font-size:.94rem;color:#4a4a50;line-height:1.4}
.offer-card__list li::before{content:"✓";position:absolute;left:0;color:var(--blue);font-weight:700}
.offer-card__btn{display:block;text-align:center;padding:.85rem;border-radius:99px;font-family:var(--ff-display);font-weight:600;font-size:.92rem;border:2px solid var(--ink);color:var(--ink);transition:all .25s}
.offer-card__btn:hover{background:var(--ink);color:#fff}
.offer-card__btn--primary{background:var(--blue);border-color:var(--blue);color:#fff}
.offer-card__btn--primary:hover{background:#0069a5;border-color:#0069a5}
.offers__note{text-align:center;margin-top:2.5rem;color:var(--grey);font-size:1rem}
.offers__note a{color:var(--blue);text-decoration:underline}

@media(max-width:860px){
  .led__versions,.led__offers{grid-template-columns:1fr}
  .offers__grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .offer-card--featured{order:-1}
}

/* Sélecteur de devise (offres) */
.currency-switch{display:inline-flex;gap:.4rem;margin-top:1.6rem;padding:.35rem;background:#fff;border:1px solid var(--line);border-radius:99px}
.currency-switch__btn{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1.1rem;border-radius:99px;font-family:var(--ff-display);font-weight:600;font-size:.9rem;color:var(--grey);transition:all .25s}
.currency-switch__btn:hover{color:var(--ink)}
.currency-switch__btn.is-active{background:var(--blue);color:#fff}
.currency-switch__btn .flag{width:20px;height:14px}

/* =========================================================
   POPUP ÉCRANS LED
   ========================================================= */
.led-card__more{margin-top:1.2rem;background:none;border:none;color:var(--blue);font-family:var(--ff-display);font-weight:600;font-size:.92rem;cursor:pointer;padding:0;transition:gap .3s;display:inline-flex;align-items:center;gap:.3rem}
.led-card__more:hover{gap:.6rem;color:#4db6ec}

.led-overlay{position:fixed;inset:0;z-index:10002;display:none;align-items:center;justify-content:center;padding:clamp(1rem,4vw,3rem);background:rgba(10,10,12,.8);backdrop-filter:blur(6px)}
.led-overlay.is-open{display:flex;animation:led-fade .3s ease}
@keyframes led-fade{from{opacity:0}to{opacity:1}}
.led-overlay__box{position:relative;background:var(--ink);border:1px solid rgba(255,255,255,.12);border-radius:20px;max-width:960px;width:100%;max-height:90vh;overflow-y:auto;color:#fff}
.led-overlay__close{position:absolute;top:1rem;right:1rem;z-index:3;width:42px;height:42px;border-radius:50%;border:none;background:rgba(255,255,255,.1);color:#fff;font-size:1.6rem;line-height:1;cursor:pointer;transition:background .25s}
.led-overlay__close:hover{background:rgba(255,255,255,.22)}

.led-modal{display:grid;grid-template-columns:1.1fr 1fr;gap:0}
.led-modal__media{background:#0a0a0b;padding:1.5rem}
.led-modal__video{position:relative;aspect-ratio:16/9;border-radius:12px;overflow:hidden;margin-bottom:1rem;background:#000}
.led-modal__video iframe,.led-modal__video video{position:absolute;inset:0;width:100%;height:100%;border:0}
.led-modal__video .consent-block{position:absolute;inset:0;margin:0;border-radius:12px;background:#111}
.led-modal__gallery{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.led-modal__gallery figure{border-radius:10px;overflow:hidden;margin:0;background:#0e0e0f}
.led-modal__gallery img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.led-modal__gallery figcaption{font-size:.75rem;color:rgba(255,255,255,.6);padding:.4rem .6rem}

.led-modal__info{padding:2.2rem}
.led-modal__eyebrow{font-family:var(--ff-display);font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue)}
.led-modal__info h3{font-family:var(--ff-display);font-size:1.6rem;margin:.6rem 0 1rem;color:#fff;display:flex;align-items:center;gap:.7rem;flex-wrap:wrap}
.led-modal__text{color:rgba(255,255,255,.78);line-height:1.7;margin-bottom:1.4rem}
.led-modal__feat{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.8rem}
.led-modal__feat li{position:relative;padding-left:1.6rem;color:rgba(255,255,255,.88);font-size:.94rem}
.led-modal__feat li::before{content:"";position:absolute;left:0;top:.45em;width:8px;height:8px;border-radius:2px;background:var(--blue)}

@media(max-width:760px){
  .led-modal{grid-template-columns:1fr}
  .led-modal__gallery{grid-template-columns:1fr 1fr}
}

/* Sections répétables dans la popup LED */
.led-modal__section{margin:1.6rem 0;padding-top:1.4rem;border-top:1px solid var(--line)}
.led-modal__section img{width:100%;border-radius:12px;margin-bottom:.9rem}
.led-modal__section h4{font-family:var(--ff-display);font-size:1.1rem;color:var(--ink);margin-bottom:.5rem}
.led-modal__section p{color:#55555b;line-height:1.6}

/* Vidéo dans "Notre histoire" (agence) */
.story__video{width:100%;height:100%;border-radius:18px;display:block;object-fit:cover;background:var(--ink)}

/* --- Liens dans le contenu des réalisations (SEO + lisibilité) --- */
.proj-section__body a,
.proj-hero__intro a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s;
}
.proj-section__body a:hover,
.proj-hero__intro a:hover { color: #125490; }
.proj-section__body h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 1.6rem 0 .6rem;
}
.proj-section__body strong { color: var(--ink); }

/* Lien vers le site du client, dans le bloc méta */
.proj-meta__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color .25s, color .25s;
}
.proj-meta__link:hover { color: var(--blue); border-color: var(--blue); }
.proj-meta__link span { font-size: .8em; opacity: .7; }
