:root{
  --bg:#070707;
  --panel:#111114;
  --soft:#18181d;
  --text:#fff;
  --muted:#b8b8c3;
  --line:rgba(255,255,255,.12);
  --gold:#d8b56d;
  --wine:#6d1f34;
  --violet:#8b5cf6;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter, Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block}
button{font:inherit;color:inherit}

/* Détails premium */
::selection{background:rgba(216,181,109,.28)}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 20%, rgba(216,181,109,.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139,92,246,.10), transparent 45%);
  opacity:.9;
  mix-blend-mode:screen;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
  will-change:opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

.nav{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 32px));
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(7,7,7,.62);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.brand{
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:13px;
}
.nav-links{display:flex;gap:24px;color:var(--muted);font-size:14px}
.nav-links a:hover{color:white}

.nav-socials{display:flex;align-items:center;gap:10px}
.mute-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#e9e9ef;
  cursor:pointer;
  transition:.2s ease;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
}
.mute-toggle:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}
.mute-toggle:active{transform:translateY(0)}
.lang-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:auto;
  height:40px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#e9e9ef;
  cursor:pointer;
  transition:.2s ease;
}
.lang-switch:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}
.lang-switch:active{transform:translateY(0)}
.lang-switch__flag{
  width:18px;
  height:18px;
  border-radius:4px;
  display:inline-block;
  background-size:cover;
  background-position:center;
  opacity:.55;
  transform:translateY(1px);
  transition:opacity .2s ease, filter .2s ease;
}
.lang-switch__flag[data-lang-flag="fr"]{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' x='0' y='0' fill='%230055A4'/%3E%3Crect width='1' height='2' x='1' y='0' fill='%23FFFFFF'/%3E%3Crect width='1' height='2' x='2' y='0' fill='%23EF4135'/%3E%3C/svg%3E");
}
.lang-switch__flag[data-lang-flag="en"]{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0 0 L60 30 M60 0 L0 30' stroke='%23FFFFFF' stroke-width='6'/%3E%3Cpath d='M0 0 L60 30 M60 0 L0 30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0 v30 M0 15 h60' stroke='%23FFFFFF' stroke-width='10'/%3E%3Cpath d='M30 0 v30 M0 15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}
.lang-switch[data-lang="fr"] .lang-switch__flag[data-lang-flag="fr"],
.lang-switch[data-lang="en"] .lang-switch__flag[data-lang-flag="en"]{
  opacity:1;
  filter:saturate(1.05);
}
.social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#e9e9ef;
  transition:.2s ease;
}
.social:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}
.social__icon{width:20px;height:20px}

.hero{
  min-height:100vh;
  padding:120px 7% 60px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 20% 10%, rgba(109,31,52,.52), transparent 34%),
    radial-gradient(circle at 80% 90%, rgba(139,92,246,.28), transparent 36%),
    linear-gradient(120deg,#050505,#101014 48%,#050505);
}
.hero-grid{
  width:min(1240px,100%);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:#f4dfad;
  border:1px solid rgba(216,181,109,.35);
  background:rgba(216,181,109,.08);
  padding:10px 15px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:28px;
}
h1{
  font-size:clamp(62px,9vw,136px);
  line-height:.82;
  letter-spacing:-.075em;
  font-weight:900;
  margin-bottom:28px;
}
h1 span{
  display:block;
  color:transparent;
  -webkit-background-clip:text;
  background-clip:text;
  background-image:linear-gradient(90deg,#fff,#d8b56d,#c4b5fd);
}
.lead{
  font-size:clamp(18px,2vw,24px);
  line-height:1.65;
  color:#d8d8df;
  max-width:680px;
}
.cta{margin-top:36px;display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:18px;
  font-weight:800;
  transition:.25s ease;
}
.btn.primary{background:white;color:#050505}
.btn.primary:hover{transform:translateY(-2px);background:#f1f1f1;box-shadow:0 18px 50px rgba(0,0,0,.35)}
.btn.ghost{border:1px solid var(--line);background:rgba(255,255,255,.05)}
.btn.ghost:hover{background:rgba(255,255,255,.11);transform:translateY(-1px)}
.btn-icon{display:inline-flex;align-items:center;margin-right:10px}
.btn-icon svg{width:18px;height:18px}
.hero-photo{
  position:relative;
  border-radius:42px;
  overflow:hidden;
  aspect-ratio:4/5;
  min-height:0;
  border:1px solid var(--line);
  box-shadow:0 40px 110px rgba(0,0,0,.55);
  background:#111;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:contrast(1.04) saturate(.92);
  transform:scale(1.01);
  transition:transform .8s ease;
}
.hero-photo:hover img{transform:scale(1.04)}
.hero-card{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.58);
  backdrop-filter:blur(20px);
}
.hero-card p{font-size:22px;line-height:1.35}
.hero-card small{display:block;margin-top:12px;color:#bdbdc7}

section{padding:105px 7%}
.wrap{width:min(1180px,100%);margin:auto}
.section-head{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
  align-items:start;
  margin-bottom:50px;
}
.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}
h2{
  font-size:clamp(40px,5vw,72px);
  line-height:.95;
  letter-spacing:-.055em;
}
.copy{
  color:var(--muted);
  font-size:19px;
  line-height:1.85;
}
.copy p+p{margin-top:20px}

.bio-panel{
  margin-top:26px;
  padding:22px 22px 20px;
  border-radius:26px;
  border:1px solid rgba(216,181,109,.22);
  background:
    radial-gradient(circle at 20% 20%, rgba(216,181,109,.10), transparent 45%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  box-shadow:0 22px 70px rgba(0,0,0,.22);
}
.bio-panel__eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}
.bio-panel p{
  color:#d0d0db;
  line-height:1.85;
}
.bio-panel p+p{margin-top:16px}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  min-height:260px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:32px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  box-shadow:0 22px 70px rgba(0,0,0,.25);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,181,109,.25);
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.03));
}
.num{color:var(--gold);font-weight:900;margin-bottom:36px}
.card h3{font-size:26px;margin-bottom:14px}
.card p{color:var(--muted);line-height:1.7}

