:root{
    --bg:#fffdf8;
    --text:#2e2b23;           /* brun/gris très sombre */
    --muted:#6e6a5e;          /* gris chaleureux pour le texte long */
    --brand:#b79a4b;          /* doré */
    --brand-strong:#9b7f3c;
    --card:#ffffff;
    --border:#e9e3d4;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --container: 1120px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
  }

  html,body{
    height:100%;
  }
  body{
    margin:0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji", sans-serif;
    color:var(--text);
    background:var(--bg);
    line-height:1.6;
  }

  .container{
    width:min(var(--container), 100%);
    max-width:var(--container);
    padding-inline:clamp(24px, 5vw, 60px);
    margin-inline:auto;
    box-sizing:border-box;
  }

  /* ===== NAVIGATION ==================================================== */
  .navbar{
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
    padding-right: 20px;
  }

  .navbar--hidden{
    transform: translateY(-100%);
  }

  .navbar--visible{
    transform: translateY(0);
  }

  .navbar-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 70px;
  }

  .navbar-brand{
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-strong);
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .navbar-brand img{
    height: 120px;
    width: auto;
    object-fit: contain;
  }

  .navbar-menu{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    flex-wrap: wrap;
  }

  .navbar-menu li{
    margin: 0;
  }

  .navbar-menu a{
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s ease;
    position: relative;
  }

  .navbar-menu a:hover{
    color: var(--brand-strong);
  }

  .navbar-menu a::after{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width .3s ease;
  }

  .navbar-menu a:hover::after{
    width: 100%;
  }

  /* Dropdown menu */
  .navbar-dropdown{
    position: relative;
  }

  .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    list-style: none;
    padding: 12px 0;
    margin: 8px 0 0;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 100;
  }

  .navbar-dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-menu li{
    margin: 0;
  }

  .dropdown-menu a{
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown-menu a::after{
    display: none;
  }

  .dropdown-menu a:hover{
    background: var(--bg);
    color: var(--brand-strong);
  }

  /* Hamburger button */
  .navbar-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .hamburger-line{
    width: 28px;
    height: 3px;
    background: var(--brand-strong);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .navbar-toggle.active .hamburger-line:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-toggle.active .hamburger-line:nth-child(2){
    opacity: 0;
  }

  .navbar-toggle.active .hamburger-line:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Responsive */
  @media (max-width: 768px){
    .container{
      padding-inline: clamp(20px, 4.5vw, 28px);
    }

    .navbar-inner{
      padding: 16px 0;
    }

    .navbar-toggle{
      display: flex;
    }

    .navbar-menu{
      position: fixed;
      top: 120px;
      left: 0;
      right: 0;
      background: var(--bg);
      flex-direction: column;
      gap: 0;
      padding: 20px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 1000;
      max-height: none;
      overflow-y: auto;
      height: auto;
    }

    .navbar-menu.active{
      transform: translateX(0);
    }

    .navbar-menu li{
      border-bottom: 1px solid var(--border);
    }

    .navbar-menu li:last-child{
      border-bottom: none;
    }

    .navbar-menu a{
      display: block;
      padding: 16px 24px;
      font-size: 16px;
    }

    /* Dropdown mobile */
    .dropdown-menu{
      position: static;
      transform: none !important;
      box-shadow: none;
      border: none;
      border-radius: 0;
      background: transparent;
      padding: 0 !important;
      margin: 0 !important;
      width: 100%;
      left: 0 !important;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
      opacity: 1 !important;
      visibility: visible !important;
    }

    .navbar-dropdown.active .dropdown-menu{
      max-height: 600px;
    }

    .dropdown-menu li{
      border-bottom: none;
      display: block !important;
      margin: 0 !important;
      height: auto !important;
      min-height: 40px;
    }

    .dropdown-menu a{
      padding: 12px 24px 12px 44px !important;
      font-size: 14px !important;
      background: rgba(183, 154, 75, 0.05) !important;
      color: #2e2b23 !important;
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      height: auto !important;
      min-height: 40px;
      line-height: 1.5 !important;
    }

    .dropdown-menu a:hover{
      background: rgba(183, 154, 75, 0.15);
    }

    .navbar-menu a::after{
      display: none;
    }
  }

  /* ===== HERO ========================================================== */
  .hero{
    position:relative;
    min-height: 480px;
    display:grid;
    align-items:center;
    overflow:hidden;
    isolation:isolate;
    padding-top: 90px; /* Compense la hauteur du menu fixe */
    margin-top: 120px;
    padding-bottom: 10px;
  }
  .hero::before{
    /* Image à remplacer par la tienne */
    content:"";
    position:absolute; inset:0;
    background:url('hero.png') center/cover no-repeat;
    transform:scale(1.03);
    filter:blur(2px) saturate(105%);
    z-index:-2;
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    /* voile chaud + léger dégradé pour la lisibilité */
    background:linear-gradient(180deg, rgba(255,253,248,0.74) 0%, rgba(255,253,248,0.82) 50%, rgba(255,253,248,0.94) 100%);
    z-index:-1;
  }

  .brand-title{
    font-family:"Cormorant Garamond", serif;
    font-weight:700;
    line-height:1.05;
    letter-spacing:.3px;
    font-size: clamp(40px, 6.6vw, 74px);
    margin: 0 0 18px;
  }

  .brand-subtitle{
    font-weight:500;
    color:var(--text);
    font-size: clamp(16px, 2.2vw, 20px);
    margin: 0 0 22px;
  }

  .cta-row{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top: 8px;
  }
  .btn{
    appearance:none;
    border:1px solid var(--brand);
    background: var(--brand);
    color:#fff;
    padding: 10px 16px;
    font-weight:600;
    border-radius:8px;
    cursor:pointer;
    transition:.2s ease;
    font-size:15px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
  }
  .btn:hover{ background: var(--brand-strong); border-color:var(--brand-strong); transform:translateY(-1px);}
  .btn--ghost{
    background:#fff;
    color:var(--text);
    border-color:#d8c79b;
  }
  .btn--ghost:hover{ background:#fffaf0; }

  /* ===== SECTION ENGAGEMENT ========================================== */
  section.commitment{
    padding: 72px 0 84px;
  }
  .h2{
    font-family:"Cormorant Garamond", serif;
    font-weight:700;
    line-height:1.2;
    font-size: clamp(28px, 3.5vw, 42px);
    margin: 0 0 14px;
  }
  .h2 .line-break{ display:block; }

  .lead{
    max-width: 920px;
    color:var(--muted);
    font-size: 16.5px;
  }

  /* Surlignage façon “stabilo” sur une phrase clé */
  .marker{
    background:
      linear-gradient(transparent 60%, rgba(183,154,75,.35) 60%);
    padding:0 .08em;
  }

  .cards{
    margin-top: 34px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
  }
  .card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:10px;
    box-shadow:var(--shadow);
    padding: 26px 24px;
    position:relative;
  }

  /* pastille icône centrée en haut du bord */
  .badge{
    --size:48px;
    width:var(--size);
    height:var(--size);
    border-radius:50%;
    background:#f6f0df;
    border:1px solid #e3d7b7;
    display:grid; place-items:center;
    position:absolute; left:50%; top:-24px; transform:translateX(-50%);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
  }

  .card h3{
    margin: 22px 0 10px;
    font-size:19px;
    font-weight:700;
    color:var(--text);
  }
  .card p{
    margin:0;
    color:var(--muted);
    font-size:15.5px;
  }

  /* icônes SVG (doré foncé) */
  .icon{ width:22px; height:22px; fill:var(--brand-strong); }

  /* ===== RWD =========================================================== */
  @media (max-width: 920px){
    .cards{ grid-template-columns: 1fr; gap:28px; }
    .card{ padding:28px 22px 24px; }
    .badge{ top:-26px; }
  }

  @media (max-width: 480px){
    .hero-inner{
      padding: 56px 44px;
    }

    .brand-title{
      margin-bottom: 14px;
    }

    .brand-subtitle{
      margin-bottom: 20px;
    }

    .btn{
      padding: 12px 20px;
      font-size: 15.5px;
      width: 100%;
      text-align: center;
    }

    .cta-row{
      gap: 12px;
      margin-top: 12px;
    }
  }

  /* ===== SERVICES PROPRIÉTAIRES ======================================= */
.owners{
  padding: 68px 0 90px;
}
.owners .intro{
  color: var(--muted);
  max-width: 980px;
  margin: 10px 0 32px;
  font-size: 16.5px;
}

/* Wrapper principal : 2 sections (timeline + image) */
.owners-wrapper{
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 4%;
  align-items: start;
}

/* Section cartes (gauche) */
.owners-cards-section{
  position: relative;
}

/* Grille simple : 2 colonnes x 2 lignes */
.owners-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cartes */
.owners-card{
  background: #f3e8cf;
  border: 1px solid #e1d6bc;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owners-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.owners-card h3{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 21px;
  color: var(--text);
}

.owners-card p{
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* Image (section droite) */
.owners-image{
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  border: 1px solid #e5dec8;
  height: 100%;
  min-height: 400px;
}
.owners-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 980px){
  .owners-wrapper{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .owners-image{
    order: -1;
    min-height: 300px;
  }
  .owners-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== POURQUOI CHOISIR SL ======================================== */
.why-bg{
  background:#ac8f34; /* fond moutarde de la maquette */
  padding: 56px 0;
}
.why-card{
  background:#fffaf0;
  border-radius:14px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  border:1px solid #eadfca;
  padding: 26px 28px 26px;
}
.why-card .h2{
  margin: 4px 0 18px;
}

.why-grid{
  display:grid;
  grid-template-columns: minmax(280px, 460px) minmax(320px, 1fr);
  gap: 34px;
  align-items:center;
}

/* Pyramide */
.pyramid{
  margin:0;
  display:block;
}
.pyramid svg{ width:100%; height:auto; display:block; }

.tier{
  fill:#efe3c6;                  /* beige */
}
.tier-1{ fill:#f1e6cc; }
.tier-2{ fill:#efe2c3; }
.tier-3{ fill:#ecdcbc; }

.num{
  font-size: 20px;
  text-anchor: middle;
  dominant-baseline: middle;
  fill:#7b6f57;
}

/* Items alignés */
.why-items{ display:grid; gap: 28px; }
.why-item{
  padding: 14px 0 18px;
  border-bottom:1px solid #e9e1cf;
}
.why-item:last-child{ border-bottom:none; }

.why-item h3{
  font-family:"Cormorant Garamond", serif;
  font-size: 22px;
  margin:0 0 6px;
  color:var(--text);
  font-weight:700;
}
.why-item p{
  margin:0;
  color:var(--muted);
  font-size: 15.8px;
  max-width: 720px;
}

/* Note */
.why-note{
  margin-top: 18px;
  background:#efe2c3;
  border:1px solid #e1d6bc;
  border-radius:10px;
  padding: 14px 16px;
  color:#4d4638;
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:15.6px;
}
.note-ico{ font-size:18px; line-height:1; }

/* RWD */
@media (max-width: 980px){
  .why-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-card{ padding:22px; }
}

/* ===== ESPACE VACANCIERS ======================================= */
.guests-hero{
  position:relative;
  padding: 46px 0 72px;
  isolation:isolate;
}
.guests-hero::before{
  content:"";
  position:absolute; inset:0;
  /* remplace l'URL par ta photo plage si besoin */
  background:url('espace_vacancier.png')
            center/cover no-repeat;
  filter: saturate(105%) brightness(1.02);
  z-index:-2;
}
.guests-hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(255,253,248,.92), rgba(255,253,248,.88) 55%, rgba(255,253,248,.96));
  z-index:-1;
}

.guests-head .h2{
  font-size: clamp(34px, 5vw, 64px);
  margin: 0 0 8px;
}
.guests-intro{
  color: var(--muted);
  font-size: 18px;
  max-width: 1100px;
  margin: 0 0 26px;
}

.guests-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

/* pastilles (pills) au-dessus des titres */
.pill{
  height:64px;
  border-radius: 999px;
  border:1px solid #e4d7b9;
  background: #f5ebd2;
  box-shadow: 0 10px 24px rgba(0,0,0,.08) inset, 0 6px 16px rgba(0,0,0,.06);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.pill-icon{
  display:inline-grid; place-items:center;
  width:44px; height:44px; border-radius:50%;
  border:1px solid #e3d6b8; background:#f8f0da;
}
.ico{ width:22px; height:22px; fill: var(--brand-strong); }

.guest-item h3{
  font-family:"Cormorant Garamond", serif;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--text);
}
.guest-item p{
  color: var(--muted);
  margin:0;
  font-size: 16px;
  max-width: 36ch;
}

/* RWD */
@media (max-width: 980px){
  .guests-grid{ grid-template-columns: 1fr; }
  .guest-item p{ max-width: none; }
}
/* ===== BONS PLANS LOCAUX ======================================= */
.locals{ padding: 28px 0 70px; }
.locals-grid{
  display:grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: 40px;
  align-items:start;
}

.locals-figure{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  border:1px solid #eadfca;
}
.locals-figure img{
  display:block; width:100%; height:100%; object-fit:cover;
}

.locals-intro{
  color: var(--muted);
  margin: 10px 0 18px;
  font-size: 16.5px;
  max-width: 720px;
}

/* Liste d’items avec icône à gauche */
.locals-features{ display:grid; gap: 26px; }

.feature{
  display:grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  align-items:start;
}
.feature-ico{
  width:40px; height:40px; border-radius:10px;
  background:#f6ecd3;
  border:1px solid #e6d7b6;
  display:grid; place-items:center;
  margin-top: 4px;
}
.ico{ width:20px; height:20px; fill: var(--brand-strong); }

.feature-body h3{
  font-family:"Cormorant Garamond", serif;
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--text);
  font-weight:700;
}
.feature-body p{
  margin:0;
  color: var(--muted);
  font-size: 15.8px;
}

/* RWD */
@media (max-width: 980px){
  .locals-grid{ grid-template-columns: 1fr; gap: 22px; }
}

/* ===== GALERIE DES LOGEMENTS =================================== */
.gallery{ padding: 56px 0 80px; }
.gallery-head .h2{
  font-size: clamp(34px, 5vw, 64px);
  margin: 0 0 12px;
}
.gallery-intro{
  color: var(--muted);
  font-size: 16.8px;
  max-width: 960px;
  margin: 0 0 28px;
}

.property-title{
  font-family:"Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight:700;
  color: var(--text);
  margin: 14px 0 6px;
}
.property-desc{
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 16.2px;
}

/* Carrousel de propriétés */
.property-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.carousel-btn--prev {
  left: -12px;
}

.carousel-btn--next {
  right: -12px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #ac8f34;
  width: 24px;
  border-radius: 4px;
}

.property-grid{
  display: flex;
  gap: 20px;
  padding: 0 20px;
  transition: transform 0.4s ease;
}

.property-grid .property-img {
  flex: 0 0 calc(33.333% - 13.333px);
  min-width: calc(33.333% - 13.333px);
}
.property-img{
  margin:0;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #eadfca;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  background:#f6f1e6;
}
.property-img img{
  display:block; width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.property-img:hover img{ transform: scale(1.03); }

/* RWD */
@media (max-width: 980px){
  .property-carousel {
    margin: 0;
  }

  .property-grid {
    padding: 0;
    gap: 0;
  }

  .property-grid .property-img {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  .carousel-btn--prev {
    left: 10px;
  }
  .carousel-btn--next {
    right: 10px;
  }
}

/* ===== BANDE MOUTARDE POUR UN LOGEMENT =============================== */
.gallery-band{
  background:#ac8f34;                 /* même moutarde que précédemment */
  padding: 44px 0 66px;
}

.property--band .property-title{
  color:#2e2b23;                      /* texte sombre sur fond moutarde */
  margin-top: 0;
}
.property--band .property-desc{
  color:#2e2b23;
  opacity:.95;
}

/* Images : bord et ombre un peu plus marqués pour contraster */
.property--band .property-img{
  border:1px solid #8f7a33;
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
  border-radius:12px;
  overflow:hidden;
  background: #f0e6c7;
}

/* Optionnel : garder des ratios homogènes sur cette bande */
.property--band .property-img{ aspect-ratio: 4/3; }
.property--band .property-img img{ width:100%; height:100%; object-fit:cover; }

/* RWD : hérite des règles de .property-grid (déjà définies), sinon : */
@media (max-width: 980px){
  .gallery-band{ padding: 36px 0 46px; }
}

/* ===== CONTACT =================================================== */
.contact{ padding: 56px 0 80px; }
.contact-intro{
  color: var(--muted);
  font-size: 16.8px;
  max-width: 980px;
  margin: 6px 0 22px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 34px;
  align-items: start;
}

.contact-sub{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
}
.contact-text, .contact-lines{ color: var(--muted); margin: 0 0 14px; }

/* Image */
.contact-figure{
  margin: 10px 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eadfca;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.contact-figure img{ display:block; width:100%; height:100%; object-fit: cover; }

/* Panneau droit avec barre verticale décorative */
.contact-right{
  position: relative;
  padding-left: 20px;
}
.contact-right::before{
  content:"";
  position:absolute; left:0; top:4px; bottom:4px;
  width:3px;
  background: linear-gradient(#d8c79b, #e9ddc2);
  border-radius: 2px;
}

/* Bouton WhatsApp style “moutarde” */
.btn--wa{
  display:inline-block;
  margin: 6px 0 14px;
  background: var(--brand-strong);
  border: 1px solid #8f7a33;
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease;
}
.btn--wa:hover{ background:#816a2e; transform: translateY(-1px); }

.contact-note{
  color: var(--muted);
  font-size: 15.8px;
  max-width: 560px;
}

/* RWD */
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-right{ padding-left: 0; }
  .contact-right::before{ display:none; }
}

/* ===== DEMANDE D'INFORMATION PERSONNALISÉE ======================= */
.form-info{
  background:#ac8f34;         /* fond moutarde identique au reste */
  padding:68px 0 40px;
  color:#2e2b23;
}

.form-intro{
  color:#2e2b23;
  opacity:.9;
  max-width:950px;
  margin:8px 0 28px;
  font-size:16.8px;
}

/* ===== FORMULAIRE ============================================== */
.contact-form{
  background:rgba(255,253,248,0.98);
  border-radius:16px;
  padding:36px 40px 42px;
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,0.6);
  margin-bottom:26px;
}

/* Section du formulaire */
.form-section{
  margin-bottom:32px;
  padding-bottom:24px;
  border-bottom:1px solid #e9e3d4;
}
.form-section:last-of-type{
  border-bottom:none;
  padding-bottom:0;
  margin-bottom:24px;
}

.form-section-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:"Cormorant Garamond", serif;
  font-size:24px;
  font-weight:700;
  color:var(--text);
  margin:0 0 20px;
}

.form-icon{
  width:38px; height:38px;
  border-radius:10px;
  background:#f6ecd3;
  border:1px solid #e6d7b6;
  display:grid;
  place-items:center;
  flex-shrink:0;
}

/* Radio personnalisés */
.radio-group{
  display:grid;
  gap:14px;
}

.radio-label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border:2px solid #e9e3d4;
  border-radius:10px;
  cursor:pointer;
  transition:all .2s ease;
  background:#fff;
}

.radio-label:hover{
  border-color:var(--brand);
  box-shadow: 0 4px 12px rgba(183,154,75,.12);
}

.radio-label input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.radio-custom{
  width:22px;
  height:22px;
  border:2px solid #d8c79b;
  border-radius:50%;
  position:relative;
  flex-shrink:0;
  margin-top:2px;
  transition:all .2s ease;
}

.radio-label input[type="radio"]:checked ~ .radio-custom{
  border-color:var(--brand-strong);
  background:var(--brand-strong);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  width:8px; height:8px;
  border-radius:50%;
  background:#fff;
}

.radio-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.radio-text strong{
  font-size:16px;
  color:var(--text);
  font-weight:600;
}

.radio-text small{
  font-size:14px;
  color:var(--muted);
}

/* Champs de formulaire */
.form-row{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-bottom:18px;
}

.form-row:last-child{
  margin-bottom:0;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label{
  font-size:15px;
  font-weight:600;
  color:var(--text);
}

.required{
  color:#c85050;
  font-weight:700;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea{
  padding:12px 14px;
  border:2px solid #e9e3d4;
  border-radius:8px;
  font-size:15px;
  font-family:inherit;
  color:var(--text);
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow: 0 0 0 3px rgba(183,154,75,.12);
}

/* Champs en erreur */
.form-field input.field-error,
.form-field textarea.field-error{
  border-color:#c85050;
  background:#fff5f5;
}

.form-field textarea{
  resize:vertical;
  min-height:120px;
}

/* Checkbox RGPD */
.checkbox-label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
}

.checkbox-label input[type="checkbox"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.checkbox-custom{
  width:22px;
  height:22px;
  border:2px solid #d8c79b;
  border-radius:6px;
  position:relative;
  flex-shrink:0;
  margin-top:2px;
  transition:all .2s ease;
  background:#fff;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom{
  border-color:var(--brand-strong);
  background:var(--brand-strong);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after{
  content:"✓";
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  font-size:16px;
  font-weight:700;
  line-height:1;
}

.checkbox-text{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}

.link-privacy{
  color:var(--brand-strong);
  text-decoration:underline;
  font-weight:500;
}

.link-privacy:hover{
  color:var(--text);
}

/* Actions */
.form-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.btn--submit{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 32px;
  font-size:17px;
  font-weight:700;
  background:var(--brand-strong);
  color:#fff;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:all .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.btn--submit:hover{
  background:#816a2e;
  transform:translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.btn--submit:active{
  transform:translateY(0);
}

.btn--submit:disabled{
  opacity:0.7;
  cursor:not-allowed;
  transform:translateY(0);
}

.btn-icon{
  display:grid;
  place-items:center;
}

.btn-icon .ico{
  width:20px;
  height:20px;
  fill:#fff;
}

/* Animation de rotation pour le loading */
@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

.spinning{
  animation: spin 1s linear infinite;
}

.form-note{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  color:var(--muted);
  text-align:center;
}

.form-note-icon{
  font-size:16px;
}

/* Message de succès */
.form-success{
  background:#e8f5e9;
  border:2px solid #4caf50;
  border-radius:12px;
  padding:32px 28px;
  text-align:center;
  margin-top:24px;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  background:#4caf50;
  color:#fff;
  border-radius:50%;
  font-size:38px;
  font-weight:700;
  margin-bottom:18px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
  animation: pulse 0.6s ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.form-success h4{
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  color:#2e7d32;
  margin:0 0 12px;
  font-weight:700;
}

.form-success p{
  color:#4a4a4a;
  margin:0;
  font-size:16px;
  line-height:1.6;
}

/* Ligne finale */
.form-footer{
  margin-top:22px;
  padding-top:16px;
  border-top:2px solid rgba(255,255,255,0.45);
  text-align:center;
  font-size:14.4px;
}
.form-footer a{
  color:#2e2b23;
  text-decoration:none;
  font-weight:600;
}
.form-footer a:hover{ text-decoration:underline; }

/* Responsive */
@media(max-width:980px){
  .contact-form{
    padding:28px 24px 32px;
  }
  
  .form-row{
    grid-template-columns:1fr;
  }
  
  .form-section-title{
    font-size:21px;
  }
  
  .btn--submit{
    width:100%;
    justify-content:center;
  }

  .navbar-brand img {
    height: 100px;
  }
}