/* ======================================
   LE LABO DU PNEU — style.css
   ====================================== */

:root {
  --orange:       #F07000;
  --orange-hover: #FF8500;
  --orange-dim:   rgba(240, 112, 0, 0.14);
  --orange-glow:  0 0 32px rgba(240, 112, 0, 0.22);
  --black:        #0A0A0A;
  --dark:         #111111;
  --card:         #181818;
  --card-hover:   #202020;
  --border:       #272727;
  --text:         #FFFFFF;
  --text-muted:   #888888;
  --green:        #22C55E;
  --font:         'Outfit', sans-serif;
  --radius:       12px;
  --radius-lg:    18px;
  --ease:         0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Utilities ── */
.text-orange { color: var(--orange); }

.stars {
  color: #FFB800;
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 1;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--orange-glow);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 17px 34px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Section base ── */
.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}

/* Menu mobile ouvert : on retire le backdrop-filter du header.
   Sinon un parent "filtré" piège le menu en position:fixed et
   le contenu de la page transparaît derrière le menu. */
body.menu-open .header,
body.menu-open .header.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 92px;
  width: auto;
  transition: opacity var(--ease), height 0.4s ease;
}
.header.scrolled .header__logo img { height: 86px; }
.header__logo img:hover { opacity: 0.85; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--orange); }

.nav__cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.88) 40%,
    rgba(10,10,10,0.60) 70%,
    rgba(10,10,10,0.45) 100%
  );
}
/* Bottom fade into next section */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,112,0,0.12);
  border: 1px solid rgba(240,112,0,0.28);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 42px;
  max-width: 560px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--ease), color var(--ease);
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services { background: var(--dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease,
              background 0.35s ease, box-shadow 0.35s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,112,0,0.28);
  background: var(--card-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), var(--orange-glow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 58px;
  height: 58px;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card__price {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
}
.service-card__price strong {
  font-size: 1.25rem;
  font-weight: 800;
}

/* ══════════════════════════════════════
   OFFRES
   ══════════════════════════════════════ */
.offres {
  background: radial-gradient(ellipse at 50% 0%, rgba(240,112,0,0.07) 0%, var(--black) 65%);
}

.offres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.offre-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.offre-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,112,0,0.3);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}

.offre-card--best {
  border-color: rgba(240,112,0,0.6);
  background: linear-gradient(145deg, #1C1308 0%, var(--card) 60%);
}
.offre-card--best:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.3), var(--orange-glow);
}

.offre-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offre-card__icon { color: var(--orange); }

.offre-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.price-amount {
  display: block;
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.offre-card__detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.offre-card__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin-top: -4px;
}

.offre-card .btn { margin-top: auto; }

/* ══════════════════════════════════════
   TARIFS & SERVICES
   ══════════════════════════════════════ */
.tarifs {
  background: radial-gradient(ellipse at 50% 0%, rgba(240,112,0,0.07) 0%, var(--black) 65%);
}

/* ── Configurateur pneus ── */
.tarif-config {
  position: relative;
  background: linear-gradient(145deg, #1C1308 0%, var(--card) 60%);
  border: 1px solid rgba(240,112,0,0.45);
  border-radius: var(--radius-lg);
  padding: 38px;
  margin-bottom: 28px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}

.tarif-config__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--orange-glow);
}

.tarif-config__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.tarif-config__icon {
  width: 56px;
  height: 56px;
  color: var(--orange);
  flex-shrink: 0;
}
.tarif-config__icon svg { width: 100%; height: 100%; }
.tarif-config__label {
  display: block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tarif-config__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.tarif-config__title span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1.1rem;
}

.tarif-config__instruction {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tarif-config__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.size-pill {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  min-width: 60px;
}
.size-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.size-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: var(--orange-glow);
}
.size-pill--wide { min-width: auto; }

.tarif-config__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.tarif-config__pricewrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.tarif-config__from {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.tarif-config__from[hidden] { display: none; }
.tarif-config__old {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--orange);
}
.tarif-config__old[hidden] { display: none; }
.tarif-config__price {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tarif-config__unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.tarif-config__unit[hidden] { display: none; }

.tarif-config__note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── Cartes catégories ── */
.tarifs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tarif-cat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tarif-cat:hover {
  transform: translateY(-5px);
  border-color: rgba(240,112,0,0.28);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32);
}

.tarif-cat__icon {
  width: 50px;
  height: 50px;
  color: var(--orange);
  margin-bottom: 18px;
}
.tarif-cat__icon svg { width: 100%; height: 100%; }

.tarif-cat__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tarif-cat__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tarif-cat__list { display: flex; flex-direction: column; }

.tarif-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
}
.tarif-line:last-child { border-bottom: none; }

