/* ==========================================================================
   BUNEC — Feuille de style principale (partagée par toutes les pages)
   ========================================================================== */

:root{
  --black:#0a0d12;
  --near-black:#101418;
  --panel:#151a21;
  --red:#FC3D21;
  --blue:#0B3D91;
  --line:rgba(255,255,255,.12);
  --text:#E8ECF1;
  --muted:#9AA5B1;
  --white:#ffffff;
  --cm-green:#007A33;
  --cm-red:#CE1126;
  --cm-yellow:#FCD116;
  --header-h:78px;
  --util-h:34px;
  --ease:cubic-bezier(.16,.84,.44,1);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--black);
  color:var(--text);
  font-family:'Inter', sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
body.no-scroll{overflow:hidden; height:100%;}
h1,h2,h3,h4,.eyebrow,.nav a,.btn,.tag{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1200px; margin:0 auto; padding:0 24px;}
.tricolor{height:4px; width:100%; background:linear-gradient(90deg, var(--cm-green) 0 33.33%, var(--cm-red) 33.33% 66.66%, var(--cm-yellow) 66.66% 100%);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- loaders ---------- */
.loader{
  position:fixed; inset:0; z-index:99999;
  background:var(--black);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:22px;
  transition:opacity .55s var(--ease), visibility .55s var(--ease);
}
.loader.is-hidden{opacity:0; visibility:hidden; pointer-events:none;}

/* Home loader — style "Gmail" : logo puis barre de progression */
.loader-logo{
  width:64px; height:64px; border-radius:50%;
  object-fit:cover;
  opacity:0; transform:scale(.8);
  animation:loaderLogoIn .6s var(--ease) forwards;
  box-shadow:0 0 0 1px var(--line);
}
.loader-word{
  font-family:'Oswald'; font-weight:700; letter-spacing:.14em; font-size:13px;
  color:var(--muted); opacity:0; animation:loaderLogoIn .6s var(--ease) .15s forwards;
}
@keyframes loaderLogoIn{ to{ opacity:1; transform:scale(1);} }
.loader-progress-track{
  width:180px; height:3px; border-radius:3px; background:rgba(255,255,255,.1);
  overflow:hidden; opacity:0; animation:loaderTrackIn .5s var(--ease) .35s forwards;
}
@keyframes loaderTrackIn{ to{opacity:1;} }
.loader-progress-bar{
  height:100%; width:0%; border-radius:3px;
  background:linear-gradient(90deg, var(--cm-green), var(--cm-red), var(--cm-yellow));
  transition:width .45s ease-out;
}

/* Loader "simple / pulse" pour les pages secondaires */
.loader.page-loader{gap:16px;}
.pulse-loader{
  width:52px; height:52px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.pulse-loader::before, .pulse-loader::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid var(--red);
  animation:pulseRing 2.6s ease-out infinite;
  opacity:0;
}
.pulse-loader::after{animation-delay:.8s;}
.pulse-loader span{width:10px; height:10px; border-radius:50%; background:var(--red); animation:pulseDot 1.2s ease-in-out infinite;}
@keyframes pulseRing{
  0%{transform:scale(.6); opacity:.7;}
  100%{transform:scale(1.9); opacity:0;}
}
@keyframes pulseDot{
  0%,100%{transform:scale(.85); opacity:.7;}
  50%{transform:scale(1.15); opacity:1;}
}

/* ---------- reveal on scroll (parallax-style entrance) ---------- */
.reveal{opacity:0; transform:translateY(38px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in-view{opacity:1; transform:translateY(0);}
.reveal-stagger.in-view > *{transition-delay:calc(var(--i,0) * 90ms);}

/* ---------- top utility bar ---------- */
.util-bar{background:#000; border-bottom:1px solid var(--line); font-size:12px;}
.util-bar .wrap{display:flex; justify-content:space-between; align-items:center; height:var(--util-h); color:var(--muted);}
.util-bar a{color:var(--muted); margin-left:18px;}
.util-bar a:hover{color:var(--white);}

/* ---------- header / nav ---------- */
header.main{background:var(--near-black); position:sticky; top:0; z-index:500;}
.header-inner{display:flex; align-items:center; gap:22px; height:var(--header-h);}
.brand{display:flex; align-items:center; gap:14px; margin-right:6px;}
.brand img{width:46px; height:46px; border-radius:50%; flex-shrink:0;}
.brand-text{line-height:1.1;}
.brand-text .b1{font-family:'Oswald'; font-weight:700; font-size:20px; letter-spacing:.06em;}
.brand-text .b2{font-size:11px; color:var(--muted); letter-spacing:.02em; text-transform:none; font-family:'Inter';}

/* ---------- search (nav moderne, à gauche) ---------- */
.nav-search{display:flex; align-items:center; flex-shrink:0;}
.nav-search form{display:flex; align-items:center; background:rgba(255,255,255,.05); border:1px solid var(--line); border-radius:999px; height:40px; padding:0 6px 0 14px; transition:.25s var(--ease), width .25s var(--ease);}
.nav-search form:focus-within, .nav-search form.is-open{border-color:rgba(255,255,255,.35); background:rgba(255,255,255,.08);}
.search-icon{width:16px; height:16px; color:var(--muted); flex-shrink:0;}
.nav-search input{
  width:0; opacity:0; border:none; background:transparent; color:var(--text);
  font-family:'Inter'; font-size:13px; padding:0; margin-left:0;
  transition:width .3s var(--ease), opacity .2s var(--ease), margin-left .3s var(--ease);
}
.nav-search form.is-open input{width:170px; opacity:1; margin-left:10px;}
.search-toggle{width:28px; height:28px; border:none; background:transparent; color:var(--muted); cursor:pointer; display:flex; align-items:center; justify-content:center; border-radius:50%; flex-shrink:0;}
.search-toggle:hover{color:var(--white);}

nav.nav{display:flex; gap:2px; margin-left:auto;}
nav.nav a{
  font-size:13px; font-weight:600; padding:28px 16px;
  border-bottom:2px solid transparent;
  color:var(--text);
  white-space:nowrap;
}
nav.nav a:hover, nav.nav a.active{border-bottom-color:var(--red); color:var(--white);}

.mobile-nav-search{margin-bottom:18px;}
.mobile-nav-search form{display:flex; align-items:center; background:rgba(255,255,255,.06); border:1px solid var(--line); border-radius:999px; height:46px; padding:0 18px; gap:10px;}
.mobile-nav-search input{flex:1; border:none; background:transparent; color:var(--text); font-family:'Inter'; font-size:15px;}
.mobile-nav-search .search-icon{width:18px; height:18px; color:var(--muted); flex-shrink:0;}

.burger{
  display:none; margin-left:auto; width:42px; height:42px; border:1px solid var(--line); background:transparent;
  cursor:pointer; position:relative; flex-shrink:0;
}
.burger span, .burger span::before, .burger span::after{
  content:""; position:absolute; left:50%; top:50%; width:20px; height:2px; background:var(--white);
  transform:translate(-50%,-50%); transition:.25s var(--ease);
}
.burger span::before{transform:translateY(-7px);}
.burger span::after{transform:translateY(7px);}
.burger.is-open span{background:transparent;}
.burger.is-open span::before{transform:translateY(0) rotate(45deg);}
.burger.is-open span::after{transform:translateY(0) rotate(-45deg);}

.mobile-nav{
  position:fixed; inset:0; top:0; z-index:600;
  background:rgba(5,7,9,.98);
  display:flex; flex-direction:column;
  padding:110px 28px 40px;
  transform:translateY(-100%);
  transition:transform .45s var(--ease);
}
.mobile-nav.is-open{transform:translateY(0);}
.mobile-nav a{
  font-family:'Oswald'; font-size:22px; font-weight:600; padding:16px 0;
  border-bottom:1px solid var(--line); color:var(--text);
}
.mobile-nav a.active{color:var(--red);}
.mobile-nav-close{
  position:absolute; top:24px; right:24px; width:42px; height:42px; border:1px solid var(--line);
  background:transparent; cursor:pointer;
}

/* ---------- hero (home) — carrousel style NBA.com ---------- */
.hero{
  position:relative; overflow:hidden;
  min-height:640px;
  display:flex; align-items:flex-end;
  background:#050709;
}
.hero-carousel{position:absolute; inset:0; z-index:0;}
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1s var(--ease), visibility 1s var(--ease);
}
.hero-slide.is-active{opacity:1; visibility:visible; z-index:1;}
.hero-slide img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.06);
  animation:kenBurns 8s var(--ease) forwards;
  filter:brightness(.6) saturate(1.05);
}
.hero-slide.is-active img{animation:kenBurns 8s var(--ease) forwards;}
@keyframes kenBurns{ from{transform:scale(1.12);} to{transform:scale(1);} }
.hero::before{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    linear-gradient(0deg, rgba(5,7,9,.9) 0%, rgba(5,7,9,.15) 55%, rgba(5,7,9,0) 78%),
    linear-gradient(90deg, rgba(5,7,9,.97) 0%, rgba(5,7,9,.86) 28%, rgba(5,7,9,.4) 55%, rgba(5,7,9,0) 78%);
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:48px 48px;
}
.hero-content{position:relative; z-index:3; padding:70px 0 46px; width:100%;}
.eyebrow{
  color:var(--red); font-size:13px; font-weight:600; letter-spacing:.12em;
  display:inline-flex; align-items:center; gap:10px; margin-bottom:18px;
}
.eyebrow::before{content:""; width:26px; height:2px; background:var(--red); display:inline-block;}
.hero h1{font-size:52px; font-weight:700; line-height:1.06; max-width:820px; color:var(--white);}
.hero h1 span{color:var(--red); display:block;}
.hero p.lead{max-width:600px; margin-top:20px; font-size:16px; color:#cfd6de; font-family:'Inter'; text-transform:none; letter-spacing:normal;}
.hero-actions{margin-top:30px; display:flex; gap:14px; flex-wrap:wrap;}

.btn{display:inline-block; padding:14px 26px; font-size:13px; font-weight:600; border:2px solid var(--red); background:var(--red); color:var(--white); transition:.2s var(--ease); cursor:pointer;}
.btn:hover{background:transparent; color:var(--red);}
.btn.ghost{background:transparent; color:var(--white); border-color:var(--line);}
.btn.ghost:hover{border-color:var(--white);}

/* carousel controls */
.hero-controls{position:relative; z-index:4;}
.hero-arrow{
  position:absolute; top:-140px; width:46px; height:46px; border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35); color:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:18px; transition:.2s;
}
.hero-arrow:hover{background:var(--red); border-color:var(--red);}
.hero-arrow.prev{left:24px;}
.hero-arrow.next{right:24px;}
.hero-dots{display:flex; gap:8px; margin-top:26px;}
.hero-dots button{
  width:38px; height:3px; background:rgba(255,255,255,.25); border:none; cursor:pointer; position:relative; overflow:hidden;
}
.hero-dots button .fill{position:absolute; inset:0; background:var(--red); width:0%;}
.hero-dots button.is-active .fill{animation:dotFill 6s linear forwards;}
@keyframes dotFill{ from{width:0%;} to{width:100%;} }

.hero-caption{position:relative; margin-top:20px; min-height:44px;}
.hero-caption-item{
  position:absolute; left:0; top:0; right:0;
  display:flex; align-items:baseline; gap:12px; flex-wrap:wrap;
  opacity:0; transform:translateY(10px); pointer-events:none;
  transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.hero-caption-item.is-active{opacity:1; transform:translateY(0); pointer-events:auto; position:relative;}
.hero-caption-item .tag-live{
  font-family:'Oswald'; font-size:11px; font-weight:700; letter-spacing:.1em; color:var(--red);
  border:1px solid var(--red); padding:4px 9px; flex-shrink:0;
}
.hero-caption-item strong{font-family:'Oswald'; font-size:14px; font-weight:600; color:var(--white); text-transform:none; letter-spacing:normal;}
.hero-caption-item span.sub{font-family:'Inter'; font-size:13.5px; color:var(--muted); text-transform:none; letter-spacing:normal;}

/* ---------- page hero (sous-pages) ---------- */
.page-hero{
  position:relative; padding:150px 0 60px; overflow:hidden;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(11,61,145,.5), transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(252,61,33,.25), transparent 50%),
    linear-gradient(180deg,#050709 0%, #0d1319 100%);
  border-bottom:1px solid var(--line);
}
.page-hero .breadcrumb{font-size:12px; color:var(--muted); margin-bottom:14px; letter-spacing:.08em; text-transform:uppercase; font-family:'Oswald'; font-weight:600;}
.page-hero .breadcrumb a:hover{color:var(--white);}
.page-hero .breadcrumb .sep{margin:0 8px; color:var(--line);}
.page-hero h1{font-size:40px; color:var(--white); font-weight:700; max-width:760px;}
.page-hero p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); max-width:620px; margin-top:16px; font-size:15px;}
[data-parallax]{will-change:transform;}

