/* ═══════════════════════════════════════════════════════
   KIMOCHI — style.css
   Design épuré, géométrique, inspiré du logo
   Palette : #170000 · #b60000 · #ffd9d9
═══════════════════════════════════════════════════════ */

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

/* ─── VARIABLES ─────────────────────────────── */
:root {
  --red:        #b60000;
  --red-hover:  #d40000;
  --dark:       #000000;
  --dark-2:     #0a0a0a;
  --light:      #ffd9d9;
  --light-2:    #fff0f0;
  --white:      #ffffff;
  --nav-h:      68px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --font:       'Outfit', system-ui, sans-serif;
}

/* ─── BASE ───────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  /* Fond dynamique géré par JS via opacity sur .bg-layer */
}

.bg-layer {
  position: fixed;
  inset: 0;
  background: var(--light);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; height: auto; }

/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ─── CONTENEUR ──────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ─── Logo KIMOCHI.svg ────────────────────────
   Le SVG est affiché via un filtre SVG pour
   pouvoir lui appliquer la couleur --red
─────────────────────────────────────────────── */
.svg-red-filter {
  filter: url('#red-filter');
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-logo-img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}



/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(182, 0, 0, 0.2);
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Fond légèrement teinté en mode clair */
body.light-mode .navbar {
  background: rgba(255, 217, 217, 0.92);
  border-bottom-color: rgba(182, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.8; }

body.light-mode .nav-logo { color: var(--dark); }

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-title-img {
  display: inline-block;
  height: 24px;
  width: 123px;
  background-color: var(--red);
  -webkit-mask: url('./TITLE.svg') no-repeat center / contain;
  mask: url('./TITLE.svg') no-repeat center / contain;
  margin-left: 0.2rem;
  transform: translateY(-3px);
}

/* Liens de navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 217, 217, 0.65);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(182, 0, 0, 0.12);
}

body.light-mode .nav-link { color: rgba(23, 0, 0, 0.6); }
body.light-mode .nav-link:hover { color: var(--dark); background: rgba(182, 0, 0, 0.1); }

/* Bouton CTA navbar */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.25rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(182, 0, 0, 0.4);
}
.nav-cta:active { transform: none; }

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  margin-left: auto;
  transition: background 0.2s;
}
.nav-burger:hover { background: rgba(182, 0, 0, 0.15); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.3s;
}
body.light-mode .nav-burger span { background: var(--dark); }

/* État actif burger */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  overflow: hidden;
  max-height: 0;
  background: rgba(23, 0, 0, 0.96);
  border-top: 1px solid rgba(182, 0, 0, 0.15);
  transition: max-height 0.4s var(--ease), padding 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { max-height: 340px; padding: 0.75rem 0; }

body.light-mode .nav-mobile { background: rgba(255, 220, 220, 0.97); }

.nm-link {
  display: block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 217, 217, 0.75);
  transition: color 0.2s, background 0.2s;
}
.nm-link:hover { color: var(--white); background: rgba(182, 0, 0, 0.1); }

body.light-mode .nm-link { color: rgba(23, 0, 0, 0.65); }
body.light-mode .nm-link:hover { color: var(--dark); }

.nm-cta {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.2s;
  width: fit-content;
}
.nm-cta:hover { background: var(--red-hover); }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Subtil bruit de fond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(182,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
}

/* Icône hexagonale */
.hero-icon {
  width: 100px;
  height: 100px;
  animation: icon-float 5s ease-in-out infinite;
}
.hero-icon svg { width: 100%; height: 100%; }

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Titre géant */
.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: fade-up 0.9s var(--ease) 0.2s both;
}

.hero-title-img {
  display: inline-block;
  width: clamp(320px, 80vw, 1050px);
  aspect-ratio: 1711 / 333;
  background-color: var(--red);
  -webkit-mask: url('./TITLE.svg') no-repeat center / contain;
  mask: url('./TITLE.svg') no-repeat center / contain;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 217, 217, 0.45);
  animation: fade-up 0.9s var(--ease) 0.4s both;
}

