/* ============================================================
   L'École du Chien — Footer unifié (toutes pages)
   Préfixe .lec-foot__* pour éviter tout conflit avec les
   styles inline existants des pages.
   ============================================================ */

.lec-foot {
  background: #111010;
  color: #F5F0E8;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  padding: 4rem 3rem 1.5rem;
  border-top: 1px solid rgba(193,122,58,0.18);
}
.lec-foot * { box-sizing: border-box; }
.lec-foot a { color: inherit; text-decoration: none; transition: color 0.2s; }
.lec-foot a:hover { color: #D4A853; }

.lec-foot__inner { max-width: 1200px; margin: 0 auto; }

/* TOP : brand + intro */
.lec-foot__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  align-items: center;
}
.lec-foot__brand { display: flex; align-items: center; gap: 1rem; }
.lec-foot__brand img { height: 52px; width: auto; display: block; filter: brightness(1.15); }
.lec-foot__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 700; color: #FDFCFA;
  line-height: 1.1; margin: 0;
}
.lec-foot__tag {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #D4A853; margin: 0.35rem 0 0;
}
.lec-foot__intro {
  font-size: 0.95rem; line-height: 1.65;
  color: rgba(245,240,232,0.7); margin: 0; max-width: 56ch;
}

/* MIDDLE : colonnes liens */
.lec-foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 3rem 0;
}
.lec-foot__col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #D4A853;
  margin: 0 0 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(193,122,58,0.22);
}
.lec-foot__col ul { list-style: none; margin: 0; padding: 0; }
.lec-foot__col li {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.5;
  padding: 0.35rem 0;
}
.lec-foot__col li a { display: inline-block; }
.lec-foot__phone {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 700;
  color: #D4A853 !important;
  letter-spacing: 0.01em;
  display: inline-block; margin-bottom: 0.6rem;
}
.lec-foot__phone:hover { color: #FDFCFA !important; }
.lec-foot__addr {
  font-size: 0.85rem; line-height: 1.6;
  color: rgba(245,240,232,0.55);
}
.lec-foot__addr strong { color: #F5F0E8; font-weight: 500; }

/* BOTTOM : legal */
.lec-foot__bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  font-size: 0.78rem;
  color: rgba(138,128,114,0.7);
}
.lec-foot__bottom a { color: rgba(245,240,232,0.55); }
.lec-foot__bottom a:hover { color: #D4A853; }
.lec-foot__legal-links a + a { margin-left: 1rem; }

/* Responsive */
@media (max-width: 960px) {
  .lec-foot { padding: 3rem 2rem 1.5rem; }
  .lec-foot__top { grid-template-columns: 1fr; gap: 1.8rem; padding-bottom: 2.5rem; }
  .lec-foot__cols { grid-template-columns: 1fr 1fr; gap: 2.2rem; padding: 2.5rem 0; }
}
@media (max-width: 600px) {
  .lec-foot { padding: 2.5rem 1.4rem 1.4rem; }
  .lec-foot__cols { grid-template-columns: 1fr; gap: 2rem; }
  .lec-foot__brand img { height: 44px; }
  .lec-foot__name { font-size: 1.2rem; }
  .lec-foot__bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 0.6rem; }
}
