/*
  Palette "Art Déco discret" + lisibilité renforcée
  (évite les couleurs flashy / conserve le SEO & la structure)
*/
:root{
  --bg: #fbf7ef;          /* ivoire */
  --surface: #ffffff;
  --ink: #141312;         /* noir profond */
  --muted: #4b4a46;
  --line: rgba(20,19,18,.14);
  --gold: #b08d57;        /* or patiné */
  --gold-2: #8c6a3b;
  --cta: #141312;
  --ctaText: #fbf7ef;

  /* Alias utilisés par certaines règles existantes */
  --text: var(--ink);
  --accent: var(--gold);
  --surface-2: rgba(255,255,255,.55);
  --radius: 18px;
  --shadow-soft: 0 10px 30px rgba(20,19,18,.06);
  --shadow: 0 18px 50px rgba(20,19,18,.12);
}

body {
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  background: var(--bg);
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
.form-input-1 {
  display: none !important;
}
.form-input-2 {
  height: 0px;
  margin: 0;
}
.isHidden {
  display: none !important;
}
a {
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  -webkit-transition: color 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -o-transition: color 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition: color 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.center {
  text-align: center;
  align-items: center;
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 20px;
}
#nav_bar {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  padding: 30px;
  position: fixed;
  background-color: var(--surface);
  width: -webkit-fill-available;
  z-index: 2;
}
#nav_back {
  display: block;
  margin-top: 60px;
  padding: 30px;
  position: fixed;
  background-color: rgba(251,247,239,.92);
  backdrop-filter: blur(10px);
  height: 100%;
  width: 100%;
  z-index: 1;
}
#nav_bar a {
  padding: 20px 10px;
  color: var(--ink);
  font-family: 'Raleway';
  font-weight: bold;
  justify-content: flex-start;
  font-size: 1.2rem;
  align-items: center;
  display: flex;
}
#nav_bar a::before {
  display: inline-block;
  content: '';
  -webkit-border-radius: 100%;
  border-radius: 100%;
  height: 0.35rem;
  width: 0.35rem;
  margin-right: 0.5rem;
  background-color: var(--gold);
}
#nav_bar a:hover {
  color: var(--ink);
  background-color: rgba(176,141,87,.14);
}
/* --------------------------------------------
    COLOR
   -------------------------------------------- */
.important {
  color: var(--gold-2);
}
.contact, .contact * {
  color: var(--ink);
  font-weight: 700;
}
.upper{
  /* On évite l'effet "CRIARD" : on ne force plus la casse.
     (Le texte peut rester en majuscules dans le HTML si besoin SEO,
      mais l'affichage n'agresse pas.) */
  text-transform: none !important;
  letter-spacing: .06em;
}

/* Titres plus sobres et lisibles */
h1, h2, h3, h4, h5{
  color: var(--ink);
  letter-spacing: .01em;
}
h1{font-weight: 800; line-height: 1.15;}
h2{font-weight: 800; line-height: 1.2;}
h3{font-weight: 700; line-height: 1.25;}
h4{font-weight: 700; line-height: 1.35;}

/* Conteneur plus "premium" : surface blanche, bord fin */
.container{
  padding: 22px;
}

/* Liens */
a{color: var(--ink);}
a:hover{color: var(--gold-2);}

/* Dividers Art Déco discrets */
.divider{
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  position: relative;
}
.divider::after{
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 54px;
  height: 7px;
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Cartes (grille d'images) */
.listImages .imgEffect{
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20,19,18,.06);
}
.listImages .imgEffect img{display:block; width:100%; height:auto;}
.listImages .imgEffect span{color: var(--ink);}

/* CTA boutons (hero) */
.hero-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid var(--line);
  text-decoration:none;
  background: var(--surface);
  color: var(--ink);
}
.btn.primary{
  background: var(--cta);
  color: var(--ctaText);
  border-color: rgba(176,141,87,.35);
}
.btn:hover{transform: translateY(-1px);}