/* Ligne rouge séparatrice */
.hero-sep {
  width: 60px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
  animation: fade-up 0.9s var(--ease) 0.5s both;
}

/* Bouton scroll */
.hero-scroll-btn {
  margin-top: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(182, 0, 0, 0.35);
  color: rgba(255, 217, 217, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.9s var(--ease) 0.7s both, scroll-pulse 2.5s ease-in-out 1.5s infinite;
  transition: border-color 0.25s, color 0.25s;
}
.hero-scroll-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.hero-scroll-btn svg { width: 18px; height: 18px; }

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 1; }
}


/* ═══════════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════════ */
.section {
  padding: 8rem 0;
  position: relative;
}

/* Étiquette de section */
.tag {
  display: inline-block;
  width: fit-content;
  padding: 0.28rem 0.85rem;
  border: 1px solid rgba(182, 0, 0, 0.35);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

body.light-mode .tag {
  border-color: rgba(182, 0, 0, 0.5);
  color: var(--red);
}

/* En-tête de section */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section-head p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 217, 217, 0.55);
  max-width: 480px;
}
body.light-mode .section-head p { color: rgba(23, 0, 0, 0.55); }

/* Titres h2 */
h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
h2 em {
  font-style: normal;
  color: var(--red);
}

body.light-mode h2 { color: var(--dark); }

/* ─── REVEAL AU SCROLL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════
   À PROPOS
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 217, 217, 0.65);
}
body.light-mode .about-text p { color: rgba(23, 0, 0, 0.6); }

/* Stats */
.stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(182, 0, 0, 0.18);
}

.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 217, 217, 0.4);
}
body.light-mode .stat-lbl { color: rgba(23, 0, 0, 0.45); }

/* Visual logo dans About */
.about-visual { display: flex; justify-content: center; }

.logo-showcase {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(182, 0, 0, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 0, 0, 0.04);
  transition: border-color 0.35s, box-shadow 0.35s;
  padding: 3rem;
}
.logo-showcase:hover {
  border-color: rgba(182, 0, 0, 0.45);
  box-shadow: 0 12px 40px rgba(182, 0, 0, 0.12);
}
.logo-showcase svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .logo-showcase { width: 200px; height: 200px; }
}


/* ═══════════════════════════════════════════════
   CTA CONTACT
═══════════════════════════════════════════════ */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 5rem 2rem;
  border: 1px solid rgba(182, 0, 0, 0.2);
  border-radius: 20px;
  background: rgba(182, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Ligne déco supérieure */
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.35;
}

.cta-block p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 217, 217, 0.6);
  max-width: 480px;
}
body.light-mode .cta-block p { color: rgba(23, 0, 0, 0.55); }

/* Grand bouton principal */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  margin-top: 0.25rem;
}
.btn-main svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-main:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(182, 0, 0, 0.4);
}
.btn-main:active { transform: none; }

.cta-email {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 217, 217, 0.35);
  letter-spacing: 0.08em;
}
body.light-mode .cta-email { color: rgba(23, 0, 0, 0.4); }


/* ═══════════════════════════════════════════════
   GALERIE — CARROUSEL (images seules, crop propre)
═══════════════════════════════════════════════ */
.carousel-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(182, 0, 0, 0.18);
  user-select: none;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

/* Slide — image dans son ratio d'origine, sans zoom */
.slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 520px;               /* Hauteur fixe identique pour tous les slides */
  overflow: hidden;
  background: #ffffff;         /* Fond blanc pur pour les bandes laterales */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;         /* Montre l'image entière sans rogner */
  display: block;
  transition: transform 0.5s var(--ease);
}
.slide:hover img { transform: scale(1.02); }

