
/* ====== RESET & TOKENS ====== */
body *, body *::before, body *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  --noir: #0B0B0B;
  --anthracite: #1A1A1A;
  --jaune: #F5C400;
  --jaune-fonce: #d9ad00;
  --blanc: #FFFFFF;
  --gris-clair: #F6F6F6;
  --gris-texte: #555555;
  --gris-bord: #e4e4e4;
  --r: 14px;
  --maxw: 1180px;
}

body { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body--has-bottom-badge { padding-bottom: 110px; }
body img { max-width: 100%; display: block; }
body a { text-decoration: none; color: inherit; }
body .topbar,
body .section { scroll-margin-top: 92px; }

body h1, body h2, body h3, body .display {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

body .eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--jaune);
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-block;
}
body .eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  background: var(--jaune);
  margin-top: 12px;
}

/* ====== TOP BAR ====== */
body .topbar {
  background: var(--noir);
  color: var(--blanc);
  font-size: 0.95rem;
}
body .topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}
body .topbar a, body .topbar span { display: inline-flex; align-items: center; gap: 8px; }
body .topbar .ico { color: var(--jaune); width: 18px; height: 18px; }
body .topbar .sep { width: 1px; height: 18px; background: #3a3a3a; }

/* ====== HEADER ====== */
body .header {
  background: var(--blanc);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--gris-bord);
}
body .header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
body .logo img { height: 56px; width: auto; }
body .burger {
  background: none;
  border: none;
  cursor: pointer;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
body .burger span {
  display: block;
  height: 3px;
  width: 30px;
  background: var(--noir);
  border-radius: 2px;
  transition: 0.3s;
}
body .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body .burger.open span:nth-child(2) { opacity: 0; }
body .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Nav desktop */
body .nav-desktop { display: none; gap: 30px; align-items: center; }
body .nav-desktop a {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
body .nav-desktop a:hover { color: var(--jaune-fonce); }
body .nav-desktop .btn-nav {
  background: var(--jaune);
  padding: 11px 22px;
  border-radius: 8px;
  color: var(--noir);
}

/* Nav mobile (drawer) */
body .nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82%, 340px);
  background: var(--noir);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  padding: 90px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body .nav-mobile.open { transform: translateX(0); }
body .nav-mobile a {
  color: var(--blanc);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
  padding: 16px 0;
  border-bottom: 1px solid #262626;
}
body .nav-mobile a:last-of-type { border-bottom: none; }
body .nav-mobile .socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
body .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 90;
}
body .overlay.open { opacity: 1; visibility: visible; }
body .nav-mobile .close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--blanc);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ====== HERO ====== */
body .hero {
  position: relative;
  background: var(--noir);
  color: var(--blanc);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
body .hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(11,11,11,0.96) 0%, rgba(11,11,11,0.85) 50%, rgba(11,11,11,0.4) 100%), var(--jd-hero-mobile);
  background-size: cover;
  background-position: center;
}
body .hero .wrap { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 20px; width: 100%; }
body .hero h1 {
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  margin: 22px 0 4px;
  font-weight: 700;
}
body .hero .sub {
  font-size: clamp(1.5rem, 5.5vw, 2.4rem);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
body .hero .sub .accent { color: var(--jaune); display: block; }
body .hero p.lead {
  font-size: 1.08rem;
  color: #d8d8d8;
  max-width: 460px;
  margin-bottom: 30px;
}
body .hero-cta { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }

body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 17px 26px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
body .btn svg { width: 20px; height: 20px; }
body .btn-primary { background: var(--jaune); color: var(--noir); }
body .btn-primary:hover { background: var(--jaune-fonce); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(245,196,0,0.32); }
body .btn-outline { background: transparent; color: var(--blanc); border: 2px solid var(--jaune); }
body .btn-outline:hover { background: var(--jaune); color: var(--noir); transform: translateY(-2px); }
body .btn-secondary, .btn-secondary { background: #111; color: #fff; border: 1px solid rgba(255, 255, 255, 0.18); }
body .btn-secondary:hover, .btn-secondary:hover { transform: translateY(-1px); background: #1a1a1a; border-color: rgba(255, 255, 255, 0.35); }

/* Bandeau rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©assurance */
body .trust {
  position: relative;
  z-index: 2;
  margin: 40px auto -34px;
  max-width: calc(var(--maxw) - 0px);
  background: var(--anthracite);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 28px 16px;
}
body .trust .item { text-align: center; padding: 14px 8px; position: relative; }
body .trust .item svg { width: 30px; height: 30px; color: var(--jaune); margin: 0 auto 10px; }
body .trust .item span { color: var(--blanc); font-size: 0.96rem; font-weight: 500; line-height: 1.35; display: block; }

/* ====== SECTIONS GÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°NÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°RIQUES ====== */
body .section { padding: 78px 0; }
body .section.alt { background: var(--gris-clair); }
body .section-head { text-align: center; margin-bottom: 48px; }
body .section-head h2 {
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  margin: 14px 0 12px;
}
body .section-head .eyebrow::after { margin-left: auto; margin-right: auto; }
body .section-head p { color: var(--gris-texte); max-width: 560px; margin: 0 auto; }

/* ====== PRESTATIONS ====== */
body .grid-services { display: grid; grid-template-columns: 1fr; gap: 18px; }
body .service-card {
  background: var(--blanc);
  border: 1px solid var(--gris-bord);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
body .service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.08); border-color: var(--jaune); }
body .service-card .ico-box {
  width: 58px; height: 58px;
  background: var(--noir);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
body .service-card .ico-box svg { width: 30px; height: 30px; color: var(--jaune); }
body .service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
body .service-card p { color: var(--gris-texte); font-size: 0.98rem; }

/* ====== RÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°ALISATIONS ====== */
body .gallery { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 18px; }
body .gallery-card {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, #1d1d1d, #101010);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
body .gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gallery-image, linear-gradient(135deg, rgba(245,196,0,0.28), rgba(11,11,11,0.18)));
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.35s ease;
}
body .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.12) 0%, rgba(11,11,11,0.72) 74%, rgba(11,11,11,0.92) 100%);
}
body .gallery-card:hover::before { transform: scale(1.05); }
body .gallery-card-featured { min-height: 320px; }
body .gallery-card-placeholder::before {
  background:
    radial-gradient(circle at top right, rgba(245,196,0,0.24), transparent 34%),
    linear-gradient(135deg, #1f1f1f, #111111);
}
body .gallery-card-copy { position: relative; z-index: 1; padding: 22px 20px; }
body .gallery-kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(245,196,0,0.16);
  color: var(--jaune);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
}
body .gallery-card h3 { color: var(--blanc); font-size: 1.22rem; margin: 12px 0 8px; }
body .gallery-card p { color: rgba(255,255,255,0.82); font-size: 0.95rem; max-width: 28ch; }
body .center { text-align: center; }
body .preview-inline-note {
  color: var(--gris-texte);
  font-size: 0.95rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

/* ====== NOUVELLE GALERIE RÉALISATIONS & LIGHTBOX ====== */
body button.gallery-card, button.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  width: 100%;
}
body .gallery-actions, .gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
body .realisations-gallery .wrap {
  position: relative;
}
body .gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
body .gallery-featured {
  position: relative;
  width: 100%;
  min-height: 380px;
  max-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  text-align: left;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
body .gallery-featured:hover {
  border-color: rgba(245, 196, 0, 0.5);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}
body .gallery-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
body .gallery-featured:hover img {
  transform: scale(1.03);
}
body .gallery-featured-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 11, 11, 0.75) 40%, rgba(11, 11, 11, 0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body .gallery-featured-title {
  color: var(--blanc);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
body .gallery-featured-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 65ch;
  line-height: 1.5;
}
body .gallery-featured-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blanc);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
body .gallery-featured:hover .gallery-featured-zoom {
  background: var(--jaune);
  color: var(--noir);
  border-color: var(--jaune);
  transform: scale(1.05);
}
body .gallery-featured-zoom svg {
  width: 16px;
  height: 16px;
}
body .gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 540px) {
  body .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  body .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  body .gallery-thumbs {
    grid-template-columns: repeat(6, 1fr);
  }
  body .gallery-featured {
    min-height: 500px;
  }
}
body .gallery-thumb {
  position: relative;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: flex-end;
}
body .gallery-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
body .gallery-thumb span {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: var(--blanc);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
body .gallery-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}
body .gallery-thumb:hover img {
  transform: scale(1.08);
}
body .gallery-thumb.is-active {
  border-color: var(--jaune);
  box-shadow: 0 0 0 2px rgba(245, 196, 0, 0.3);
  transform: translateY(-2px);
}
body .gallery-thumb.is-active span {
  color: var(--jaune);
}