/* Sticky CTA (appel & SMS) - unifié (suppression du style inline) */
.sticky-call{
  position:fixed;
  bottom:12px;
  left:12px;
  right:12px;
  display:flex;
  gap:10px;
  z-index:9999;
}
.sticky-call a{
  flex:1;
  text-align:center;
  padding:14px;
  border-radius:16px;
  background: var(--cta);
  color: var(--ctaText);
  font-weight:800;
  text-decoration:none;
  border: 1px solid rgba(176,141,87,.35);
  box-shadow: 0 16px 40px rgba(20,19,18,.18);
}
.sticky-call a:last-child{
  background: rgba(176,141,87,.16);
  color: var(--ink);
  border-color: rgba(176,141,87,.55);
}
@media (min-width: 900px){
  .sticky-call{left:auto;right:24px;bottom:24px;width:360px}
}

/* FAQ (lisible, premium) */
dl{margin:0;padding:0}
dt{margin-top:16px;padding:14px 14px;background:var(--surface);border:1px solid var(--line);border-radius:16px;color:var(--ink)}
dd{margin:10px 0 0 0;padding:0 12px 6px 12px;color:var(--muted)}

.contact.lower {
  font-size: 1.4rem;
}
/* --------------------------------------------
    ICON
   -------------------------------------------- */
.icon {
  height: 2rem;
}
.icon.small {
  height: 1.5rem;
}
.icon.big {
  height: 3rem;
}

/* --------------------------------------------
    DIVIDER
   -------------------------------------------- */
.divider {
  height: 1px;
  border-top: 3px solid #f7be68;
  width: 100%;
}
.divider.small {
  border-top: 1px solid #BBBBBB;
}
footer {
  padding: 10px;
  background-color: #f4f4f4;
}

/* --------------------------------------------
    TYPROGRAPHY
   -------------------------------------------- */
h1, h2, h3, h4, p, span {
  color: #444444;
  font-size: 1.2rem;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  margin: 0;
  text-align: justify;
}
h1 {
  font-size: 3.9rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.3rem;
}
p {
  font-size: 1.2rem;
}
span {
  font-size: 0.9rem;
  display: block;
}
.small {
  font-size: 0.6rem;
}
.upper {
  text-transform: uppercase;
}
.lower {
  text-transform: lowercase;
}
.second-font {
  font-family: helvetica, arial, sans-serif;
}

/* --------------------------------------------
    HEADER
   -------------------------------------------- */
header {
  z-index: 3;
  position: fixed;
  background-color: white;
  width: -webkit-fill-available;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-box-shadow: 0 0 transparent, 0 0 transparent, 0 5px 5px -4px rgb(0 0 0 / 10%);
  box-shadow: 0 0 transparent, 0 0 transparent, 0 5px 5px -4px rgb(0 0 0 / 10%);

  -webkit-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -moz-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -o-transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  transition: all 500ms cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -moz-transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  -o-transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  transition-timing-function: cubic-bezier(0.445, 0.050, 0.550, 0.950);

  height: 80px !important;
  line-height: 80px !important;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header .logo, header .menu {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;

  justify-content: center;
  align-items: center;
  display: flex;
}
header .menu.small {
  display: none;
}
header .logo a {
  font-size: 16px;
  font-weight: 600;
}
header .menu a {
  color:rgba(0, 0, 0, 1);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}
header .menu a:nth-child(even) {
  color: rgb(51, 51, 153);
}
header .menu a:nth-child(even)::before,
header .menu a:nth-child(even)::after {
  content: "\2022";
  margin: 0 15px;
  top: 0;
  color: #151515;
  box-sizing: border-box;
  left: -4px;
}
.menu_img {
  position: absolute;
  background-color: white;
}
#menu_hambuger {
  z-index: 1;
}
#menu_close {
  z-index: 2;
}
.isOpen {
  box-shadow: none;
}

/* --------------------------------------------
    SECTION
   -------------------------------------------- */
section {
  padding-bottom: 50px;
}
section#top {
  margin-top: 80px;
}
section .container:first-child {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
section h1 {
  color: rgb(37, 37, 37);
  letter-spacing: 9.3px;
  line-height: 85px;
  font-weight: 700;
}
section h1::after {
  content: "";
  display: block;
  background-color: #222222;
  height: 2px;
  width: 30px;
  margin: 15px auto 0;
  box-sizing: border-box;
}
section .container > h4 {
  margin-top: 20px;
  line-height: 30px;
  color:rgb(102, 102, 102);
}
section#middle {
  background-color: #f4f4f4;
}
section#bottom {
  padding-bottom: 10px;
}
section#middle h1,
section#bottom h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
}
section#bottom img.imgEffect {
  width: 100%;
}
section#bottom .container:first-child {
  margin-top: 20px;
}
/* --------------------------------------------
    ARTICLE
   -------------------------------------------- */
