:root{
  --bg:#0b0b0d;
  --panel:#121216;
  --text:#f5f5f7;
  --muted:#b8b8be;
  --red:#e10612;
  --red2:#b4040d;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 16px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 70% -10%, rgba(225,6,18,.25), transparent 55%),
              radial-gradient(900px 500px at 10% 10%, rgba(255,255,255,.08), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,13,.65);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand__text{
  font-weight:800;
  letter-spacing:.5px;
  font-size:24px;
}
.brand__num{ color:var(--text); margin-right:6px; }
.brand__word{ color:var(--red); }
.pill{
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
}

.hero{
  padding:64px 0 28px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  margin:0 0 14px;
}
.sub{
  color:var(--muted);
  font-size:18px;
  margin:0 0 22px;
  max-width: 56ch;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.ctaRow--center{
  justify-content:center;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, var(--red), var(--red2));
  border-color: rgba(225,6,18,.55);
  box-shadow: 0 12px 26px rgba(225,6,18,.20);
  color:white;
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(225,6,18,.26);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.miniRow{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
}
.miniLink{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.18);
}
.miniLink:hover{ color: var(--text); border-bottom-color: rgba(225,6,18,.55); }
.dot{ opacity:.6; }

.hero__card .card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__top{
  display:flex;
  gap:10px;
  padding:14px;
  border-bottom:1px solid var(--line);
}
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(225,6,18,.15);
  border:1px solid rgba(225,6,18,.35);
  color: #ffd3d6;
}
.badge--dark{
  background: rgba(255,255,255,.05);
  border-color: var(--line);
  color: var(--muted);
}
.card__img{ padding:16px; }
.imgPlaceholder{
  height:240px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.18);
  background: radial-gradient(500px 240px at 30% 30%, rgba(225,6,18,.18), transparent 60%),
              rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.65);
  font-weight:600;
  text-align:center;
  padding:18px;
}
.card__bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  border-top:1px solid var(--line);
}
.stat{
  padding:14px 16px;
}
.stat + .stat{ border-left:1px solid var(--line); }
.stat__num{ font-weight:800; letter-spacing:.2px; }
.stat__label{ color:var(--muted); font-size:13px; }

.section{
  padding:54px 0;
}
.section--dark{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2{
  font-size: clamp(24px, 2.4vw, 34px);
  margin:0 0 10px;
}
.lead{
  color: var(--muted);
  margin:0 0 22px;
  max-width: 70ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.panel{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.panel--dark{
  background: rgba(0,0,0,.20);
}
.panel h3{
  margin:0 0 6px;
  font-size:18px;
}
.panel p{ margin:0; color:var(--muted); }

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{ margin:6px 0; }

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(225,6,18,.35);
  background: rgba(225,6,18,.12);
  color: #ffd3d6;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
  margin-top:18px;
}
.thumb{
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border:1px solid var(--line);
  background: radial-gradient(220px 180px at 30% 30%, rgba(225,6,18,.18), transparent 55%),
              rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.6);
  font-weight:700;
}

.footer{
  padding:26px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.footer__brand{ font-weight:800; }
.footer__small{ color:var(--muted); font-size:13px; }
.footer__links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer__links a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.18);
}
.footer__links a:hover{ color:var(--text); border-bottom-color: rgba(225,6,18,.55); }

/* --- Reveal animation --- */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .topbar__meta{ display:none; }
}
/* --- Slider (commandes récentes) --- */
.slider{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;              /* adjust if you want bigger */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .55s ease;
  transform: scale(1.02);
  aspect-ratio: 3 / 4;
}

.slide.is-active{
  opacity: 1;
}

.sliderBtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  z-index: 2;
}

.sliderBtn:hover{
  background: rgba(0,0,0,.55);
  border-color: rgba(225,6,18,.45);
}

.sliderBtn:active{
  transform: translateY(-50%) scale(.98);
}

.sliderBtn--prev{ left: 10px; }
.sliderBtn--next{ right: 10px; }

.dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 10px;
  z-index: 2;
}

.dotBtn{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dotBtn.is-active{
  background: rgba(225,6,18,.95);
  border-color: rgba(225,6,18,.45);
}

.dotBtn:hover{
  transform: translateY(-1px);
}