
:root {
  --or: #C89A4A;
  --or-dark: #B0873F;
  --or-light: #E0B96E;
  --noir: #0A0E15;
  --noir-soft: #1A2030;
  --blanc: #FFFFFF;
  --gris-fond: #F8F7F4;
  --gris-clair: #E8E6E1;
  --gris-texte: #666B72;
  --texte: #1A2030;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════ */
/* NAVIGATION                              */
/* ═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--noir);
  border-bottom: 1px solid rgba(200, 154, 74, 0.15);
  padding: 0;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 16px 0;
  margin-right: auto;
}
.nav__brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 74, 0.3);
}
.nav__brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__brand-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--blanc);
  letter-spacing: 0.02em;
}
.nav__brand-tag {
  font-size: 11px;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.nav__links {
  display: flex;
  list-style: none;
  align-items: stretch;
}
.nav__links a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
  height: 100%;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--or);
  background: rgba(200, 154, 74, 0.06);
}
.nav__cta {
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: var(--or);
  color: var(--noir);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav__cta:hover {
  background: var(--or-light);
}
.nav__mobile-toggle { display: none; }

@media (max-width: 900px) {
  .nav__inner { padding: 0 16px; }
  .nav__links, .nav__cta { display: none; }
  .nav__brand { border-right: none; padding: 14px 0; }
  .nav__mobile-toggle {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: var(--or);
    font-size: 24px;
    cursor: pointer;
  }
}

/* ═══════════════════════════════════════ */
/* HERO                                    */
/* ═══════════════════════════════════════ */
.hero {
  background: var(--noir);
  color: var(--blanc);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 154, 74, 0.15) 0%, transparent 60%);
  transform: translateX(-50%) translateY(-20%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(200, 154, 74, 0.12);
  border: 1px solid rgba(200, 154, 74, 0.3);
  color: var(--or);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--blanc);
}
.hero__title em {
  font-style: italic;
  color: var(--or);
  font-weight: 500;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn--primary {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}
.btn--primary:hover {
  background: var(--or-light);
  border-color: var(--or-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 154, 74, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--blanc);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--or);
  color: var(--or);
}
.hero__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 154, 74, 0.15);
}
.hero__badge {
  display: flex;
  flex-direction: column;
}
.hero__badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--or);
  line-height: 1;
}
.hero__badge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 74, 0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--or);
  color: var(--noir);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero { padding: 60px 20px 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { max-width: 380px; margin: 0 auto; }
  .hero__badges { justify-content: space-between; gap: 12px; }
  .hero__badge-num { font-size: 22px; }
}

/* ═══════════════════════════════════════ */
/* SECTIONS COMMUNES                       */
/* ═══════════════════════════════════════ */
.section {
  padding: 100px 24px;
}
.section--dark {
  background: var(--noir);
  color: var(--blanc);
}
.section--light {
  background: var(--gris-fond);
}
.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--or);
}
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section__title em {
  font-style: italic;
  color: var(--or);
  font-weight: 500;
}
.section--dark .section__title { color: var(--blanc); }
.section__lead {
  font-size: 17px;
  color: var(--gris-texte);
  line-height: 1.7;
}
.section--dark .section__lead { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) { .section { padding: 70px 20px; } }

