/* =======================================================
   MAISON DU MEUBLE – COULOMMIERS
   style.css — Réalisé par Agence Moove
   ======================================================= */

/* --- Variables --- */
:root {
  --beige:       #F4EFE6;
  --beige-clair: #FAF8F4;
  --blanc:       #FFFFFF;
  --brun:        #8B6C4A;
  --brun-f:      #5B3E2B;
  --or:          #C8A96A;
  --terra:       #B07255;
  --anthracite:  #2B2420;
  --gris-clair:  #EDE8E0;
  --texte:       #3B3028;
  --texte-s:     #6C5E52;
  --ombre:       rgba(43,36,32,.08);
  --ombre-f:     rgba(43,36,32,.15);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--texte);
  background: var(--beige-clair);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: 2px; }

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--anthracite);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; }

/* --- Conteneur --- */
.c { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Boutons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 4px;
  font-size: .9rem; font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  border: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  cursor: pointer; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-or   { background: var(--or);    color: #fff; border-color: var(--or);    }
.btn-or:hover   { background: var(--brun);   border-color: var(--brun); }
.btn-brun { background: var(--brun-f); color: #fff; border-color: var(--brun-f); }
.btn-brun:hover { background: var(--anthracite); border-color: var(--anthracite); }
.btn-blanc { background: #fff; color: var(--brun-f); border-color: #fff; }
.btn-blanc:hover { background: var(--beige); }
.btn-vide-blanc { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-vide-blanc:hover { background: rgba(255,255,255,.12); }
.btn-vide-brun  { background: transparent; color: var(--brun); border-color: var(--brun); }
.btn-vide-brun:hover  { background: var(--brun); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* --- En-tête de section --- */
.section-titre { text-align: center; margin-bottom: 48px; }
.eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--or);
  font-family: 'Inter', system-ui, sans-serif;
  margin-bottom: 10px;
}
.section-titre h2 { margin-bottom: 10px; }
.filet { width: 52px; height: 3px; background: var(--or); margin: 10px auto 16px; border-radius: 2px; }
.chapeau { color: var(--texte-s); max-width: 680px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 var(--gris-clair), 0 2px 16px var(--ombre);
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1280px; margin: 0 auto; padding: 0 32px;
  position: relative;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 700; color: var(--brun-f); line-height: 1.15;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .6rem; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--texte-s);
}

/* Checkbox cachée pour menu mobile */
.nav-toggle { display: none; }

/* Icône hamburger */
.nav-icone {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 4px;
  transition: background .2s;
}
.nav-icone:hover { background: var(--beige); }
.nav-icone span {
  display: block; width: 24px; height: 2px;
  background: var(--anthracite); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Navigation */
.site-nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: nowrap;
}
.site-nav a {
  font-size: .82rem; font-weight: 500; color: var(--texte);
  padding: 6px 10px; border-radius: 4px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.site-nav a:hover { color: var(--or); background: var(--beige); }
.site-nav .btn { margin-left: 8px; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
}
.hero-fond {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,32,22,.82) 0%, rgba(91,62,43,.62) 100%);
}
.hero-contenu {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 100px 24px 80px; color: #fff;
}
.hero-pastille {
  display: inline-block;
  background: var(--or); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 2px;
  margin-bottom: 24px; font-family: 'Inter', system-ui, sans-serif;
}
.hero h1 { color: #fff; max-width: 820px; margin-bottom: 20px; }
.hero-sous {
  font-size: 1.08rem; color: rgba(255,255,255,.88);
  max-width: 640px; line-height: 1.8; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tags {
  font-size: .72rem; color: rgba(255,255,255,.55);
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}

/* =========================================
   BANDEAU CHIFFRES CLÉS
   ========================================= */
.bandeau-stats { background: var(--brun-f); padding: 48px 24px; }
.stats-grille {
  display: flex; flex-wrap: wrap; justify-content: center;
  max-width: 1200px; margin: 0 auto;
}
.stat {
  flex: 1; min-width: 180px; text-align: center;
  padding: 14px 24px; border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
.stat-val {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem; font-weight: 700; color: var(--or);
  line-height: 1.1; margin-bottom: 6px;
}
.stat-lib { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.4; }

/* =========================================
   SECTIONS — BASES
   ========================================= */
.section { padding: 88px 0; }
.fond-blanc  { background: #fff; }
.fond-beige  { background: var(--beige-clair); }
.fond-gris   { background: #EDE8DF; }
.fond-sombre { background: linear-gradient(135deg, var(--anthracite), #3A2A1E); }

/* Grilles */
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

/* Carte générique */
.carte {
  background: #fff; border-radius: 10px; padding: 28px 22px;
  box-shadow: 0 2px 16px var(--ombre);
  transition: transform .25s, box-shadow .25s;
}
.carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.carte-ico {
  width: 48px; height: 48px; background: var(--beige);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
  font-size: 1.2rem; color: var(--brun);
}
.carte h3 { margin-bottom: 10px; }
.carte p  { color: var(--texte-s); font-size: .88rem; line-height: 1.65; }

/* =========================================
   NOTRE MAGASIN
   ========================================= */
.magasin-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.magasin-img { border-radius: 10px; overflow: hidden; box-shadow: 0 12px 40px var(--ombre-f); }
.magasin-img img { width: 100%; height: 500px; object-fit: cover; }
.badge-magasin {
  display: inline-block;
  background: var(--beige); color: var(--brun);
  border: 1.5px solid var(--or); padding: 7px 16px;
  border-radius: 4px; font-size: .82rem; font-weight: 600;
  margin-bottom: 18px; font-family: 'Inter', system-ui, sans-serif;
}
.magasin-txt h2 { margin-bottom: 18px; }
.magasin-txt p  { color: var(--texte-s); margin-bottom: 18px; line-height: 1.75; }
.encart {
  background: var(--beige); border-left: 3px solid var(--or);
  padding: 14px 18px; border-radius: 0 6px 6px 0;
  color: var(--texte-s); font-size: .88rem; margin-top: 8px;
}

/* =========================================
   PRODUITS — cartes avec barre colorée
   ========================================= */
.produit-carte {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px var(--ombre);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.produit-carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.produit-barre { height: 3px; background: linear-gradient(90deg, var(--or), var(--terra)); }
.produit-corps { padding: 22px; flex: 1; }
.produit-corps h3 { margin-bottom: 10px; }
.produit-corps p  { color: var(--texte-s); font-size: .87rem; line-height: 1.65; }

/* =========================================
   LITERIE — layout côte à côte
   ========================================= */
.literie-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.literie-img { border-radius: 10px; overflow: hidden; box-shadow: 0 12px 40px var(--ombre-f); order: 2; }
.literie-img img { width: 100%; height: 480px; object-fit: cover; }
.literie-txt { order: 1; }
.literie-txt h2 { margin-bottom: 16px; }
.literie-txt > p { color: var(--texte-s); margin-bottom: 28px; line-height: 1.75; }
.mini-cartes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-carte {
  background: #fff; border-radius: 8px; padding: 18px;
  box-shadow: 0 2px 10px var(--ombre);
}
.mini-ico { font-size: 1.1rem; color: var(--or); margin-bottom: 8px; }
.mini-carte h4 {
  font-size: .9rem; font-weight: 600; margin-bottom: 5px;
  font-family: 'Inter', system-ui, sans-serif; color: var(--anthracite);
}
.mini-carte p { font-size: .8rem; color: var(--texte-s); line-height: 1.5; }

/* =========================================
   SERVICES — grille 5
   ========================================= */
.service-carte {
  background: #fff; border-radius: 10px; padding: 24px 18px;
  box-shadow: 0 2px 16px var(--ombre); text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.service-carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.service-ico {
  width: 54px; height: 54px; background: var(--beige);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
  font-size: 1.3rem; color: var(--brun);
}
.service-carte h3 { font-size: .98rem; margin-bottom: 10px; }
.service-carte p  { font-size: .83rem; color: var(--texte-s); line-height: 1.6; }

/* =========================================
   POURQUOI NOUS CHOISIR
   ========================================= */
.pourquoi-carte {
  background: #fff; border-radius: 10px; padding: 28px 22px;
  box-shadow: 0 2px 16px var(--ombre); border-top: 3px solid var(--or);
  transition: transform .25s, box-shadow .25s;
}
.pourquoi-carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.pourquoi-carte h3 { margin-bottom: 10px; }
.pourquoi-carte p  { font-size: .88rem; color: var(--texte-s); line-height: 1.65; }

/* =========================================
   INSPIRATIONS
   ========================================= */
.inspi-carte {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px var(--ombre);
  transition: transform .25s, box-shadow .25s;
}
.inspi-carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.inspi-carte img { width: 100%; height: 220px; object-fit: cover; }
.inspi-corps { padding: 20px; }
.inspi-corps h3 { font-size: .98rem; margin-bottom: 6px; }
.inspi-corps p  { font-size: .83rem; color: var(--texte-s); }

/* =========================================
   MARQUES
   ========================================= */
.marques-grp { margin-bottom: 28px; text-align: center; }
.marques-grp h4 {
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--texte-s); margin-bottom: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.badge-item {
  background: #fff; border: 1.5px solid var(--gris-clair);
  color: var(--texte); padding: 7px 15px; border-radius: 4px;
  font-size: .82rem; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.badge-item:hover { border-color: var(--or); background: var(--beige); }

/* =========================================
   AVIS CLIENTS
   ========================================= */
.avis-bloc {
  background: #fff; border-radius: 10px; padding: 48px 40px;
  text-align: center; max-width: 760px; margin: 0 auto;
  box-shadow: 0 2px 20px var(--ombre);
}
.avis-etoiles { color: var(--or); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 20px; }
.avis-bloc p { font-size: 1.02rem; color: var(--texte-s); line-height: 1.8; font-style: italic; }

/* =========================================
   ZONE D'INTERVENTION
   ========================================= */
.zone-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.zone-txt p { color: var(--texte-s); margin-bottom: 22px; line-height: 1.75; }
.villes { display: flex; flex-wrap: wrap; gap: 8px; }
.ville {
  background: var(--beige); border: 1px solid #D4CCBF;
  color: var(--brun); padding: 5px 14px; border-radius: 20px;
  font-size: .82rem; font-weight: 500;
}
.zone-encart {
  background: var(--brun-f); border-radius: 10px; padding: 36px; color: #fff;
}
.zone-encart h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem; color: var(--or); margin-bottom: 14px;
}
.zone-encart p { font-size: .86rem; color: rgba(255,255,255,.75); margin-bottom: 8px; line-height: 1.6; }

/* =========================================
   ACTUALITÉS
   ========================================= */
.actu-carte {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 16px var(--ombre);
  transition: transform .25s, box-shadow .25s;
}
.actu-carte:hover { transform: translateY(-4px); box-shadow: 0 10px 32px var(--ombre-f); }
.actu-carte img { width: 100%; height: 210px; object-fit: cover; }
.actu-corps { padding: 22px; }
.actu-tag {
  display: block; font-size: .65rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--or); margin-bottom: 8px;
  font-family: 'Inter', system-ui, sans-serif;
}
.actu-carte h3 { font-size: 1rem; margin-bottom: 8px; }
.actu-carte p  { font-size: .85rem; color: var(--texte-s); line-height: 1.65; }

/* =========================================
   CTA BANDE
   ========================================= */
.cta-bande { text-align: center; padding: 88px 24px; }
.cta-bande h2 { color: #fff; margin-bottom: 12px; }
.cta-bande p  { color: rgba(255,255,255,.78); margin-bottom: 34px; font-size: 1.05rem; }
.cta-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   INFOS PRATIQUES
   ========================================= */
.infos-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; max-width: 920px; margin: 0 auto;
}
.infos-bloc h3 {
  font-size: .68rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--or); margin-bottom: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}
.infos-bloc address, .infos-bloc p {
  font-style: normal; color: var(--texte-s);
  line-height: 1.9; font-size: .9rem;
}
.infos-bloc a { color: var(--brun); font-weight: 500; transition: color .2s; }
.infos-bloc a:hover { color: var(--or); }
.horaires { width: 100%; border-collapse: collapse; }
.horaires tr { border-bottom: 1px solid var(--gris-clair); }
.horaires td { padding: 8px 0; font-size: .88rem; color: var(--texte-s); vertical-align: top; }
.horaires td:first-child { font-weight: 600; color: var(--texte); width: 190px; }
.infos-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--anthracite); color: rgba(255,255,255,.68); }
.footer-corps {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1200px; margin: 0 auto;
  padding: 60px 24px 48px;
}
.footer-logo {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.footer-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .65rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-col p, .footer-col address {
  font-size: .83rem; line-height: 1.85; font-style: normal;
}
.footer-col a { color: rgba(255,255,255,.58); transition: color .2s; font-size: .83rem; }
.footer-col a:hover { color: var(--or); }
.footer-col ul li { margin-bottom: 8px; }
.reseaux { display: flex; gap: 10px; margin-top: 18px; }
.rs {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 50%; color: #fff; font-size: .75rem; font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background .2s;
}
.rs:hover { background: var(--or); }
.footer-bas {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.footer-bas p { font-size: .78rem; color: rgba(255,255,255,.38); }
.footer-bas a { color: rgba(255,255,255,.48); transition: color .2s; font-size: .78rem; }
.footer-bas a:hover { color: var(--or); }
.credit { color: var(--or) !important; font-weight: 500; }

/* =========================================
   PAGE MENTIONS LÉGALES
   ========================================= */
.ml-hero { background: var(--brun-f); padding: 60px 24px; text-align: center; }
.ml-hero h1 { color: #fff; }
.ml-corps { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.ml-corps h2 {
  font-size: 1.05rem; color: var(--brun-f); margin: 38px 0 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--gris-clair);
}
.ml-corps p { color: var(--texte-s); margin-bottom: 10px; font-size: .9rem; line-height: 1.8; }
.ml-corps a { color: var(--brun); text-decoration: underline; }
.ml-retour { text-align: center; margin-top: 48px; }

/* =========================================
   RESPONSIVE — TABLETTE (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .g3 { grid-template-columns: repeat(2,1fr); }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .g5 { grid-template-columns: repeat(3,1fr); }
  .footer-corps { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
  /* Menu mobile */
  .nav-icone { display: flex; }

  .site-nav {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; box-shadow: 0 8px 24px var(--ombre-f);
    z-index: 100; padding: 6px 0 16px; gap: 0;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav a {
    padding: 13px 24px; border-bottom: 1px solid var(--beige);
    border-radius: 0; font-size: .9rem;
  }
  .site-nav .btn { margin: 12px 24px 0; display: block; text-align: center; }

  /* Layouts */
  .section { padding: 60px 0; }
  .magasin-g, .literie-g, .zone-g, .infos-g { grid-template-columns: 1fr; gap: 32px; }
  .literie-img { order: -1; }
  .g3, .g5 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .mini-cartes { grid-template-columns: repeat(2,1fr); }
  .magasin-img img { height: 300px; }
  .literie-img img { height: 280px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-contenu { padding: 60px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  /* Stats */
  .stats-grille { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-bottom: none; }

  /* Divers */
  .cta-actions { flex-direction: column; align-items: center; }
  .infos-actions { flex-direction: column; }
  .infos-actions .btn { text-align: center; }
  .avis-bloc { padding: 28px 20px; }
  .footer-corps { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 32px; }
  .footer-bas { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .g4 { grid-template-columns: 1fr; }
  .mini-cartes { grid-template-columns: 1fr; }
}