/* ====== LIGHTBOX ====== */
body .gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body .gallery-lightbox[aria-hidden="false"],
body .gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
body .gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body .gallery-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .gallery-lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blanc);
  font-size: 26px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
body .gallery-lightbox-close:hover {
  background: var(--jaune);
  color: var(--noir);
  transform: scale(1.08);
}
body .gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blanc);
  font-size: 32px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
body .gallery-lightbox-nav:hover {
  background: var(--jaune);
  color: var(--noir);
}
body .gallery-lightbox-prev {
  left: -20px;
}
body .gallery-lightbox-next {
  right: -20px;
}
@media (max-width: 768px) {
  body .gallery-lightbox-prev { left: 8px; }
  body .gallery-lightbox-next { right: 8px; }
  body .gallery-lightbox-close { top: -40px; right: 8px; }
}
body .gallery-lightbox figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  max-height: 85vh;
}
body .gallery-lightbox figure img {
  max-width: 100%;
  max-height: calc(85vh - 70px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
body .gallery-lightbox figcaption {
  margin-top: 14px;
  text-align: center;
  color: var(--blanc);
  max-width: 700px;
}
body .gallery-lightbox figcaption strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--jaune);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
body .gallery-lightbox figcaption span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* ====== EXPÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°RIENCE ====== */
body .exp-grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
body .exp-text h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); margin: 14px 0 18px; }
body .exp-text p { color: var(--gris-texte); margin-bottom: 16px; }
body .exp-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
body .exp-badges .badge {
  background: var(--noir);
  color: var(--blanc);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
}
body .exp-badges .badge.todo { background: var(--gris-clair); color: #999; border: 1px dashed var(--gris-bord); }
body .stat-block {
  background: var(--noir);
  border-radius: var(--r);
  padding: 40px 30px;
  text-align: center;
  color: var(--blanc);
}
body .stat-block .big {
  font-family: 'Oswald', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--jaune);
  line-height: 1;
}
body .stat-block .lbl { text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-top: 8px; }

