/* ============================================
   GARAGE FORCE — Style Industriel & Bold
   Palette: #111111, #dc2626, #6b7280, #ffffff
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --dark2:   #1a1a1a;
  --red:     #dc2626;
  --red-d:   #b91c1c;
  --steel:   #374151;
  --gray:    #6b7280;
  --lgray:   #9ca3af;
  --white:   #ffffff;
  --border:  rgba(255,255,255,0.1);
  --radius:  4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius); font-weight: 900;
  font-size: 0.9rem; text-decoration: none; border: 3px solid transparent;
  cursor: pointer; transition: all 0.25s ease; letter-spacing: 1px;
  text-transform: uppercase; font-family: 'Roboto', sans-serif;
}
.btn--danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--danger:hover { background: var(--red-d); border-color: var(--red-d); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(220,38,38,0.4); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--xl { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- SECTION HEADER ---- */
.section-label {
  font-size: 0.75rem; font-weight: 900; letter-spacing: 4px;
  color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 24px;
}
.section-title span { color: var(--red); }
.section-header { margin-bottom: 64px; }

/* ---- TOP BAR ---- */
/* ---- NAVIGATION ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark2);
  border-bottom: 3px solid var(--red);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav__logo {
  font-family: 'Black Han Sans', sans-serif; font-size: 1.6rem;
  letter-spacing: 4px; text-decoration: none; color: var(--white);
  flex-shrink: 0;
}
.logo-bracket { color: var(--red); }
.logo-accent { color: var(--red); }
.nav__links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav__links a {
  color: var(--lgray); text-decoration: none; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  min-width: 38px; min-height: 38px; justify-content: center; align-items: center;
}
.nav__burger span { display: block; width: 26px; height: 3px; background: var(--white); }
.nav__mobile {
  display: none; flex-direction: column;
  background: var(--dark2); border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 16px 24px; color: var(--white); text-decoration: none;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid var(--border); font-size: 0.9rem;
}

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--dark2) center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.95) 40%, rgba(17,17,17,0.6));
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px; padding-top: 80px;
}
.hero__tag {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 4px;
  color: var(--red); margin-bottom: 20px; text-transform: uppercase;
}
.hero__title {
  font-family: 'Black Han Sans', sans-serif;
  line-height: 0.9; margin-bottom: 28px;
}
.hero__title-line {
  display: block;
  font-size: clamp(5rem, 14vw, 11rem);
  letter-spacing: 8px;
}
.hero__title-line--accent { color: var(--red); }
.hero__sub {
  font-size: 1.2rem; color: var(--lgray);
  max-width: 500px; margin-bottom: 40px; line-height: 1.7; font-weight: 400;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 3px solid var(--red); border-bottom: 3px solid var(--red);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(8px); } }

/* ---- ACCROCHE ---- */
.accroche { background: var(--red); padding: 0; }
.accroche__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: stretch;
}
.accroche__item {
  flex: 1; padding: 28px 24px; display: flex; flex-direction: column;
  align-items: center; gap: 4px; text-align: center;
}
.accroche__item strong { font-size: 1rem; font-weight: 900; letter-spacing: 1px; }
.accroche__item span { font-size: 0.8rem; opacity: 0.85; }
.accroche__sep { color: rgba(255,255,255,0.4); font-weight: 900; font-size: 1.2rem; padding: 28px 8px; align-self: center; }

/* ---- SERVICES ---- */
.services { background: var(--black); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-block {
  background: var(--dark2); position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.service-block:hover { transform: scale(1.02); z-index: 1; }
.service-block__num {
  position: absolute; top: 0; right: 0;
  font-family: 'Black Han Sans', sans-serif; font-size: 5rem;
  color: rgba(255,255,255,0.04); line-height: 1; padding: 8px 12px;
  pointer-events: none;
}
.service-block__img {
  height: 180px; background: var(--steel) center/cover no-repeat;
  position: relative;
}
.service-block__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark2));
}
.service-block__body { padding: 24px; }
.service-block__body h3 {
  font-family: 'Black Han Sans', sans-serif; font-size: 1.3rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.service-block__body p { color: var(--lgray); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.service-block__body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-block__body ul li { font-size: 0.85rem; color: var(--lgray); padding-left: 12px; position: relative; }
.service-block__body ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 0.8rem; }

/* ---- ATELIER ---- */
.atelier {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.atelier__img-col {
  background: var(--steel) center/cover no-repeat;
  position: relative; min-height: 400px;
}
.atelier__img-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--black));
}
.atelier__content-col {
  background: var(--black); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.atelier__content-col p { color: var(--lgray); margin-bottom: 16px; font-size: 1rem; line-height: 1.8; }
.atelier__chiffres {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0;
}
.chiffre { text-align: center; padding: 20px; border: 2px solid var(--red); border-radius: var(--radius); }
.chiffre strong { display: block; font-family: 'Black Han Sans', sans-serif; font-size: 3rem; color: var(--red); line-height: 1; }
.chiffre span { font-size: 0.8rem; color: var(--lgray); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ---- ÉQUIPE ---- */
.equipe { background: var(--dark2); }
.equipe__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.membre { overflow: hidden; position: relative; }
.membre__photo {
  height: 300px; background: var(--steel) top/cover no-repeat;
  filter: grayscale(60%); transition: filter 0.4s, transform 0.4s;
}
.membre:hover .membre__photo { filter: grayscale(0%); transform: scale(1.03); }
.membre__photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(17,17,17,0.9));
}
.membre__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px; z-index: 1;
}
.membre__info strong { display: block; font-weight: 900; font-size: 1rem; }
.membre__info span { font-size: 0.8rem; color: var(--red); font-weight: 700; }

