/* School Event Stages — header harmonisé avec School Event Connect */
.siteHeader{
  position:sticky;
  top:0;
  z-index:40;
  border-bottom:1px solid rgba(226,232,240,.9);
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.siteHeader__inner{
  width:min(1280px, calc(100% - 40px));
  min-height:0;
  padding:16px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.siteBrand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
  font-weight:inherit;
  letter-spacing:normal;
}

.siteBrand__wave{
  display:flex;
  width:96px;
  height:56px;
  flex:0 0 96px;
  align-items:center;
  justify-content:center;
}

.siteBrand__wave img{
  display:block;
  width:100%;
  height:44px;
  object-fit:contain;
  transition:transform .2s ease;
}

.siteBrand:hover .siteBrand__wave img{
  transform:scale(1.03);
}

.siteBrand__copy{
  display:block;
  line-height:1;
  white-space:nowrap;
}

.siteBrand__copy strong{
  display:block;
  color:#020617;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.02em;
}

.siteBrand__copy small{
  display:block;
  margin-top:5px;
  color:var(--v11-coral);
  font-size:15px;
  font-weight:700;
  line-height:1;
  letter-spacing:0;
  text-transform:none;
}

.siteHeader__nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.siteHeader__nav a.siteHeader__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  color:#475569;
  font-size:14px;
  font-weight:700;
  line-height:20px;
  transition:background .2s ease,color .2s ease;
}

.siteHeader__nav a.siteHeader__link:hover{
  background:#f8fafc;
  color:#020617;
}

.siteHeader__nav a.siteHeader__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:4px;
  padding:10px 16px;
  border-radius:12px;
  background:#020617;
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:20px;
  transition:background .2s ease, transform .2s ease;
}

.siteHeader__nav a.siteHeader__cta:hover{
  background:#1e293b;
  color:#fff;
}

@media (min-width:640px){
  .siteHeader__inner{
    width:min(1280px, calc(100% - 64px));
  }
}

@media (min-width:1024px){
  .siteHeader__inner{
    width:min(1280px, calc(100% - 80px));
  }
}

@media (max-width:700px){
  .siteHeader__nav{
    gap:4px;
  }
  .siteHeader__nav a.siteHeader__link{
    padding:9px 8px;
    font-size:13px;
  }
}

@media (max-width:520px){
  .siteHeader__inner{
    width:calc(100% - 28px);
    padding:12px 0;
    gap:10px;
  }
  .siteBrand{gap:10px}
  .siteBrand__wave{
    width:70px;
    height:46px;
    flex-basis:70px;
  }
  .siteBrand__wave img{height:36px}
  .siteBrand__copy strong{font-size:16px}
  .siteBrand__copy small{font-size:13px;margin-top:4px}
  .siteHeader__nav a.siteHeader__link{
    display:none;
  }
  .siteHeader__nav a.siteHeader__cta{
    margin-left:0;
    padding:9px 12px;
    font-size:13px;
  }
}