body .stat-year-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 210px;
}

body .experience-year-device {
  width: min(330px, 86vw);
  padding: 12px 24px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.05) 42%, rgba(0,0,0,0.48)),
    #171717;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -14px 28px rgba(0,0,0,0.5),
    0 22px 55px rgba(0,0,0,0.35);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

body .experience-year-label {
  color: rgba(255,255,255,0.72);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

body .experience-year-value {
  color: #ffcc00;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  transition: transform 0.1s, filter 0.1s;
}

body .stat-year-counter.is-counting .experience-year-value {
  transform: translateY(-1px);
  filter: blur(0.4px);
}

body .stat-year-counter.is-complete .experience-year-value {
  filter: none;
  transform: translateY(0);
}

body .stat-year-counter .calendar-result {
  opacity: 1;
  visibility: visible;
  transform: none;
  text-align: center;
}

/* ====== POURQUOI NOUS ====== */
body .why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
body .why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--blanc);
  border-radius: var(--r);
  padding: 22px;
  border-left: 4px solid var(--jaune);
}
body .why-card svg { width: 28px; height: 28px; color: var(--jaune); flex-shrink: 0; margin-top: 2px; }
body .why-card h3 { font-size: 1.12rem; margin-bottom: 5px; }
body .why-card p { color: var(--gris-texte); font-size: 0.94rem; }