.tarif-line__label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.tarif-line__label small {
  color: var(--text-muted);
  font-size: 0.8em;
}

.tarif-line__price {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.price-old {
  display: inline-block;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85em;
  text-decoration: line-through;
  margin-right: 4px;
}
.tarif-line__price--gift {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}
.tarif-line__price--gift small {
  display: block;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  font-size: 0.92em;
}

.tarif-line--simple { border-bottom: none; padding: 7px 0; }
.tarif-line--simple .tarif-line__label {
  position: relative;
  padding-left: 22px;
}
.tarif-line--simple .tarif-line__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.tarif-cat__devis {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--orange);
}

.tarif-cat__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tarif-cat--promo {
  border-color: rgba(34,197,94,0.4);
  background: linear-gradient(145deg, #0C1A10 0%, var(--card) 60%);
}

.tarif-cat--cta {
  background: linear-gradient(145deg, #1C1308 0%, var(--card) 60%);
  border-color: rgba(240,112,0,0.4);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.tarif-cat__ctatext {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.tarif-cat--cta .btn { margin-top: 0; }

/* ══════════════════════════════════════
   GALERIE
   ══════════════════════════════════════ */
.galerie { background: var(--dark); }

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}

.galerie__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.galerie__item:hover img { transform: scale(1.06); }

.galerie__item--large { grid-row: span 2; }

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galerie__item:hover .galerie__overlay { opacity: 1; }
.galerie__overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ══════════════════════════════════════
   AVIS CLIENTS
   ══════════════════════════════════════ */
.avis { background: var(--dark); }

.avis__global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.avis__global .stars { font-size: 1.25rem; }

.avis__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.avis-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.avis-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,112,0,0.22);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.avis-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avis-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 5px;
}

.avis-card__google { margin-left: auto; }

.avis-card__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-style: italic;
}

.avis-card__date {
  display: block;
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}

.avis__cta {
  text-align: center;
  margin-top: 44px;
}

/* ══════════════════════════════════════
   LOCALISATION
   ══════════════════════════════════════ */
.localisation { background: var(--black); }

.localisation__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: stretch;
  min-height: 460px;
}

.localisation__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-block__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.info-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.info-block p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}
.info-block p a {
  color: var(--orange);
  font-weight: 600;
  transition: opacity var(--ease);
}
.info-block p a:hover { opacity: 0.8; }

.horaires__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
}
.horaires__badge {
  background: var(--orange);
  color: #fff;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.horaires__badge--closed {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}
.horaires__open {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 500;
}

.localisation__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.localisation__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  filter: grayscale(20%);
}

/* ══════════════════════════════════════
   SUIVEZ-NOUS / RÉSEAUX
   ══════════════════════════════════════ */
.socials { background: var(--black); }

.socials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: transform 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, background 0.35s ease;
}
.social-card:hover {
  transform: translateY(-5px);
  background: var(--card-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.social-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.social-card--tiktok .social-card__icon {
  background: #000;
  border: 1px solid var(--border);
}
.social-card--tiktok:hover { border-color: rgba(37,244,238,0.45); }
.social-card--insta .social-card__icon {
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}
.social-card--insta:hover { border-color: rgba(220,39,67,0.5); }

.social-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-right: auto;
}
.social-card__network {
  font-size: 1.125rem;
  font-weight: 700;
}
.social-card__handle {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.social-card__follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}
.social-card__follow svg { transition: transform 0.3s ease; }
.social-card:hover .social-card__follow svg { transform: translateX(4px); }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq { background: var(--dark); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(240,112,0,0.35);
  background: var(--card-hover);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--orange); }

.faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item__icon::before { top: 8px; left: 1px; width: 16px; height: 2px; }
.faq-item__icon::after  { top: 1px; left: 8px; width: 2px; height: 16px; }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); opacity: 0; }

