:root{
  --maxw:1120px;
  --ink:#111; --muted:#555;
  --black:#000; --sub:#bdbdbd;
  --footer:#bababa;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#fff;color:var(--ink);}
body{font-family:'Open Sans','Open Sauce One',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;line-height:1.5;}
h1,h2,h3{font-family:'Anton',Impact,'Arial Black',sans-serif;margin:0;}

/* HEADER */
.header{background:#000;color:#fff;padding:18px 0;text-align:center;}
.header .logo{height:64px;display:block;margin:0 auto;}

/* SUBNAV */
.subnav{background:var(--sub);}
.subnav .wrap{max-width:var(--maxw);margin:0 auto;padding:8px 16px;display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:nowrap;overflow-x:auto;white-space:nowrap;scrollbar-width:thin;}
.subnav .wrap::-webkit-scrollbar{height:6px}
.subnav .wrap::-webkit-scrollbar-thumb{background:#a0a0a0;border-radius:6px}
.subnav a{display:inline-flex;align-items:center;gap:8px;color:#000;text-decoration:none;font-weight:800;padding:6px 10px}

/* WRAPPER */
.wrapper{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* HOME */
.hero{ text-align:center; margin:22px auto 10px; max-width:900px;}
.hero p{ margin:6px 0; }

/* CTA NOIR */
.cta{
  display:inline-block;
  background:var(--black);
  color:#fff;
  border:3px solid var(--black);
  border-radius:30px;
  padding:10px 18px;
  font-weight:900;
  text-decoration:none;
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease;
}
.cta:hover,
.cta:focus-visible{
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}
.cta:active{ transform:translateY(0); box-shadow:none; }

.carousel .carousel-item img{object-fit:cover;height:600px;border-radius:20px;}
@media (max-width: 768px){ .carousel .carousel-item img{height:440px;} }

/* SERVICES — refonte centrée & cartes */
.services{padding:8px 0 28px}
.services .title{ text-align:center; margin:22px auto 10px; max-width:920px }
.services .intro{ text-align:center; max-width:880px; margin:8px auto 22px; color:var(--muted); }

.service{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:34px;
  align-items:center;
  margin:28px auto;
  max-width:var(--maxw);
  padding:28px;
  background:#f7f7f7;
  border-radius:18px;
  box-shadow:0 8px 26px rgba(0,0,0,.08);
}
.service.reverse{ grid-template-columns: 1fr 1fr; }
.service.reverse .pic{ order:1 }
.service.reverse .txt{ order:2 }

.service .pic{
  display:flex;
  justify-content:center;
  align-items:center;
}
.service .pic img{
  width:100%;
  max-width:360px;   /* images réduites */
  height:auto;
  border-radius:16px;
  display:block;
}
.service .txt{
  max-width:520px;
  justify-self:center;
  text-align:center;     /* centrage du texte */
}
.service .txt h3{
  font-size:1.9rem;
  margin:0 0 10px;
}
.service .txt p{
  margin:0;
  color:var(--muted);
  font-weight:600;
  line-height:1.55;
}

/* COLLECTION */
.collection .intro{text-align:center;margin:22px auto 14px;max-width:980px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:34px;max-width:var(--maxw);margin:0 auto;padding:0 20px}
.card .img{position:relative;background:#e9e9e9;border-radius:6px;overflow:hidden}
.card img{width:100%;display:block}
.colors{position:absolute;left:12px;top:12px;display:flex;flex-direction:column;gap:10px}
.color{width:16px;height:16px;border-radius:50%;border:2px solid #fff}
.c-white{background:#fff}.c-yellow{background:#ffd200}.c-red{background:#e12d39}.c-blue{background:#0e5aa7}.c-green{background:#2fa36b}.c-navy{background:#0b2545}.c-gray{background:#9e9e9e}.c-black{background:#111}
.card .name{text-align:center;font-size:2rem;margin-top:8px}

/* CONTACT (layout historique conservé) */
.contact-page .title{text-align:center;margin:18px 0 6px}
.contact-page .subtitle{text-align:center;max-width:980px;margin:0 auto 18px}
.contact-grid{max-width:var(--maxw);margin:0 auto;padding:0 20px;display:grid;grid-template-columns:1fr 1fr;gap:22px}
.contact-card{background:#9f9f9f;border-radius:18px;padding:18px}
.contact-card.right{background:#b7b7b7}
.label{font-family:'Anton',Impact,'Arial Black',sans-serif;font-size:1.2rem;margin-bottom:6px}
.field{width:100%;background:#fff;border:0;border-radius:24px;padding:12px 14px;margin-bottom:14px;outline:none}
textarea.field{border-radius:16px;min-height:160px;resize:vertical}
.btn-send{display:inline-block;background:#fff;color:#111;border:0;border-radius:10px;padding:.6rem .9rem;font-weight:900}
.info-item{display:flex;align-items:center;gap:14px;font-size:1.6rem;margin:12px 0}
.info-item a{color:#111;text-decoration:none}

/* FOOTER */
.footer{background:#bababa;text-align:center;padding:10px 0;margin-top:24px;font-weight:700}

/* RESPONSIVE */
h1{font-size:clamp(1.6rem,2.2vw+1rem,2.2rem)} 
h2{font-size:clamp(1.3rem,1.8vw+1rem,1.8rem)} 
h3{font-size:clamp(1.2rem,1.3vw+1rem,1.7rem)}

@media (max-width: 1180px){
  .service, .service.reverse{max-width:960px}
}
@media (max-width: 980px){
  .service, .service.reverse{
    grid-template-columns:1fr;
    text-align:center;
  }
  .service.reverse .pic{ order:2 }
  .service.reverse .txt{ order:1 }
  .service .pic img{max-width:320px;}
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr;gap:22px}
  .contact-grid{grid-template-columns:1fr}
  .info-item{font-size:1.35rem}
}

/* ========== TYPO BOOST (plus grand et lisible) ========== */
html{ font-size:17px; }                                  /* +1pt global */
@media (min-width:1200px){ html{ font-size:18px; } }     /* +2pt grands écrans */

h1{ font-size:clamp(2.0rem, 2.6vw + 1rem, 2.6rem); }
h2{ font-size:clamp(1.6rem, 2.1vw + 1rem, 2.1rem); }
h3{ font-size:clamp(1.3rem, 1.6vw + 1rem, 1.9rem); }

.service .txt p{
  font-size:1.12rem;     /* paragraphe services plus grand */
  line-height:1.65;
}

.services .title{
  font-size:clamp(1.6rem, 2.0vw + 1rem, 2.2rem);
}

.subnav a{ font-size:1.02rem; }
.hero p{ font-size:1.06rem; }


/* ACCESSIBILITY FOCUS */
:focus-visible{
  outline: 3px solid #0a84ff;
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible{
  box-shadow: 0 0 0 3px rgba(10,132,255,.35);
}