.visual-section{background:#0b0b0e}
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}
.shot{
  position:relative;
  overflow:hidden;
  border-radius:36px;
  border:1px solid var(--line);
  background:#111;
}
.shot-btn{
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}
.shot-btn:focus-visible{
  outline:2px solid rgba(216,181,109,.75);
  outline-offset:4px;
  border-radius:32px;
}
.shot img{
  width:100%;
  height:clamp(380px, 62vw, 620px);
  object-fit:cover;
  filter:contrast(1.02) saturate(.9);
  transform:scale(1.01);
  transition:transform 1s ease;
}
.shot:hover img{transform:scale(1.045)}
.shot:first-child img{object-position:center top}
.shot:last-child img{object-position:center}
.caption{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  padding:18px;
  border-radius:22px;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(14px);
  color:#eee;
}

.music{
  background:
    radial-gradient(circle at 80% 10%, rgba(216,181,109,.18), transparent 34%),
    #070707;
}
.music-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:center;
}
.music-grid{grid-template-columns:1fr}
.note{
  margin-top:14px;
  color:#8f8f99;
  font-size:13px;
  line-height:1.6;
}

.contact{
  text-align:center;
  background:
    radial-gradient(circle at center, rgba(109,31,52,.42), transparent 36%),
    linear-gradient(135deg,#12070b,#050505,#160b26);
}
.contact .lead{margin:22px auto 0}
.contact-actions{justify-content:center}

.contact-card{
  margin:34px auto 0;
  width:min(980px,100%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(16px);
  box-shadow:0 28px 90px rgba(0,0,0,.35);
  padding:18px;
  text-align:left;
}
.contact-card__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding:4px 6px 14px;
}
.contact-card__title{
  font-weight:900;
  letter-spacing:-.02em;
  font-size:18px;
  color:#fff;
}
.contact-card__subtitle{
  color:rgba(255,255,255,.72);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
}
.contact-card__preview{
  width:min(720px,100%);
  margin:0 auto;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:#0b0b0e;
}
.contact-card__preview img{
  width:100%;
  height:auto;
}
.contact-card__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  padding:14px 6px 4px;
}

footer{
  padding:28px 7%;
  text-align:center;
  color:#7a7a85;
  background:#020202;
  font-size:14px;
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  z-index:80;
}
.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(360px, calc(100vw - 54px));
  z-index:90;
  border-left:1px solid rgba(255,255,255,.12);
  background:rgba(10,10,12,.92);
  backdrop-filter:blur(18px);
  transform:translateX(102%);
  transition:transform .22s ease;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.mobile-menu.is-open{transform:translateX(0)}
.mobile-menu__top{display:flex;align-items:center;justify-content:space-between}
.mobile-menu__title{font-weight:900;letter-spacing:.18em;text-transform:uppercase;font-size:12px;color:var(--gold)}
.mobile-menu__close{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  font-size:26px;line-height:1;
}
.mobile-menu__links{display:flex;flex-direction:column;gap:10px;margin-top:6px}
.mobile-menu__links a{
  padding:14px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:-.01em;
}
.mobile-menu__links a:hover{background:rgba(255,255,255,.08)}