article, article * {
  font-family: helvetica, arial, sans-serif;
}
article form * {
  color: #444444;
  font-size: 1.2rem;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  padding-bottom: 2px;
}
article {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
}

/* --------------------------------------------
    ASIDE
   -------------------------------------------- */
aside.description {
  min-width: 460px;
  max-width: 830px;
  padding: 20px;
  padding-top: 30px;
  background-color: #f4f4f4;
  flex: 2;
}
.white {
  background-color: white !important;
}
aside.description.nude {
  background-color: initial;
  padding: 0 20px;
}
aside.extra {
  min-width: 270px;
  max-width: 350px;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 20px;
}
aside.extra img{
  max-height: 450px;
  max-width: 350px;
}
aside.extra > img:not(.icon) {
  height: 18rem;
}
aside.description *,
aside.extra * {
  margin-bottom: 20px;
}
aside.description *:last-child {
  margin-bottom: 0;
}
aside.description.full {
  max-width: 100%;
}
aside.description.middle,
aside.description.extra {
  flex: 1;
}
h2.nude {
  margin: -60px -20px 30px -20px;
  background: white;
  padding: 30px 0 40px 0;
}

/* --------------------------------------------
    STEPS
   -------------------------------------------- */
.steps {
  flex: 1;
  padding: 20px 20px;
  min-width: 330px;
  max-width: 360px;
}
.steps:first-child {
  padding-left: 0;
}
.steps:last-child {
  padding-right: 0;
}
.steps h2 {
  margin-bottom: 30px;
}
.steps img {
  margin-bottom: 50px;
}

/* --------------------------------------------
    CAR
   -------------------------------------------- */
.car {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.car h4 {
  padding: 0 20px;
}

/* --------------------------------------------
    FORM
   -------------------------------------------- */
article.form {
  display: flex;
}
.form aside {
  flex: 1;
}
.form aside:first-child {
  padding-right: 20px;
}
.form aside:last-child {
  padding-left: 20px;
}
.form aside span {
  padding-bottom: 20px;
}
.form aside span:last-child {
  padding-bottom: 0px;
}
.form aside .contact-way {
  background-color: #f4f4f4;
  padding: 0 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.form aside .contact-way * {
  padding: 20px;
  text-align: center;
}
form {
  padding: 20px 1px;
}
#list_files * {
  width: 100%;
}
.form aside form div.input {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
#preview {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#preview img {
  max-width: 100px;
  max-height: 100px;
  padding: 5px;
}
input {
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  float: none;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  padding: 6px 10px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
}
.file-input {
  border: 1px dashed #ccc;
  border-radius: 2px;
  background: #fcfcfc;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.file-input span {
  font-size: 0.9rem;
  padding: 0px !important;
}
.file-input span.sub {
  color: #00000066;
}
input[type=submit] {
  width: fit-content;
  height: 50px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #eee;
  border: none;
}
input[type=submit]:hover {
  background-color: #ccc;
}
button {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: none;
  padding: 0 20px;
  background-color: #ccc;
}
button img {
  height: 20px;
  margin-right: 20px;
}

/* --------------------------------------------
    LIST IMAGE
   -------------------------------------------- */
.images {
  background-color: #f4f4f4;
}
.listImages {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  grid-template-rows: repeat(4, 1fr);
  row-gap: 10px;
  width: 100%;
  margin: 3rem;
  margin-bottom: 2rem;
  background-color: #fff;
  justify-items: stretch;
  align-content: stretch;
}
.listImages .imgEffect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.listImages .imgEffect img {
  height: auto;
  object-fit: contain;
  max-height: 250px;
}
.listImages .imgEffect span {
  text-transform: uppercase;
  font-weight: bolder;
}

/* --------------------------------------------
    SUCCESS PAGE
   -------------------------------------------- */
body.success {
  display: flex;
  margin: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
body.success h1 {
    margin-bottom: 30px;
}
body.success h3 {
    margin-bottom: 20px;
}
body.success h4 {
  color: #0BB4CD;
  cursor: pointer;
}

/* --------------------------------------------
    ANIMATIONS
   -------------------------------------------- */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes zoomIn {
    0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    }
    50% {
    opacity: 1;
    }
    }
    @keyframes zoomIn {
    0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
    }
    50% {
    opacity: 1;
    }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes rotateIn {
  0% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate3d(0, 0, 1, -200deg);
  transform: rotate3d(0, 0, 1, -200deg);
  opacity: 0;
  }
  100% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  }
  }
  @keyframes rotateIn {
  0% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate3d(0, 0, 1, -200deg);
  transform: rotate3d(0, 0, 1, -200deg);
  opacity: 0;
  }
  100% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  }
  }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes rotateOut {
  0% {
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: 1;
  }
  100% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate3d(0, 0, 1, 200deg);
  transform: rotate3d(0, 0, 1, 200deg);
  opacity: 0;
  }
  }
  @keyframes rotateOut {
  0% {
  -webkit-transform-origin: center;
  transform-origin: center;
  opacity: 1;
  }
  100% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate3d(0, 0, 1, 200deg);
  transform: rotate3d(0, 0, 1, 200deg);
  opacity: 0;
  }
  }
  .slideInDown {
    -webkit-transition: height 2s ease-in-out;
    -moz-transition: height 2s ease-in-out;
    -ms-transition: height 2s ease-in-out;
    -o-transition: height 2s ease-in-out;
    transition: height 2s ease-in-out;

    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
    @-webkit-keyframes slideInDown {
    0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
    }
    100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    }
    }
    @keyframes slideInDown {
    0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
    }
    100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    }
    }
    .slideOutUp {
      -webkit-animation-name: slideOutUp;
      animation-name: slideOutUp;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
      }
      @-webkit-keyframes slideOutUp {
      0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      }
      100% {
      visibility: hidden;
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      }
      }
      @keyframes slideOutUp {
      0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      }
      100% {
      visibility: hidden;
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      }
      }