/* ═══════════════════════════════════════ */
/* SERVICES (2 CARDS)                      */
/* ═══════════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.service:hover {
  border-color: var(--or);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.service__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service:hover .service__image img { transform: scale(1.05); }
.service__num {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--or);
  color: var(--noir);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.service__body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service__title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service__title em {
  font-style: italic;
  color: var(--or);
  font-weight: 500;
}
.service__desc {
  font-size: 15px;
  color: var(--gris-texte);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.service__list {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.service__list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--texte);
  border-top: 1px solid var(--gris-clair);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service__list li:last-child { padding-bottom: 0; }
.service__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--or);
  flex-shrink: 0;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--or);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 2px solid var(--or);
}
.service__link:hover { color: var(--or-dark); }
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════ */
/* GALERIE MOBILIER                        */
/* ═══════════════════════════════════════ */
.mobilier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mobilier-card {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.mobilier-card:hover {
  border-color: var(--or);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.mobilier-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.mobilier-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.mobilier-card:hover .mobilier-card__image img {
  transform: scale(1.05);
}
.mobilier-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--noir);
  color: var(--or);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobilier-card__body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobilier-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 10px;
  line-height: 1.2;
}
.mobilier-card__desc {
  font-size: 14.5px;
  color: var(--gris-texte);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.mobilier-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--or);
  padding-top: 12px;
  border-top: 1px solid var(--gris-clair);
}
@media (max-width: 900px) {
  .mobilier-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════ */
/* SLIDER AVANT/APRÈS                       */
/* ═══════════════════════════════════════ */
.ba-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.ba-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: crosshair;
  border: 1px solid var(--gris-clair);
  user-select: none;
  touch-action: none;
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-image--after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s;
}
.ba-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}
.ba-label--before {
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--blanc);
  backdrop-filter: blur(4px);
}
.ba-label--after {
  right: 20px;
  background: var(--or);
  color: var(--noir);
}
.ba-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--or);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 20px rgba(200, 154, 74, 0.5);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--noir);
  font-size: 22px;
  font-weight: 800;
  cursor: ew-resize;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 3;
  transition: transform 0.2s;
}
.ba-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.ba-tab {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gris-clair);
  color: var(--gris-texte);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.ba-tab:hover {
  border-color: var(--or);
  color: var(--or);
}
.ba-tab.active {
  background: var(--noir);
  color: var(--or);
  border-color: var(--noir);
}
.ba-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gris-texte);
  font-style: italic;
}

/* ═══════════════════════════════════════ */
/* CHIFFRES CLÉS (dark)                    */
/* ═══════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  color: var(--or);
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ═══════════════════════════════════════ */
/* GALERIE                                 */
/* ═══════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery__item:hover img { transform: scale(1.08); }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════ */
/* AVIS                                    */
/* ═══════════════════════════════════════ */
.avis-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}
.avis-header__stars {
  color: var(--or);
  font-size: 24px;
  letter-spacing: 3px;
}
.avis-header__meta {
  border-left: 1px solid var(--gris-clair);
  padding-left: 24px;
}
.avis-header__rating {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--texte);
  line-height: 1;
}
.avis-header__count {
  font-size: 13px;
  color: var(--gris-texte);
  margin-top: 4px;
}
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.avis-card {
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.avis-card__stars {
  color: var(--or);
  font-size: 16px;
  letter-spacing: 2px;
}
.avis-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--texte);
  flex: 1;
}
.avis-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gris-clair);
}
.avis-card__avatar {
  width: 36px; height: 36px;
  background: var(--or);
  color: var(--noir);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.avis-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--texte);
}
.avis-card__meta {
  font-size: 12px;
  color: var(--gris-texte);
}
@media (max-width: 900px) {
  .avis-grid { grid-template-columns: 1fr; }
  .avis-header { flex-direction: column; gap: 12px; }
  .avis-header__meta { border-left: none; border-top: 1px solid var(--gris-clair); padding-left: 0; padding-top: 12px; text-align: center; }
}

/* ═══════════════════════════════════════ */
/* CTA FINAL                               */
/* ═══════════════════════════════════════ */
.cta {
  text-align: center;
  padding: 100px 24px;
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--or);
  margin-top: 24px;
}