/* ====== CONTACT ====== */
body .contact { background: var(--noir); color: var(--blanc); }
body .contact .section-head h2 { color: var(--blanc); }
body .contact .section-head p { color: #c5c5c5; }
body .contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
body .contact-info { display: flex; flex-direction: column; gap: 14px; }
body .contact-info a, body .contact-info .line {
  display: flex; align-items: center; gap: 14px;
  background: var(--anthracite);
  padding: 18px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}
body .contact-info a:hover { background: #242424; }
body .contact-info svg { width: 24px; height: 24px; color: var(--jaune); flex-shrink: 0; }
body .contact-info .meta small { color: #999; display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }
body .contact-info .meta strong { display: block; font-weight: 600; font-size: 1.05rem; line-height: 1.42; }

body .form-card { background: var(--anthracite); border-radius: var(--r); padding: 30px 24px; }
body .form-card h3 { color: var(--blanc); margin-bottom: 20px; font-size: 1.4rem; }
body .form-note {
  margin: -4px 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(245,196,0,0.3);
  border-radius: 8px;
  background: rgba(245,196,0,0.08);
  color: #f3dd82;
  font-size: 0.92rem;
}
body .field { margin-bottom: 16px; }
body .field label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: #c5c5c5; text-transform: uppercase; letter-spacing: 1px; }
body .field input, body .field select, body .field textarea {
  width: 100%;
  background: var(--noir);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--blanc);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
body .field input:focus, body .field select:focus, body .field textarea:focus { outline: none; border-color: var(--jaune); }
body .field textarea { resize: vertical; min-height: 110px; }
body .form-card .btn-primary { width: 100%; margin-top: 6px; }
body .form-msg { margin-top: 14px; padding: 14px; border-radius: 8px; font-size: 0.95rem; display: none; }
body .form-msg.ok { display: block; background: rgba(245,196,0,0.15); color: var(--jaune); border: 1px solid var(--jaune); }
body .form-msg.err { display: block; background: rgba(255,80,80,0.12); color: #ff8080; border: 1px solid #ff8080; }

/* ====== FOOTER ====== */
body .footer { background: #060606; color: #aaa; padding: 50px 0 110px; }
body .footer .wrap { display: grid; grid-template-columns: 1fr; gap: 30px; }
body .footer .f-logo img { height: 54px; margin-bottom: 16px; }
body .footer p { font-size: 0.92rem; line-height: 1.7; }
body .footer h4 { color: var(--blanc); font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-size: 1.05rem; }
body .footer a:hover { color: var(--jaune); }
body .footer .f-links { display: flex; flex-direction: column; gap: 8px; }
body .footer .f-links span,
body .footer .f-links a { line-height: 1.6; }
body .footer .f-socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
body .footer .copyright { border-top: 1px solid #1c1c1c; margin-top: 30px; padding-top: 24px; font-size: 0.84rem; text-align: center; color: #777; }

/* ====== BARRE D'ACTION MOBILE FIXE ====== */
body .action-bar {
  position: fixed;
  bottom: 74px; left: 0; right: 0;
  background: var(--noir);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--jaune);
  z-index: 80;
}
body .action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 11px 4px;
  color: var(--blanc);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
}
body .action-bar a svg { width: 22px; height: 22px; color: var(--jaune); }
body .action-bar a:active { background: var(--anthracite); }
body .action-bar a + a { border-left: 1px solid #222; }

/* ====== RESPONSIVE DESKTOP ====== */
@media (min-width: 768px) {
  body .trust { grid-template-columns: repeat(4, 1fr); }
  body .trust .item + .item::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 1px; background: #333; }
  body .grid-services { grid-template-columns: repeat(2, 1fr); }
  body .gallery { grid-template-columns: repeat(2, 1fr); }
  body .gallery-card-featured { grid-column: span 2; }
  body .why-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ====== SOCIAL LINKS ====== */
.social-icon-link {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  margin-right: 12px;
}
.social-icon-link:last-child { margin-right: 0; }
.social-icon-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,214,90,0.45);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}
.social-icon-link svg {
  display: block;
}

/* ====== CTA PAGES INTERNES ====== */
body .page-cta, .page-cta {
  padding-top: 40px;
  padding-bottom: 30px;
}
body .page-cta-card, .page-cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}
body .page-cta-card h2, .page-cta-card h2 {
  margin: 8px 0 12px;
  color: #fff;
}
body .page-cta-card p, .page-cta-card p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.72);
}
body .page-cta-actions, .page-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (min-width: 960px) {
  .social-icon-link {
    width: 44px;
    height: 44px;
    margin-right: 10px;
  }
  body .burger { display: none; }
  body .nav-desktop { display: flex; }
  body .action-bar { display: none; }
  body .footer { padding-bottom: 50px; }
  body--has-bottom-badge { padding-bottom: 96px; }
  body .hero { min-height: 680px; }
  body .hero-bg {
    background-image: linear-gradient(90deg, rgba(11,11,11,0.96) 0%, rgba(11,11,11,0.78) 45%, rgba(11,11,11,0.2) 100%), var(--jd-hero-desktop);
    background-position: center right;
  }
  body .hero .wrap { padding-top: 60px; }
  body .hero .hero-inner { max-width: 640px; }
  body .grid-services { grid-template-columns: repeat(3, 1fr); }
  body .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(170px, 1fr);
  }
  body .gallery-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
  }
  body .exp-grid { grid-template-columns: 1.4fr 1fr; }
  body .contact-grid { grid-template-columns: 1fr 1.2fr; }
  body .footer .wrap { grid-template-columns: 2fr 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  body * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
