/* ============================================================================
   NOVAPIECESAUTO — Feuille de style
   ----------------------------------------------------------------------------
   CHARTE GRAPHIQUE [À REMPLIR] :
   Pour adapter les couleurs à votre identité, modifiez uniquement les
   variables ci-dessous.
   ============================================================================ */

:root {
  /* --- Couleurs [À REMPLIR] --- */
  --c-accent: #ff5c1a;        /* Couleur principale (boutons, accents)  */
  --c-accent-2: #ff3d00;      /* Dégradé de la couleur principale       */
  --c-dark: #0d1420;          /* Fond sombre (hero, promotions, footer) */
  --c-dark-2: #111a2c;        /* Fond sombre secondaire                 */
  --c-dark-3: #16213a;        /* Fond sombre tertiaire                  */
  --c-light: #f4f6fa;         /* Fond clair des sections                */
  --c-white: #ffffff;
  --c-text: #1c2333;          /* Texte principal                        */
  --c-muted: #5b6478;         /* Texte secondaire                       */

  /* --- Typographie --- */
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* --- Divers --- */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -18px rgba(13, 20, 32, 0.45);
  --shadow-lg: 0 28px 60px -22px rgba(13, 20, 32, 0.55);
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ============================ TYPOGRAPHIE ============================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}

.section__kicker::before,
.section__kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-accent);
  opacity: 0.55;
}

.section__title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--c-dark);
}

.section__lead {
  color: var(--c-muted);
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

/* ============================ BOUTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  box-shadow: 0 12px 28px -10px rgba(255, 92, 26, 0.55);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px -12px rgba(255, 92, 26, 0.7);
}

.btn--ghost {
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.14);
}

.btn--ghost-light {
  color: var(--c-dark);
  border-color: rgba(13, 20, 32, 0.35);
  background: transparent;
}

.btn--ghost-light:hover {
  border-color: var(--c-dark);
  background: rgba(13, 20, 32, 0.06);
}

.btn--invert {
  color: var(--c-dark);
  background: var(--c-white);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.5);
}

.btn--full {
  width: 100%;
}

.btn__icon {
  width: 18px;
  height: 18px;
}

/* ============================ EN-TÊTE ============================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}

.header.is-scrolled {
  background: rgba(13, 20, 32, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand__logo {
  transform: rotate(-8deg) scale(1.05);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.brand__name::after {
  content: "Pièces Auto";
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--c-white);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link--cta {
  margin-left: 0.6rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  box-shadow: 0 10px 24px -8px rgba(255, 92, 26, 0.6);
}

/* Bouton hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  z-index: 110;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--c-white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--c-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 20, 32, 0.94) 0%, rgba(13, 20, 32, 0.72) 45%, rgba(13, 20, 32, 0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  margin: 1.1rem 0 0.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__slogan {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__logo-card {
  width: clamp(150px, 22vw, 200px);
  height: clamp(150px, 22vw, 200px);
  border-radius: 32px;
  background: var(--c-white);
  padding: clamp(0.9rem, 2vw, 1.4rem);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.7rem;
  animation: heroFloat 7s ease-in-out infinite;
}

.hero__logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 2px;
  height: 46px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--c-accent);
  animation: scrollDown 1.8s var(--ease) infinite;
}

@keyframes scrollDown {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ============================ INFO IMPORTANTE ============================ */
.infos {
  background: #fffaf0;
}

.infos__card {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 180, 0, 0.5);
  background: var(--c-white);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.infos__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.infos__icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7b500, #e8a000);
  color: var(--c-white);
  box-shadow: 0 12px 26px -12px rgba(232, 160, 0, 0.7);
}

.infos__icon svg {
  width: 26px;
  height: 26px;
}

.infos__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #8a6200;
  margin-bottom: 0.25rem;
}

.infos__text {
  color: #6b4f00;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 560px) {
  .infos__card {
    flex-direction: column;
    text-align: center;
    padding: 1.6rem 1.2rem;
  }

  .infos__content {
    text-align: center;
  }
}

/* ============================ PRÉSENTATION ============================ */
.presentation {
  background: var(--c-light);
}

.presentation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.presentation__text p {
  color: var(--c-muted);
  margin-bottom: 1rem;
  max-width: 62ch;
}

.presentation__points {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.presentation__points li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-text);
  font-weight: 500;
}

.presentation__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  box-shadow: 0 4px 10px -4px rgba(255, 92, 26, 0.6);
}

.presentation__points li::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 0.56em;
  width: 0.42rem;
  height: 0.24rem;
  border-left: 2px solid var(--c-white);
  border-bottom: 2px solid var(--c-white);
  transform: rotate(-45deg);
}

.presentation__aside {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
}