/* ---------- section shell ---------- */
section{padding:90px 0; border-bottom:1px solid var(--line);}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:44px; flex-wrap:wrap; gap:16px;}
.section-head h2{font-size:32px; font-weight:700; color:var(--white);}
.section-head .kicker{color:var(--red); font-size:12px; font-weight:600; letter-spacing:.14em; margin-bottom:8px; display:block;}
.section-head p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); max-width:480px; font-size:14px;}

/* ---------- about intro ---------- */
.about-intro{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); font-size:15.5px; max-width:820px; margin-bottom:60px;}
.about-intro strong{color:var(--text);}

/* ---------- DG word / about ---------- */
.split{display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center;}
.dg-portrait{aspect-ratio:4/5; border-radius:2px; overflow:hidden; position:relative; border:1px solid var(--line);}
.dg-portrait img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.dg-portrait:hover img{transform:scale(1.04);}
.split h3{font-size:24px; color:var(--white); margin-bottom:16px; font-weight:600;}
.split p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); margin-bottom:14px; font-size:15px;}
.signature{margin-top:22px; font-family:'Oswald'; color:var(--white); font-weight:600; letter-spacing:.04em; font-size:15px;}
.signature small{display:block; font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); font-size:12px; margin-top:4px;}

/* ---------- mission / programme cards ---------- */
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.card{background:var(--panel); border:1px solid var(--line); padding:30px 26px; position:relative; overflow:hidden; transition:transform .35s var(--ease), border-color .35s;}
.card:hover{transform:translateY(-6px); border-color:rgba(255,255,255,.25);}
.card::before{content:""; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--red);}
.card .icon{width:56px; height:56px; margin-bottom:18px; object-fit:cover; border-radius:6px;}
.card .icon svg{width:56px; height:56px; margin-bottom:18px; display:block; color:var(--red);}
.card .num{font-family:'Oswald'; font-size:13px; color:var(--red); font-weight:700; letter-spacing:.1em; margin-bottom:14px;}
.card h4{font-size:18px; color:var(--white); font-weight:600; margin-bottom:10px;}
.card p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); font-size:14px;}