/* Numéro en overlay bas-gauche */
.slide-num {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(23, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  pointer-events: none;
}

/* Boutons précédent/suivant */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(23, 0, 0, 0.8);
  border: 1px solid rgba(182, 0, 0, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.car-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}
.car-btn svg { width: 20px; height: 20px; }
.car-prev { left: 1rem; }
.car-next { right: 1rem; }

/* Dots */
.car-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #000;
  border-top: 1px solid rgba(182, 0, 0, 0.1);
}
body.light-mode .car-dots { background: rgba(255, 230, 230, 0.95); }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(182, 0, 0, 0.25);
  border: 1px solid rgba(182, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .slide { height: 350px; }
}


/* ═══════════════════════════════════════════════
   AVIS CLIENTS
═══════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(182, 0, 0, 0.15);
  background: rgba(182, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(182, 0, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(182, 0, 0, 0.1);
}

body.light-mode .review-card {
  background: rgba(255, 217, 217, 0.4);
  border-color: rgba(182, 0, 0, 0.2);
}

.stars {
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 217, 217, 0.75);
  font-style: normal;
  flex: 1;
}
body.light-mode .review-card blockquote { color: rgba(23, 0, 0, 0.7); }

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(182, 0, 0, 0.1);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
body.light-mode .reviewer strong { color: var(--dark); }

.reviewer span {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 217, 217, 0.4);
  margin-top: 0.1rem;
}
body.light-mode .reviewer span { color: rgba(23, 0, 0, 0.45); }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(182, 0, 0, 0.18);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Marque */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  color: var(--red);
  flex-shrink: 0;
}

.footer-title-img {
  display: inline-block;
  height: 28px;
  width: 144px;
  background-color: var(--red);
  -webkit-mask: url('./TITLE.svg') no-repeat center / contain;
  mask: url('./TITLE.svg') no-repeat center / contain;
  transform: translateY(-3px);
}

.footer-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 217, 217, 0.4);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* ─── BOUTONS CARRÉS SOCIAUX (ratio 1:1 strict) ── */
.footer-socials {
  display: flex;
  gap: 1rem;
}

.sq-btn {
  /* Dimensions identiques = carré parfait */
  width: 62px;
  height: 62px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(182, 0, 0, 0.3);
  background: rgba(182, 0, 0, 0.06);
  color: rgba(255, 217, 217, 0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.sq-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 22px rgba(182, 0, 0, 0.4);
}
.sq-btn:active { transform: scale(1.01); }
.sq-btn svg { width: 24px; height: 24px; }

/* Bas du footer */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(182, 0, 0, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 217, 217, 0.6);
}
body.light-mode .footer-bottom {
  border-top-color: rgba(182, 0, 0, 0.2);
  color: rgba(23, 0, 0, 0.5);
}
.footer-bottom a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s var(--ease);
}
.footer-bottom a:hover {
  color: var(--white);
}
body.light-mode .footer-bottom a:hover {
  color: var(--dark);
}

@media (max-width: 580px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}


/* ═══════════════════════════════════════════════
   ANIMATIONS GLOBALES
═══════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   MODE CLAIR — couleurs adaptatives
   Classe body.light-mode ajoutée par JS au scroll
═══════════════════════════════════════════════ */
body.light-mode .section-head p { color: rgba(23, 0, 0, 0.5); }
body.light-mode .review-card blockquote { color: rgba(23, 0, 0, 0.7); }
body.light-mode .footer { background: rgba(255, 200, 200, 0.4); border-top-color: rgba(182, 0, 0, 0.25); }
body.light-mode .footer-sub { color: rgba(23, 0, 0, 0.45); }
body.light-mode .footer-bottom p { color: rgba(23, 0, 0, 0.35); }
body.light-mode .sq-btn { border-color: rgba(182, 0, 0, 0.4); color: rgba(23, 0, 0, 0.6); background: rgba(182, 0, 0, 0.07); }
body.light-mode .car-btn { background: rgba(255, 200, 200, 0.85); color: var(--dark); }


/* ═══════════════════════════════════════════════
   RESPONSIVE GLOBAL
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-icon { width: 72px; height: 72px; }
  .stats-row { gap: 1.5rem; }
}