/* --------------------------------------------
    MEDIA QUERY
   -------------------------------------------- */
   @media screen and (max-width: 768px) {
    h1 {
      font-size: 2.3rem !important;
      line-height: 50px !important;
    }
    h4 {
      font-size: 1.1rem;
    }
    aside.description {
      min-width: 250px;
    }
    .steps {
      padding: 20px 30px !important;
    }
    .form aside .contact-way * {
      padding: 20px 0;
      text-align: center;
    }
    .form aside:first-child,
    .form aside:last-child {
      padding: 0;
    }
    .form aside {
      padding: 20px 0 !important;
    }
    .form aside div {
      padding: 20px 40px;
    }
    .listImages {
      grid-template-columns: repeat(2, 50%);
      grid-template-rows: repeat(8, 1fr);
    }
    .listImages .imgEffect img {
      max-height: 150px;
    }
    .listImages .imgEffect span {
      text-align: center;
    }
  }
  @media screen and (max-width: 1020px) {
    header .menu.big {
      display: none;
    }
    header .menu.small {
      display: flex;
    }
    .form aside:first-child,
    .form aside:last-child {
      padding-left: 0px;
      padding-right: 0px;
    }
    .form aside {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }

/* =========================================================
   MODERNISATION (style "Brocanteur" premium)
   Objectif: moderniser sans casser la structure / SEO
   ========================================================= */
:root{
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f2ed;
  --text: #1f1b16;
  --muted: #6f655d;
  --line: rgba(31,27,22,.10);
  --accent: #9b6b2f;        /* "or" discret */
  --accent-2:#2c2a28;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(31,27,22,.08);
  --shadow-soft: 0 10px 22px rgba(31,27,22,.06);
}

html{scroll-behavior:smooth;}
body{
  background: var(--bg) !important;
  color: var(--text) !important;
  line-height: 1.9;
  font-family: 'Raleway', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

/* Typo & hiérarchie */
h1,h2,h3,h4,p,span{color: var(--text) !important;}
h1,h2,h3,h4{
  font-family: 'Playfair Display', ui-serif, Georgia, 'Times New Roman', Times, serif !important;
  letter-spacing: .01em !important;
}

p, h4{color: var(--muted) !important;}

.upper{
  letter-spacing: .10em;
}

/* Lien + accent */
a{color: var(--accent) !important;}
a:hover{opacity:.85;}

.important{
  color: var(--accent) !important;
}

/* Container plus respirant */
.container{
  padding: 28px 22px !important;
}

/* Header premium */
header{
  background: rgba(251,250,247,.82) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: none !important;
}
header .logo a{
  font-weight: 700;
  letter-spacing: .02em;
}
header .menu a{
  text-transform: none !important;
  font-weight: 700;
  color: var(--text) !important;
}
header .menu a:nth-child(even){
  color: var(--text) !important;
}
header .menu a:nth-child(even)::before,
header .menu a:nth-child(even)::after{
  color: rgba(31,27,22,.35) !important;
}

/* Menu mobile */
#nav_bar{
  background: rgba(251,250,247,.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
#nav_bar a{
  color: var(--text) !important;
}
#nav_bar a::before{background: var(--accent) !important;}
#nav_bar a:hover{background: var(--surface) !important; color: var(--accent) !important;}

/* Sections: plus de rythme, moins "bloc" */
section{padding-bottom: 70px !important;}
section#top{margin-top: 86px !important;}
section .container:first-child{margin-top: 54px !important;}

section h1{
  font-size: clamp(2.4rem, 4.2vw, 3.6rem) !important;
  line-height: 1.1 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
}
section h1::after{
  background-color: var(--accent) !important;
  height: 2px;
  width: 48px;
  border-radius: 2px;
}

/* Alternance de fonds */
section#middle{background: var(--surface-2) !important;}
.images{background: var(--surface-2) !important;}
footer{
  background: transparent !important;
  border-top: 1px solid var(--line);
}
footer p{color: rgba(31,27,22,.70) !important;}

/* Blocs (asides) en "cards" */
aside.description,
aside.extra{
  border-radius: var(--radius);
}
aside.description{
  background: var(--surface) !important;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
aside.description.nude{
  box-shadow: none;
  border: none;
}
aside.extra img.imgEffect{
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* Divider discret */
.divider{border-top: 2px solid rgba(155,107,47,.35) !important;}
.divider.small{border-top: 1px solid var(--line) !important;}

/* Grille "ce que nous achetons" */
.listImages{
  margin: 2.2rem 0 0 0 !important;
  padding: 18px !important;
  border-radius: var(--radius);
  background: transparent !important;
  gap: 14px;
  row-gap: 14px !important;
  border: 0;
}
.listImages .imgEffect{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.listImages .imgEffect:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.listImages .imgEffect img{
  border-radius: 14px;
  max-height: 210px !important;
}
.listImages .imgEffect span{
  text-transform: none !important;
  font-weight: 700;
  color: var(--text) !important;
}
.listImages .imgEffect span small{color: rgba(31,27,22,.65) !important;}

/* Formulaire / boutons */
input[type=submit], button{
  border-radius: 14px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
input[type=submit]:hover, button:hover{
  filter: brightness(.96);
}

/* CTA sticky (appel & SMS) */
.sticky-call{gap: 10px !important;}
.sticky-call a{
  background: rgba(31,27,22,.92) !important;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  border-radius: 16px !important;
}
.sticky-call a:last-child{
  background: var(--accent) !important;
  color: #fff !important;
}

/* Responsive: grille images */
@media (max-width: 1100px){
  .listImages{grid-template-columns: repeat(3, 1fr) !important;}
}
@media (max-width: 850px){
  .listImages{grid-template-columns: repeat(2, 1fr) !important;}
  aside.description{min-width: auto !important;}
}
@media (max-width: 520px){
  /* Mobile: conserver une grille en 3 colonnes (plus dense, plus "catalogue") */
  .listImages{
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 10px !important;
  }
  .listImages .imgEffect{border-radius: 14px !important;}
  .listImages .imgEffect span{font-size: 12px !important; line-height: 1.2 !important;}
  .listImages .imgEffect span small{display:none !important;}
}

/* Contact (téléphone) plus premium */
.contact, .contact *{
  color: var(--accent) !important;
  font-weight: 700 !important;
}