/* ---------- targets list ---------- */
.targets{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.target-item{border:1px solid var(--line); padding:24px; display:flex; gap:16px; align-items:flex-start; background:linear-gradient(180deg, rgba(11,61,145,.08), transparent); transition:border-color .3s;}
.target-item:hover{border-color:rgba(255,255,255,.3);}
.target-item .dot{width:10px; height:10px; background:var(--red); margin-top:6px; flex-shrink:0; border-radius:50%;}
.target-item span{font-family:'Inter'; text-transform:none; letter-spacing:normal; font-size:15px; color:var(--text); font-weight:500;}

/* ---------- partners ---------- */
.partners-strip{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:26px; opacity:.9;}
.partner-chip{border:1px solid var(--line); padding:16px 26px; font-family:'Oswald'; color:var(--muted); font-size:13px; font-weight:600; letter-spacing:.08em; transition:.25s;}
.partner-chip:hover{color:var(--white); border-color:var(--red);}

/* ---------- news ---------- */
.news-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.news-card{border:1px solid var(--line); background:var(--panel); transition:transform .35s var(--ease), border-color .35s;}
.news-card:hover{transform:translateY(-6px); border-color:rgba(255,255,255,.25);}
.news-thumb{aspect-ratio:16/10; position:relative; overflow:hidden;}
.news-thumb img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.news-card:hover .news-thumb img{transform:scale(1.06);}
.news-thumb .tag{position:absolute; top:14px; left:14px; background:var(--red); color:var(--white); font-size:11px; font-weight:700; padding:5px 10px; letter-spacing:.08em; z-index:2;}
.news-body{padding:22px;}
.news-date{font-size:12px; color:var(--red); font-weight:600; letter-spacing:.08em; margin-bottom:10px; font-family:'Oswald';}
.news-body h4{font-family:'Oswald'; font-size:17px; font-weight:600; color:var(--white); line-height:1.3; margin-bottom:10px; text-transform:none; letter-spacing:normal;}
.news-body p{font-family:'Inter'; color:var(--muted); font-size:13.5px;}
.news-more{margin-top:16px; font-size:12px; font-weight:700; color:var(--red); letter-spacing:.08em; display:inline-block;}

/* ---------- home overview links ---------- */
.overview-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.overview-card{background:var(--panel); border:1px solid var(--line); padding:34px 28px; display:flex; flex-direction:column; gap:14px; transition:transform .35s var(--ease), border-color .35s;}
.overview-card:hover{transform:translateY(-6px); border-color:rgba(255,255,255,.25);}
.overview-card .n{font-family:'Oswald'; color:var(--red); font-size:13px; font-weight:700; letter-spacing:.1em;}
.overview-card h4{font-size:19px; color:var(--white); font-weight:600;}
.overview-card p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); font-size:14px; flex:1;}
.overview-card .go{font-size:12px; font-weight:700; color:var(--white); letter-spacing:.08em;}
.overview-card .go::after{content:"→"; margin-left:6px; transition:transform .25s;}
.overview-card:hover .go::after{transform:translateX(4px);}