/* ---- GALERIE ---- */
.galerie { background: var(--black); }
.galerie__mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; gap: 4px; }
.gal-item { background: var(--steel) center/cover no-repeat; transition: filter 0.3s; cursor: pointer; }
.gal-item:hover { filter: brightness(1.2); }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

/* ---- AVIS ---- */
.avis { background: var(--dark2); }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.avis-card {
  background: var(--black); padding: 32px;
  border-left: 4px solid transparent; transition: border-color 0.3s;
}
.avis-card:hover { border-left-color: var(--red); }
.avis-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.avis-card__initiales {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; flex-shrink: 0;
}
.avis-card__top strong { display: block; font-weight: 900; }
.avis-stars { color: var(--red); font-size: 1rem; }
.avis-card p { color: var(--lgray); font-size: 0.95rem; line-height: 1.7; font-style: italic; }

/* ---- CONTACT ---- */
.contact { background: var(--black); }
.contact__wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact__left .section-title { margin-top: 8px; margin-bottom: 40px; }
.contact__infos { display: flex; flex-direction: column; gap: 24px; }
.contact__info-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact__info-item strong { display: block; font-weight: 900; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact__info-item span, .contact__info-item a { color: var(--lgray); font-size: 0.9rem; text-decoration: none; }
.contact__info-item a:hover { color: var(--red); }

.contact__right h3 {
  font-family: 'Black Han Sans', sans-serif; font-size: 2rem;
  letter-spacing: 3px; margin-bottom: 28px;
}
.contact__right h3 span { color: var(--red); }
.contact__form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2); border: 2px solid var(--border); border-radius: var(--radius);
  color: var(--white); padding: 16px; font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s; outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }

/* ---- FOOTER ---- */
.footer { background: var(--dark2); border-top: 3px solid var(--red); padding: 64px 0 0; }
.footer__top { display: flex; align-items: center; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.footer__logo {
  font-family: 'Black Han Sans', sans-serif; font-size: 2rem;
  letter-spacing: 4px; text-decoration: none; color: var(--white);
}
.footer__top p { color: var(--lgray); font-size: 0.9rem; max-width: 400px; }
.footer__mid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer__mid h4 { font-size: 0.8rem; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; color: var(--red); }
.footer__mid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__mid ul li, .footer__mid ul a { color: var(--lgray); font-size: 0.9rem; text-decoration: none; }
.footer__mid ul a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bottom span { color: var(--gray); font-size: 0.85rem; }

/* ---- SLIDE-IN ANIMATION ---- */
.slide-in { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in.visible { opacity: 1; transform: translateX(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .atelier { grid-template-columns: 1fr; }
  .atelier__img-col { min-height: 360px; }
  .atelier__img-col::after { background: linear-gradient(to bottom, transparent 50%, var(--black)); }
  .atelier__content-col { padding: 48px 32px; }
  .contact__wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
.nav__inner { padding: 12px 16px; gap: 8px; overflow: hidden; }
  .nav__logo { font-size: 1rem; letter-spacing: 1px; }
  .nav__burger { display: flex; flex-shrink: 0; margin-left: auto; }
  .nav__links, .nav > .btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .equipe__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item--tall { grid-row: span 1; }
  .avis__grid { grid-template-columns: 1fr; }
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .accroche__inner { flex-wrap: wrap; }
  .accroche__sep { display: none; }
  .accroche__item { flex: 1 1 45%; }
  .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .btn--xl { width: 100%; display: flex; justify-content: center; }
  .footer__logo { font-size: 1.2rem; letter-spacing: 2px; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .equipe__grid { grid-template-columns: 1fr 1fr; }
  .hero__title-line { font-size: clamp(3rem, 16vw, 5rem); }
  .btn { padding: 10px 16px; font-size: 0.82rem; }
  .btn--xl { padding: 13px 22px; font-size: 0.9rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px; font-size: 0.9rem; }
  .footer__mid { grid-template-columns: 1fr; }
  .atelier__chiffres { grid-template-columns: repeat(2, 1fr); }
}