.nav-burger{
  display:none;
  width:42px;height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
  transition:.2s ease;
}
.nav-burger:hover{background:rgba(255,255,255,.1);transform:translateY(-1px)}
.nav-burger:active{transform:translateY(0)}
.nav-burger__bar{
  display:block;
  height:2px;
  background:#e9e9ef;
  border-radius:999px;
}
.nav-burger__bar+.nav-burger__bar{margin-top:6px}

.lightbox{
  position:fixed;
  inset:0;
  z-index:120;
  display:grid;
  place-items:center;
}
.lightbox[hidden]{display:none !important}
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
}
.lightbox__dialog{
  position:relative;
  width:min(1100px, calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,10,12,.86);
  backdrop-filter:blur(18px);
  box-shadow:0 40px 120px rgba(0,0,0,.55);
  overflow:hidden;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lightbox__img{
  width:100%;
  height:min(70vh, 720px);
  max-height:calc(100vh - 170px);
  object-fit:contain;
  border-radius:16px;
  background:#0b0b0e;
}
.lightbox__caption{
  margin-top:0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.5;
  text-align:center;
}
.lightbox__close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  font-size:26px;line-height:1;
  z-index:2;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;height:46px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  cursor:pointer;
  font-size:32px;
  line-height:1;
  z-index:2;
}
.lightbox__nav--prev{left:10px}
.lightbox__nav--next{right:10px}
.lightbox__nav:hover,.lightbox__close:hover{background:rgba(255,255,255,.12)}

/* focus global (accessibilité) */
a:focus-visible,.btn:focus-visible,.lang-switch:focus-visible,.mute-toggle:focus-visible,.nav-burger:focus-visible,.mobile-menu__close:focus-visible{
  outline:2px solid rgba(216,181,109,.8);
  outline-offset:3px;
}

@media(max-width:900px){
  .nav-links{display:none}
  .hero-grid,.section-head,.music-grid,.gallery,.cards{grid-template-columns:1fr}
  .hero{padding-top:112px}
  .hero-photo{max-height:560px}
  .shot img{height:clamp(360px, 70vw, 560px)}
  section{padding:78px 6%}
  .nav-burger{display:inline-flex}
}

@media(max-width:680px){
  .nav{
    top:12px;
    width:calc(100% - 24px);
    padding:12px 14px;
  }
  .brand{letter-spacing:.22em}
  .social{width:38px;height:38px}
  .mute-toggle{padding:0 12px}

  .hero{padding:104px 6% 52px}
  .kicker{margin-bottom:20px}
  h1{line-height:.9}
  .lead{font-size:18px}
  .cta{margin-top:26px}
  .btn{min-height:50px;padding:0 18px;border-radius:16px}
  .hero-photo{max-height:480px;border-radius:34px}
  .hero-card{left:16px;right:16px;bottom:16px;padding:18px;border-radius:22px}
  .hero-card p{font-size:18px}

  section{padding:66px 6%}
  .section-head{gap:22px;margin-bottom:32px}
  .copy{font-size:17px}
  .bio-panel{padding:18px;border-radius:22px}
  .card{padding:22px;border-radius:26px}
  .card h3{font-size:22px}
  .num{margin-bottom:26px}

  .shot{border-radius:28px}
  .shot img{height:440px}
  .caption{left:14px;right:14px;bottom:14px;padding:14px;border-radius:18px}

  .contact-card{padding:14px;border-radius:22px}
  .contact-card__head{flex-direction:column;align-items:flex-start}
  .contact-card__actions{justify-content:stretch}
  .contact-card__actions .btn{width:100%}
}

/* ancien bouton mute mobile supprimé */

@media(max-width:420px){
  .nav{padding:10px 12px;border-radius:18px}
  .brand{font-size:12px}
  .social{width:36px;height:36px}
  .nav-socials{gap:8px}

  .hero{padding:98px 5% 46px}
  .kicker{font-size:12px;padding:9px 12px}
  .lead{font-size:17px}
  .hero-photo,.hero-photo img{height:420px;border-radius:28px}
  .hero-card p{font-size:17px}

  section{padding:58px 5%}
  .copy{font-size:16px;line-height:1.75}
  .cards{gap:14px}
  .card{padding:20px;border-radius:22px}

  .shot img{height:380px}

  /* Widget musique: en bas, pleine largeur */
  .music-widget{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    border-radius:16px;
    padding:10px 10px 8px;
    gap:8px;
  }
  .music-widget__title{max-width:210px}
  .music-widget__btn{min-width:108px;padding:8px 10px;border-radius:11px}
  .music-widget__iconbtn{width:36px;height:36px;border-radius:11px}
  .music-widget__volbtn{width:30px;height:30px;border-radius:10px;font-size:16px}
  .music-widget__volval{min-width:40px;font-size:11px}
}

/* widget musique supprimé */