.cta-banner{background:linear-gradient(120deg, rgba(11,61,145,.35), rgba(252,61,33,.18)); border:1px solid var(--line); padding:54px 40px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;}
.cta-banner h3{font-size:26px; color:var(--white); font-weight:700; max-width:520px;}
.cta-banner p{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); margin-top:10px; max-width:520px;}

/* ---------- contact page ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px;}
.info-list{display:flex; flex-direction:column; gap:18px; margin-top:26px;}
.info-list .row{display:flex; gap:14px; align-items:flex-start; font-family:'Inter'; font-size:14.5px; color:var(--muted);}
.info-list .row b{color:var(--text); font-family:'Oswald'; font-weight:600; text-transform:uppercase; font-size:12px; letter-spacing:.06em; min-width:96px; display:inline-block;}
.contact-form{background:var(--panel); border:1px solid var(--line); padding:32px; display:flex; flex-direction:column; gap:16px;}
.contact-form label{font-size:12px; font-weight:600; letter-spacing:.08em; color:var(--muted); font-family:'Oswald'; text-transform:uppercase; margin-bottom:6px; display:block;}
.contact-form input, .contact-form textarea{width:100%; background:#0d1218; border:1px solid var(--line); color:var(--text); padding:12px 14px; font-family:'Inter'; font-size:14px; transition:border-color .2s;}
.contact-form input:focus, .contact-form textarea:focus{outline:none; border-color:var(--red);}
.contact-form textarea{resize:vertical; min-height:120px;}
.map-frame{border:1px solid var(--line); aspect-ratio:16/9; overflow:hidden;}
.map-frame iframe{width:100%; height:100%; border:0; filter:grayscale(.4) invert(.9) contrast(.9);}

/* ---------- contact / footer ---------- */
footer{background:#000;}
.foot-grid{display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:50px; padding:70px 0 40px;}
.foot-grid h5{color:var(--white); font-size:13px; font-weight:700; letter-spacing:.1em; margin-bottom:18px;}
.foot-grid p, .foot-grid li{font-family:'Inter'; text-transform:none; letter-spacing:normal; color:var(--muted); font-size:14px; margin-bottom:10px; list-style:none;}
.foot-grid a:hover{color:var(--white);}
.foot-quote{font-family:'Oswald'; font-style:normal; color:var(--text); font-size:15px; line-height:1.5; border-left:3px solid var(--red); padding-left:16px; text-transform:none; letter-spacing:normal;}
.bottom-bar{border-top:1px solid var(--line); padding:22px 0; display:flex; justify-content:space-between; font-size:12px; color:var(--muted); flex-wrap:wrap; gap:10px;}
.socials{display:flex; gap:14px;}
.socials a{width:34px; height:34px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; transition:.2s;}
.socials a:hover{border-color:var(--red); color:var(--red);}
.foot-nav{display:flex; flex-wrap:wrap; gap:4px 18px; margin-top:6px;}
.foot-nav a{font-family:'Oswald'; font-size:12px; font-weight:600; letter-spacing:.05em; color:var(--muted);}
.foot-nav a:hover{color:var(--white);}

/* ==========================================================================
   Media queries — mobile / tablette / desktop
   ========================================================================== */

/* Grand écran (>1440px) : un peu plus d'air */
@media (min-width:1440px){
  .wrap{max-width:1320px;}
}

/* Petits laptops / tablettes larges (900–1199px) */
@media (max-width:1199px){
  .hero h1{font-size:44px;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
}

/* Tablette (601–900px) */
@media (max-width:900px){
  nav.nav{display:none;}
  .burger{display:block;}
  .nav-search{display:none;}
  .hero{min-height:560px;}
  .hero h1{font-size:36px;}
  .hero-arrow{top:-118px;}
  .page-hero{padding:130px 0 50px;}
  .page-hero h1{font-size:32px;}
  .split, .grid-3, .targets, .news-grid, .foot-grid, .overview-grid, .contact-grid{grid-template-columns:1fr;}
  .split{gap:36px;}
  .split .dg-portrait{order:-1; max-width:360px; margin:0 auto;}
  section{padding:64px 0;}
  .section-head h2{font-size:27px;}
  .cta-banner{padding:40px 28px;}
  .util-bar .wrap{flex-direction:column; height:auto; padding:8px 24px; gap:4px; text-align:center;}
  .util-bar div{display:flex; gap:0;}
}

/* Mobile large (481–600px) */
@media (max-width:600px){
  .header-inner{height:66px;}
  .brand img{width:38px; height:38px;}
  .brand-text .b1{font-size:16px;}
  .brand-text .b2{font-size:9.5px;}
  .hero{min-height:520px;}
  .hero h1{font-size:28px;}
  .hero p.lead{font-size:14.5px;}
  .hero-actions{gap:10px;}
  .btn{padding:12px 20px; font-size:12px;}
  .hero-arrow{display:none;}
  .grid-4{grid-template-columns:1fr 1fr;}
  .partners-strip{justify-content:center; text-align:center;}
  .foot-grid{padding:50px 0 30px; gap:36px;}
  .bottom-bar{flex-direction:column; text-align:center;}
  .contact-form{padding:24px;}
}

/* Petit mobile (<=480px) */
@media (max-width:480px){
  .wrap{padding:0 18px;}
  .util-bar{font-size:10.5px;}
  .eyebrow{font-size:11px;}
  .hero h1{font-size:24px;}
  .page-hero h1{font-size:26px;}
  .page-hero{padding:120px 0 40px;}
  .section-head h2{font-size:22px;}
  .grid-4{grid-template-columns:1fr;}
  .card{padding:24px 20px;}
  .cta-banner h3{font-size:20px;}
  .loader-logo{width:52px; height:52px;}
  .loader-progress-track{width:150px;}
  .hero-caption-item strong{font-size:12.5px;}
  .hero-caption-item span.sub{font-size:12px;}
}
