/* Gros Stud — styles.css (pro) */
:root{
  --bg:#0b1220;
  --panel:#0f1a33;
  --card:#101f3f;
  --text:#eaf0ff;
  --muted:#b8c3e6;
  --brand:#5aa7ff;
  --brand2:#8b5cf6;
  --ok:#22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --ring: 0 0 0 4px rgba(90,167,255,.22);
  --radius: 18px;
  --max: 1100px;
  --gap: 18px;
}

*{box-sizing:border-box}
html,
body{
  background:
    linear-gradient(rgba(11,18,32,.88), rgba(11,18,32,.95)),
    url('assets/img/background.png') center top / cover no-repeat fixed;
}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(139,92,246,.25), transparent 60%),
              radial-gradient(900px 500px at 85% 10%, rgba(90,167,255,.25), transparent 55%),
              linear-gradient(180deg, var(--bg), #060a14 70%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}
.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background: rgba(16,31,63,.9);
  border:1px solid rgba(255,255,255,.12);
  z-index:9999;
}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(6,10,20,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 24px; max-width:var(--max); margin:0 auto
}
.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(90,167,255,.22);
  position:relative;
}
.logo:after{
  content:""; position:absolute; inset:10px 12px 10px 12px; border-radius:8px;
  border:2px solid rgba(255,255,255,.55);
  transform:skewX(-6deg);
}
.nav-links{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.pill{
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,31,63,.55);
  border-radius:999px;
  font-weight:700;
}
.pill:hover{border-color: rgba(90,167,255,.55); box-shadow: var(--ring)}
.pill.active{border-color: rgba(90,167,255,.8); box-shadow: var(--ring)}
.cta{
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border:0;
  cursor:pointer;
  box-shadow: 0 14px 40px rgba(90,167,255,.18);
}
.cta:hover{filter:brightness(1.05)}
.hamb{display:none}
@media (max-width: 860px){
  .nav-links{display:none}
  .hamb{
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(16,31,63,.55);
    cursor:pointer;
  }
  .hamb:focus{outline:none; box-shadow: var(--ring)}
  .mobile{
    display:none;
    padding:0 24px 16px;
    max-width:var(--max);
    margin:0 auto;
  }
  .mobile.open{display:block}
  .mobile a{
    display:block;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(16,31,63,.45);
    margin-top:10px;
    font-weight:800;
  }
  .mobile a:hover{border-color: rgba(90,167,255,.55); box-shadow: var(--ring)}
}

.hero{padding:54px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap:28px;
  align-items:stretch;
}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }

.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,31,63,.55);
  color:var(--muted);
  font-weight:800;
  width:fit-content;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--ok); box-shadow: 0 0 0 4px rgba(34,197,94,.15)}

h1{font-size:44px; line-height:1.05; margin:14px 0 14px}
@media (max-width: 520px){ h1{font-size:36px} }
.sub{color:var(--muted); font-size:18px; max-width:60ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(16,31,63,.55);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn:hover{border-color: rgba(90,167,255,.55); box-shadow: var(--ring)}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 40px rgba(90,167,255,.18);
}
.btn.phone{
  border:0;
  background: rgba(34,197,94,.16);
  border:1px solid rgba(34,197,94,.25);
}
.btn.phone:hover{box-shadow: 0 0 0 4px rgba(34,197,94,.18)}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(15,26,51,.55);
  color:var(--muted);
  font-weight:800;
  display:flex; gap:10px; align-items:center;
}
.badge span{color:var(--text)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}

section{padding:34px 0}
.section-title{font-size:28px; margin:0 0 10px}
.section-sub{color:var(--muted); margin:0 0 18px}

.panel{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(16,31,63,.65), rgba(10,16,30,.55));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,31,63,.55);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:var(--gap)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap)}
.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:var(--gap)}
@media (max-width: 900px){ .grid2,.grid3,.grid4{grid-template-columns:1fr} }

.icon{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(90,167,255,.28), rgba(139,92,246,.22));
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:10px;
  font-weight:900;
}

.form{display:grid; gap:10px}
label{font-weight:900; font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(6,10,20,.45);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(90,167,255,.65); box-shadow: var(--ring)}
textarea{min-height:120px; resize:vertical}
.small{font-size:12px; color:var(--muted)}
.quote-box{display:grid; gap:12px; height:100%}
.quote-title{font-weight:900; font-size:16px; letter-spacing:.2px}

.gallery{display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap)}
@media (max-width: 900px){ .gallery{grid-template-columns:1fr} }
.shot{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(90,167,255,.18), transparent 60%),
    radial-gradient(700px 240px at 85% 20%, rgba(139,92,246,.18), transparent 55%),
    rgba(16,31,63,.55);
  height: 190px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.shot:after{
  content:"Photo projet";
  position:absolute; left:14px; bottom:12px;
  color: rgba(234,240,255,.85);
  font-weight:900;
  letter-spacing:.2px;
  background: rgba(6,10,20,.35);
  border:1px solid rgba(255,255,255,.10);
  padding:8px 10px;
  border-radius: 999px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap);
  align-items:start;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

.avatar{
  width:54px; height:54px; border-radius:18px;
  background: linear-gradient(135deg, rgba(90,167,255,.25), rgba(139,92,246,.22));
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  font-weight:900;
  color:rgba(234,240,255,.95);
}
.member{display:flex; gap:12px; align-items:flex-start;}
.member .info{display:flex; flex-direction:column}
.role{font-size:13px; color:var(--muted); font-weight:900; margin-top:2px}

.callout{
  display:flex; gap:10px; align-items:flex-start;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(34,197,94,.12);
}
.callout strong{font-weight:900}
.hr{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:14px 0;
}

footer{
  padding:26px 0 50px;
  color: var(--muted);
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
}

.kpi{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(16,31,63,.42);
}
.kpi .n{font-size:20px; font-weight:1000}
.kpi .t{color:var(--muted); font-weight:900; font-size:12px}

pre code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}


/* === BRANDING SÉRIEUX – AJUSTEMENTS === */

/* Palette plus sobre */
:root{
  --brand:#d4af37;      /* or chantier / premium */
  --brand2:#8c6d1f;
}

/* Fond plus discret */
body{
  background:
    linear-gradient(rgba(11,18,32,.94), rgba(11,18,32,.98)),
    url('assets/img/background.png') center top / cover no-repeat fixed;
}

/* Titres plus corporate */
h1, h2, h3{
  letter-spacing: .3px;
  text-transform: none;
}

/* Boutons plus sérieux */
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

/* Réduction des effets trop ludiques */
.card, .panel{
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

/* Logo discret dans le header */
.logo{
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}


/* Logo image (replaces gradient square) */
.logo{
  width:40px;
  height:40px;
  border-radius:12px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 6px 16px rgba(0,0,0,.40);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.logo-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.brand span:last-child{
  font-weight: 950;
  letter-spacing: .2px;
}