/* ═══════════════════════════════════════ */
/* FOOTER                                  */
/* ═══════════════════════════════════════ */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 24px;
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200,154,74,0.15);
}
.footer__brand-name {
  color: var(--blanc);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer__brand-tag {
  color: var(--or);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.footer__col-title {
  color: var(--or);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__list { list-style: none; padding: 0; }
.footer__list li { margin-bottom: 10px; font-size: 14px; }
.footer__list a:hover { color: var(--or); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════════ */
/* FORMULAIRE CONTACT                       */
/* ═══════════════════════════════════════ */
.cf {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cf__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cf__field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--texte);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.cf__field input,
.cf__field select,
.cf__field textarea {
  padding: 11px 14px;
  border: 1px solid var(--gris-clair);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--texte);
  outline: none;
  transition: border 0.2s;
  width: 100%;
}
.cf__field input:focus,
.cf__field select:focus,
.cf__field textarea:focus {
  border-color: var(--or);
}
.cf__field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: 'Inter', sans-serif;
}
.cf__rgpd {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: var(--gris-fond);
  border: 1px solid var(--gris-clair);
  font-size: 12px;
  color: var(--gris-texte);
  line-height: 1.5;
}
.cf__rgpd input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--or);
}
.cf__rgpd label {
  margin: 0;
  cursor: pointer;
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE MOBILE CONTACT               */
/* ═══════════════════════════════════════ */

/* Tablettes et mobiles */
@media (max-width: 900px) {
  /* Les 2 colonnes (infos + formulaire) deviennent 1 seule colonne */
  #contact-form .section__inner > div,
  section[class*="contact"] > div,
  .section__inner > div[style*="grid-template-columns: 1fr 1.4fr"] {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  
  /* Force TOUS les grids de la section contact en 1 colonne */
  #contact-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Ajuste le padding du formulaire */
  #contact-form form,
  form.cf {
    padding: 24px 20px !important;
  }
  
  /* Container du formulaire (colonne droite) */
  #contact-form > .section__inner > div > div:last-child,
  section[id*="contact"] .cf {
    margin-top: 20px;
  }
}

/* Mobiles strictement (téléphones) */
@media (max-width: 700px) {
  /* Les 2 champs par ligne (Prénom+Nom) deviennent 1 par ligne */
  .cf__row { 
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  
  /* Sections avec plus de padding */
  .section {
    padding: 50px 16px !important;
  }
  
  /* Formulaire : padding réduit */
  #contact-form form,
  form.cf {
    padding: 20px 16px !important;
  }
  
  /* Titre de la section contact plus petit */
  #contact-form .section__title {
    font-size: 28px !important;
  }
  
  /* Champs plus grands (facile à toucher au doigt) */
  .cf__field input,
  .cf__field select,
  .cf__field textarea {
    padding: 14px 14px !important;
    font-size: 16px !important; /* évite le zoom auto sur iPhone */
  }
  
  /* Labels plus lisibles */
  .cf__field label {
    font-size: 13px !important;
  }
  
  /* Bouton envoyer bien visible */
  form.cf button[type="submit"] {
    padding: 16px !important;
    font-size: 15px !important;
    margin-top: 12px !important;
  }
  
  /* Bloc RGPD lisible */
  .cf__rgpd {
    padding: 14px !important;
    font-size: 13px !important;
  }
  
  /* Zone infos contact : centrer et espacer */
  #contact-form > .section__inner > div > div:first-child > div {
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gris-clair);
  }
  
  #contact-form > .section__inner > div > div:first-child > div:last-child {
    border-bottom: none;
  }
}


/* ═══════════════════════════════════════ */
/* CONTACT WRAPPER - RESPONSIVE FORT       */
/* ═══════════════════════════════════════ */

/* Sur tablette et mobile : 2 colonnes → 1 colonne */
@media (max-width: 900px) {
  .contact-wrapper {
    display: block !important;
  }
  .contact-wrapper > div {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
  }
  .contact-wrapper > div:last-child {
    margin-bottom: 0;
  }
}

/* Sur mobile strict : padding réduit partout */
@media (max-width: 700px) {
  .contact-wrapper > div {
    padding: 24px 20px !important;
  }
  /* Sauf la colonne infos (pas de bloc blanc autour) */
  .contact-wrapper > div:first-child {
    padding: 0 !important;
  }
  /* Formulaire : padding compact */
  .contact-wrapper form {
    padding: 0 !important;
  }
}

/* Nav mobile : cacher le menu et le bouton devis (déjà géré) */
@media (max-width: 900px) {
  .nav__inner {
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════ */
/* BOUTON FLOTTANT WHATSAPP                */
/* ═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: waPulse 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}
.wa-float__label {
  position: absolute;
  right: 72px;
  background: var(--noir);
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.wa-float:hover .wa-float__label {
  opacity: 1;
}
@media (max-width: 700px) {
  .wa-float { width: 56px; height: 56px; font-size: 28px; bottom: 20px; right: 20px; }
  .wa-float__label { display: none; }
}

/* ═══════════════════════════════════════ */
/* BARRE RÉSEAUX SOCIAUX (hero + footer)   */
/* ═══════════════════════════════════════ */
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(200, 154, 74, 0.08);
  border: 1px solid rgba(200, 154, 74, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.socials__item:hover {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
  transform: translateY(-2px);
}
.socials__item--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}
.socials__item--wa:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.socials__icon {
  font-size: 16px;
}

/* Footer socials */
.footer .socials {
  margin-top: 16px;
}
.footer .socials__item {
  padding: 8px 12px;
  font-size: 12px;
}

/* Hero socials */
.hero .socials {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 154, 74, 0.15);
}
@media (max-width: 700px) {
  .socials { justify-content: center; }
}