.faq-item__a { padding: 0 24px 22px; }
.faq-item__a p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.faq-item__a a { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 210px;
  height: auto;
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.footer__social:hover { color: var(--orange); }

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer__col ul a:hover { color: var(--orange); }

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer__contact-list svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__contact-list a { color: var(--orange); font-weight: 600; }
.footer__contact-list a:hover { opacity: 0.85; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__credit {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--ease);
}
.footer__credit a:hover { color: #0A66C2; }

/* ══════════════════════════════════════
   FLOATING CTA (mobile)
   ══════════════════════════════════════ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.9375rem;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(240,112,0,0.45);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.float-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(240,112,0,0.55);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger dans les grilles */
.services__grid  .fade-up:nth-child(1) { transition-delay: 0.04s; }
.services__grid  .fade-up:nth-child(2) { transition-delay: 0.09s; }
.services__grid  .fade-up:nth-child(3) { transition-delay: 0.14s; }
.services__grid  .fade-up:nth-child(4) { transition-delay: 0.19s; }
.services__grid  .fade-up:nth-child(5) { transition-delay: 0.24s; }
.services__grid  .fade-up:nth-child(6) { transition-delay: 0.29s; }
.services__grid  .fade-up:nth-child(7) { transition-delay: 0.34s; }
.services__grid  .fade-up:nth-child(8) { transition-delay: 0.39s; }

.offres__grid .fade-up:nth-child(1) { transition-delay: 0.05s; }
.offres__grid .fade-up:nth-child(2) { transition-delay: 0.11s; }
.offres__grid .fade-up:nth-child(3) { transition-delay: 0.17s; }
.offres__grid .fade-up:nth-child(4) { transition-delay: 0.23s; }

.tarifs__grid .fade-up:nth-child(1) { transition-delay: 0.04s; }
.tarifs__grid .fade-up:nth-child(2) { transition-delay: 0.09s; }
.tarifs__grid .fade-up:nth-child(3) { transition-delay: 0.14s; }
.tarifs__grid .fade-up:nth-child(4) { transition-delay: 0.19s; }
.tarifs__grid .fade-up:nth-child(5) { transition-delay: 0.24s; }
.tarifs__grid .fade-up:nth-child(6) { transition-delay: 0.29s; }

.avis__grid .fade-up:nth-child(1) { transition-delay: 0.05s; }
.avis__grid .fade-up:nth-child(2) { transition-delay: 0.11s; }
.avis__grid .fade-up:nth-child(3) { transition-delay: 0.17s; }
.avis__grid .fade-up:nth-child(4) { transition-delay: 0.23s; }

.galerie__grid .fade-up:nth-child(1) { transition-delay: 0.05s; }
.galerie__grid .fade-up:nth-child(2) { transition-delay: 0.12s; }
.galerie__grid .fade-up:nth-child(3) { transition-delay: 0.19s; }

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .offres__grid    { grid-template-columns: repeat(2, 1fr); }
  .tarifs__grid    { grid-template-columns: repeat(2, 1fr); }
  .avis__grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 36px; }

  .localisation__inner {
    grid-template-columns: 1fr;
  }
  .localisation__map { min-height: 380px; }
  .localisation__map iframe { min-height: 380px; }

  .galerie__grid { height: auto; grid-template-rows: 280px 280px; }
  .galerie__item--large { min-height: 280px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Header mobile */
  .hamburger { display: flex; }
  .header__logo img { height: 64px; }
  .header.scrolled .header__logo img { height: 60px; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1050;
  }
  .nav.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }
  .nav__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
  }
  .nav__cta {
    margin-left: 0;
    font-size: 1rem;
    padding: 13px 28px;
  }

  /* Hero */
  .hero__title { font-size: 2.5rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  /* Grids */
  .services__grid  { grid-template-columns: 1fr; }
  .offres__grid    { grid-template-columns: 1fr; }
  .tarifs__grid    { grid-template-columns: 1fr; }
  .socials__grid   { grid-template-columns: 1fr; }
  .avis__grid      { grid-template-columns: 1fr; }

  /* Configurateur tarifs */
  .tarif-config { padding: 26px 20px; }
  .tarif-config__result { flex-direction: column; align-items: flex-start; }
  .tarif-config__cta { width: 100%; justify-content: center; }
  .size-pill { flex: 1 1 auto; padding: 11px 14px; }
  .galerie__grid   { grid-template-columns: 1fr; height: auto; grid-template-rows: auto; }
  .galerie__item--large { grid-row: auto; }
  .galerie__item   { min-height: 240px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  /* Float CTA */
  .float-cta { display: inline-flex; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 2.1rem; }
  .section__title { font-size: 1.875rem; }
  .price-amount { font-size: 2.75rem; }
  .offre-card { padding: 28px 20px; }
  .service-card { padding: 26px 20px; }
}

/* ══════════════════════════════════════
   BANNIÈRE COOKIES (RGPD)
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1200;
  width: calc(100% - 36px);
  max-width: 880px;
  background: linear-gradient(145deg, #1A1206 0%, var(--card) 55%);
  border: 1px solid rgba(240,112,0,0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateX(-50%) translateY(160%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
}

.cookie-banner__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--orange-dim);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner__text { flex: 1; }
.cookie-banner__text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cookie-banner__text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.cookie-banner__text a {
  color: var(--orange);
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__actions .btn { padding: 11px 22px; }

/* Masque le bouton d'appel flottant tant que la bannière est ouverte */
body.cookie-open .float-cta { display: none; }

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 20px);
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}