.presentation__card {
  background: var(--c-white);
  border: 1px solid rgba(13, 20, 32, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.presentation__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.presentation__stat {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.1;
}

.presentation__label {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-top: 0.35rem;
}

/* ============================ FOURNISSEURS ============================ */
.fournisseurs {
  background: var(--c-white);
}

.fournisseurs__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
}

.fournisseurs__side {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fournisseurs__side img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.fournisseurs__side:hover img {
  transform: scale(1.05);
}

.fournisseurs__side figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(13, 20, 32, 0.85));
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.fournisseurs__main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.fournisseurs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.1rem;
}

.fournisseur {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.2rem;
  border: 1px solid rgba(13, 20, 32, 0.1);
  border-radius: var(--radius);
  background: var(--c-light);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.fournisseur:hover {
  border-color: var(--c-accent);
  background: var(--c-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.fournisseur img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.fournisseur:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.btn--ghost-dark {
  color: var(--c-dark);
  border: 2px solid rgba(13, 20, 32, 0.35);
  background: transparent;
}

.btn--ghost-dark:hover {
  border-color: var(--c-dark);
  background: rgba(13, 20, 32, 0.05);
}

.btn--center {
  align-self: center;
}

/* ============================ SERVICES ============================ */
.services {
  background: var(--c-light);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.service {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.service:hover {
  transform: translateY(-8px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-lg);
}

.service__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 92, 26, 0.14), rgba(255, 61, 0, 0.1));
  color: var(--c-accent);
  margin-bottom: 1.3rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.service__icon svg {
  width: 30px;
  height: 30px;
}

.service:hover .service__icon {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
  transform: scale(1.06) rotate(-4deg);
}

.service__title {
  font-size: 1.35rem;
  color: var(--c-dark);
  margin-bottom: 0.6rem;
}

.service__text {
  color: var(--c-muted);
  font-size: 0.98rem;
}

/* ============================ PROMOTIONS ============================ */
.promotions {
  background: linear-gradient(160deg, var(--c-dark) 0%, var(--c-dark-3) 100%);
}

.promotions .section__title {
  color: var(--c-white);
}

.promotions .section__lead {
  color: rgba(255, 255, 255, 0.72);
}

.promotions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.promo {
  background: var(--c-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.promo:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7);
}

.promo__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.promo:hover .promo__media img {
  transform: scale(1.07);
}

.promo__body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.promo__title {
  font-size: 1.25rem;
  color: var(--c-white);
  margin-bottom: 0.4rem;
}

.promo__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.promo__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid rgba(255, 92, 26, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.promotions__action {
  text-align: center;
  margin-top: 2.8rem;
}

/* Panneau « Promotions à venir » */
.promo-soon {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: var(--c-dark-2);
}

.promo-soon__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
  box-shadow: 0 16px 32px -12px rgba(255, 92, 26, 0.6);
  animation: heroFloat 6s ease-in-out infinite;
}

.promo-soon__icon svg {
  width: 34px;
  height: 34px;
}

.promo-soon__title {
  font-size: 1.6rem;
  color: var(--c-white);
  margin-bottom: 0.7rem;
}

.promo-soon__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0 auto;
}

/* ============================ MAGASIN ============================ */
.magasin {
  background: var(--c-light);
}

.magasin__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.magasin__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.magasin__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.magasin__figure:hover img {
  transform: scale(1.04);
}

.magasin__figure figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(13, 20, 32, 0.8);
  backdrop-filter: blur(6px);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 500;
}

.magasin__info {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.magasin__block {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(13, 20, 32, 0.1);
}

.magasin__heading {
  font-size: 1.15rem;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.magasin__heading::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
}

.magasin__text {
  color: var(--c-muted);
}

.magasin__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.magasin__hours strong {
  color: var(--c-text);
  font-weight: 600;
}

.magasin__map {
  height: 180px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(13, 20, 32, 0.3);
  background: var(--c-light);
  display: grid;
  place-items: center;
  color: var(--c-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.magasin__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  display: block;
}

/* ============================ CONTACT RAPIDE ============================ */
.contact {
  background: var(--c-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--c-light);
  border: 1px solid rgba(13, 20, 32, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.contact__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--c-white);
  border-color: var(--c-accent);
}

.contact__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
  margin-bottom: 1.1rem;
  box-shadow: 0 12px 26px -10px rgba(255, 92, 26, 0.6);
}

.contact__icon svg {
  width: 26px;
  height: 26px;
}

.contact__title {
  font-size: 1.1rem;
  color: var(--c-dark);
  margin-bottom: 0.3rem;
}

.contact__value {
  color: var(--c-muted);
  font-weight: 500;
}

.contact__card:hover .contact__value {
  color: var(--c-accent);
}

/* ============================ CTA FINAL ============================ */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta::before {
  width: 320px;
  height: 320px;
  top: -160px;
  right: -80px;
}

.cta::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: -60px;
}

.cta__inner {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  color: var(--c-white);
}

.cta__title {
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  max-width: 780px;
  margin: 0 auto 1rem;
  text-transform: uppercase;
}

.cta__text {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  opacity: 0.92;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================ PAGES INTERNES ============================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--c-dark);
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 92, 26, 0.18), rgba(13, 20, 32, 0) 55%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  text-transform: uppercase;
}

.page-hero__lead {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.breadcrumb {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--c-accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Contenu texte (pages légales et autres) --- */
.prose {
  max-width: 780px;
  margin-inline: auto;
}

.prose h2 {
  font-size: 1.5rem;
  color: var(--c-dark);
  margin: 2.4rem 0 0.9rem;
}

.prose h3 {
  font-size: 1.2rem;
  color: var(--c-dark);
  margin: 1.8rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--c-muted);
  font-size: 0.98rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
}

.prose ul li {
  margin-bottom: 0.4rem;
}

.prose strong {
  color: var(--c-text);
}

.legal-block {
  background: var(--c-light);
  border: 1px solid rgba(13, 20, 32, 0.08);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
}

.legal-block p {
  margin-bottom: 0.4rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

/* --- Page marques --- */
.marque-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.marque-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.6rem;
  background: var(--c-white);
  border: 1px solid rgba(13, 20, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.marque-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.marque-card__logo {
  width: 100%;
  height: 90px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--c-light);
  border-radius: var(--radius-sm);
}

.marque-card__logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.marque-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-dark);
}

.marque-card__text {
  font-size: 0.95rem;
  color: var(--c-muted);
}

/* --- Page services --- */
.service-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.service-feature {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--c-accent);
}

.service-feature__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
  margin-bottom: 1.2rem;
}

.service-feature__icon svg {
  width: 26px;
  height: 26px;
}

.service-feature__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-dark);
  margin-bottom: 0.6rem;
}

.service-feature__text {
  color: var(--c-muted);
  font-size: 0.98rem;
}

.service-feature__photo {
  margin: 1.2rem 0 0.4rem;
}

.service-feature__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: block;
}

.service-feature__list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.service-feature__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--c-muted);
  font-size: 0.95rem;
}

.service-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
}

/* --- Page infos / horaires --- */
.horaires-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 480px;
  margin-inline: auto;
}

.horaires-figure img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.horaires-figure figcaption {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(13, 20, 32, 0.8);
  backdrop-filter: blur(6px);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 500;
}

.infos-page--dark {
  background: var(--c-dark);
}

.infos-page--dark .section__title {
  color: var(--c-white);
}

.infos-page--dark .section__lead {
  color: rgba(255, 255, 255, 0.7);
}

.fermeture-card {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.7rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 180, 0, 0.5);
  background: var(--c-white);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fermeture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fermeture-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: var(--c-white);
}

.fermeture-card__content {
  flex: 1;
}

.fermeture-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-dark);
  margin-bottom: 0.35rem;
}

.fermeture-card__text {
  color: var(--c-muted);
  font-size: 0.97rem;
}

/* ============================ PIED DE PAGE ============================ */
.footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.8rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.4rem;
}

.footer__nav a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s var(--ease);
}

.footer__nav a:hover {
  color: var(--c-accent);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.4rem;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s var(--ease);
}

.footer__legal a:hover {
  color: var(--c-accent);
}

.footer__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer .brand__name {
  font-size: 1.2rem;
}

/* ============================ ANIMATIONS AU SCROLL ============================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero__bg,
  .hero__logo-card,
  .hero__scroll-line::after {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================ RESPONSIVE ============================ */
@media (min-width: 560px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marque-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .fournisseurs__wrap {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 3rem;
  }

  .fournisseur {
    min-height: 130px;
  }

  .presentation__grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 3.5rem;
  }

  .presentation__aside {
    grid-template-columns: 1fr;
  }

  .presentation__card {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1.3rem 1.5rem;
  }

  .magasin__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }

  .contact__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .promotions__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .marque-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Navigation mobile --- */
@media (max-width: 899.98px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: grid;
    place-items: center;
    background: rgba(13, 20, 32, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav__link {
    font-size: 1.35rem;
    padding: 0.7rem 1.2rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.05s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.10s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.15s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.20s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 0.25s; }
  .nav.is-open .nav__link:nth-child(6) { transition-delay: 0.30s; }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.8rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 110;
  }

  .section__title {
    font-size: 2.1rem;
  }
}
