*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --brun: #5C3D1E;
    --brun-clair: #8B5E3C;
    --brun-hover: #4a3018;
    --beige: #F5EFE6;
    --creme: #FAF5EE;
    --texte: #1A1A1A;
    --texte-sec: #6B6B6B;
    --blanc: #FFFFFF;
    --or: #C9A96E;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--texte);
    background: var(--blanc);
    font-size: 17px;
    line-height: 1.7;
  }

  /* ============================================
     NAV
     Elementor : Header template + menu natif
     ============================================ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(92,61,30,0.12);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brun);
    text-decoration: none;
    line-height: 1.2;
  }

  .nav-logo span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--texte-sec);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--texte);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--brun); }

  .nav-tel {
    color: var(--brun) !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .nav-cta {
    background: var(--brun) !important;
    color: var(--blanc) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 4px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--brun-hover) !important; }

  /* Hamburger — NOUVEAU */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brun);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--blanc);
    border-bottom: 1px solid rgba(92,61,30,0.1);
    z-index: 99;
    flex-direction: column;
    padding: 1.2rem 5%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(92,61,30,0.08);
    text-decoration: none;
    color: var(--texte);
    font-size: 1rem;
  }

  .mobile-menu a:last-child { border-bottom: none; color: var(--brun); font-weight: 600; }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    /* Remplacer par une vraie photo d'atelier */
    background-image: url('https://images.unsplash.com/photo-1504148455328-c376907d081c?w=1800&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,10,3,0.80) 0%, rgba(92,61,30,0.45) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 780px;
    animation: fadeUp 1s ease 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.2rem;
    font-weight: 400;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--blanc);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    font-weight: 700;
  }

  .hero h1 em { font-style: italic; color: var(--or); }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.4rem;
    font-weight: 300;
    max-width: 520px;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .btn-primary {
    background: var(--brun);
    color: var(--blanc);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--brun-hover); transform: translateY(-1px); }

  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--blanc);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

  .hero-reassurance {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
  }

  .hero-reassurance li {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .hero-reassurance li::before { content: '✓'; color: var(--or); font-weight: 700; }

  /* ============================================
     TRUST BAR — NOUVEAU
     Elementor : Section + colonnes icon/texte
     ============================================ */
  .trust-bar {
    background: var(--brun);
    overflow: hidden;
  }

  .trust-bar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
  }

  .trust-item:last-child { border-right: none; }

  .trust-item-icon { color: var(--or); font-size: 0.9rem; }

  /* ============================================
     SECTIONS (base)
     ============================================ */
  section { padding: 90px 8%; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brun-clair);
    font-weight: 500;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    color: var(--texte);
    margin-bottom: 1.2rem;
  }

  .section-sub {
    color: var(--texte-sec);
    font-size: 1rem;
    max-width: 540px;
    font-weight: 300;
  }

  /* ============================================
     VALEURS
     ============================================ */
  .valeurs { background: var(--creme); }

  .valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .valeur-card {
    background: var(--blanc);
    padding: 2rem 1.8rem;
    border-radius: 6px;
    border-left: 3px solid var(--or);
    transition: transform 0.25s;
  }

  .valeur-card:hover { transform: translateY(-4px); }

  .valeur-icon { font-size: 1.8rem; margin-bottom: 1rem; }

  .valeur-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--brun);
  }

  .valeur-card p {
    font-size: 0.92rem;
    color: var(--texte-sec);
    font-weight: 300;
    line-height: 1.65;
  }

  /* ============================================
     À PROPOS + COMPTEURS ANIMÉS — NOUVEAU
     Elementor : Fun Facts (Pro) ou HTML widget
     ============================================ */
  .apropos-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .apropos-img {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/5;
  }

  .apropos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .apropos-deco {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 50%;
    height: 50%;
    border: 2px solid var(--or);
    border-radius: 4px;
    z-index: -1;
  }

  .apropos-text p {
    color: var(--texte-sec);
    margin-bottom: 1.2rem;
    font-weight: 300;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .apropos-stats {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(92,61,30,0.12);
    border-bottom: 1px solid rgba(92,61,30,0.12);
    flex-wrap: wrap;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--brun);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--texte-sec);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-top: 0.2rem;
    display: block;
  }

  .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brun);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1.5px solid var(--or);
    padding-bottom: 2px;
    transition: gap 0.2s;
  }

  .btn-sec:hover { gap: 0.8rem; }

  /* ============================================
     ESSENCES BOIS — NOUVEAU
     Elementor : Grille + colonnes + image
     ============================================ */
  .essences {
    background: var(--texte);
    padding: 80px 8%;
  }

  .essences .section-label { color: var(--or); }
  .essences .section-title { color: var(--blanc); }
  .essences .section-sub { color: rgba(255,255,255,0.5); }

  .essences-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .essences-grid::-webkit-scrollbar { display: none; }

  .essence-item { flex-shrink: 0; width: 175px; }

  .essence-swatch {
    width: 100%;
    height: 130px;
    border-radius: 6px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
  }

  /* Simulation visuelle du grain bois en CSS */
  .swatch-chene {
    background: linear-gradient(170deg, #C8952C 0%, #A07830 40%, #C9A040 60%, #9A7028 100%);
  }
  .swatch-chene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(93deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
  }

  .swatch-noyer {
    background: linear-gradient(170deg, #4A2C17 0%, #3C200F 40%, #5A3820 60%, #3A1E0C 100%);
  }
  .swatch-noyer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(87deg, transparent, transparent 4px, rgba(255,255,255,0.025) 4px, rgba(255,255,255,0.025) 5px);
  }

  .swatch-frene {
    background: linear-gradient(170deg, #D4C4A8 0%, #C0B090 40%, #D8C8AC 60%, #B8A878 100%);
  }
  .swatch-frene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(96deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 3px);
  }

  .swatch-hetre {
    background: linear-gradient(170deg, #E0C8A8 0%, #D0B890 40%, #E4CCB0 60%, #C8A878 100%);
  }
  .swatch-hetre::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(0,0,0,0.025) 5px, rgba(0,0,0,0.025) 6px);
  }

  .swatch-douglas {
    background: linear-gradient(170deg, #C87840 0%, #A85E28 40%, #D08848 60%, #9C5020 100%);
  }
  .swatch-douglas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(91deg, transparent, transparent 3px, rgba(0,0,0,0.05) 3px, rgba(0,0,0,0.05) 4px);
  }

  .essence-name {
    color: var(--blanc);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
  }

  .essence-desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.5;
  }

  .essence-badge {
    display: inline-block;
    background: rgba(201,169,110,0.12);
    color: var(--or);
    font-size: 0.68rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201,169,110,0.25);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
  }

  /* ============================================
     SERVICES + PRIX INDICATIFS — NOUVEAU
     Elementor : Image Box + texte prix
     ============================================ */
  .services { background: var(--beige); }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    background: var(--blanc);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(92,61,30,0.12);
  }

  .service-img { height: 210px; overflow: hidden; }

  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .service-card:hover .service-img img { transform: scale(1.05); }

  .service-body { padding: 1.5rem; }

  .service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brun);
    margin-bottom: 0.5rem;
  }

  .service-body p {
    font-size: 0.88rem;
    color: var(--texte-sec);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  /* Prix indicatif — NOUVEAU */
  .service-prix {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--brun-clair);
    font-weight: 500;
    border-top: 1px solid rgba(92,61,30,0.1);
    padding-top: 0.8rem;
  }

  .service-prix::before { content: '↗'; }

  /* ============================================
     RÉALISATIONS
     ============================================ */
  .realisations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .real-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
  }

  .real-item:first-child {
    aspect-ratio: auto;
    grid-row: span 2;
  }

  .real-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .real-item:hover img { transform: scale(1.04); }

  .real-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,10,3,0);
    transition: background 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
  }

  .real-item:hover .real-overlay { background: rgba(20,10,3,0.45); }

  .real-label {
    color: #fff;
    font-size: 0.82rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .real-item:hover .real-label { opacity: 1; transform: translateY(0); }

  .realisations-cta { text-align: center; margin-top: 2.5rem; }

  /* ============================================
     PROCESSUS — avec diagonales CSS
     Elementor : Shape Divider haut + bas
     sur la section (triangle asymétrique)
     ============================================ */
  .processus {
    background: var(--brun);
    position: relative;
    padding: 110px 8%;
  }

  .processus::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: var(--beige);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  }

  .processus::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: var(--creme);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  }

  .processus .section-title { color: var(--blanc); }
  .processus .section-label { color: var(--or); }

  .processus-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .step { text-align: center; padding: 1rem; }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--or);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
  }

  .step h3 {
    color: var(--blanc);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
  }

  .step p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
  }

  /* ============================================
     AVIS — avec note Google globale — NOUVEAU
     Elementor : widget HTML personnalisé
     ============================================ */
  .avis { background: var(--creme); }

  .google-rating-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--blanc);
    border: 1px solid rgba(92,61,30,0.12);
    border-radius: 8px;
    padding: 1.2rem 2rem;
    margin: 2.5rem 0 3rem;
    flex-wrap: wrap;
    max-width: 480px;
  }

  .google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texte-sec);
  }

  .google-logo svg { width: 20px; height: 20px; }

  .google-score {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brun);
    line-height: 1;
  }

  .google-stars-row { display: flex; flex-direction: column; gap: 0.15rem; }
  .google-stars { color: #F4B400; font-size: 1rem; }
  .google-count { font-size: 0.78rem; color: var(--texte-sec); font-weight: 300; }

  .google-link {
    margin-left: auto;
    font-size: 0.82rem;
    color: var(--brun-clair);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .google-link:hover { color: var(--brun); }

  .avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .avis-card {
    background: var(--blanc);
    padding: 2rem;
    border-radius: 6px;
    border-top: 3px solid var(--or);
    transition: transform 0.25s;
  }

  .avis-card:hover { transform: translateY(-4px); }

  .stars { color: var(--or); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

  .avis-texte {
    font-size: 0.92rem;
    color: var(--texte-sec);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }

  .avis-auteur {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brun);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ============================================
     CTA DEVIS — avec badges garantie — NOUVEAU
     Elementor : Icon List widget pour les badges
     ============================================ */
  .cta-devis {
    background: var(--beige);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .cta-devis-text .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

  .cta-devis-text > p {
    color: var(--texte-sec);
    font-weight: 300;
    margin: 1rem 0 1.8rem;
    line-height: 1.75;
  }

  /* Badges de garantie — NOUVEAU */
  .garantie-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .garantie-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--blanc);
    border: 1.5px solid rgba(92,61,30,0.15);
    border-radius: 4px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    color: var(--brun);
    font-weight: 500;
  }

  .garantie-badge svg {
    width: 13px;
    height: 13px;
    stroke: var(--or);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
  }

  .cta-contact-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .cta-contact-info a {
    color: var(--brun);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
  }

  .cta-contact-info a:hover { color: var(--brun-clair); }

  /* Formulaire */
  .form-devis {
    background: var(--blanc);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(92,61,30,0.08);
  }

  .form-devis h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brun);
    margin-bottom: 1.5rem;
  }

  .form-group { margin-bottom: 1.2rem; }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--texte-sec);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(92,61,30,0.2);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--texte);
    background: var(--creme);
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--brun); }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-note {
    font-size: 0.75rem;
    color: var(--texte-sec);
    font-weight: 300;
    margin-bottom: 0.8rem;
  }

  .btn-submit {
    width: 100%;
    background: var(--brun);
    color: var(--blanc);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
  }

  .btn-submit:hover { background: var(--brun-hover); }

  /* ============================================
     ZONE D'INTERVENTION
     ============================================ */
  .zone { background: var(--blanc); }

  .zone-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }

  .zone-text p {
    color: var(--texte-sec);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
  }

  .zone-villes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .ville-tag {
    background: var(--beige);
    color: var(--brun);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    border: 1px solid rgba(92,61,30,0.2);
  }

  .zone-map {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(92,61,30,0.12);
  }

  .zone-map iframe { width: 100%; height: 100%; border: none; display: block; }

  /* ============================================
     FAQ
     ============================================ */
  .faq { background: var(--creme); }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .faq-item {
    background: var(--blanc);
    padding: 1.8rem;
    border-radius: 6px;
    border-left: 3px solid var(--beige);
    transition: border-color 0.2s, transform 0.2s;
  }

  .faq-item:hover { border-color: var(--or); transform: translateY(-2px); }

  .faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--brun);
    margin-bottom: 0.6rem;
  }

  .faq-item p {
    font-size: 0.88rem;
    color: var(--texte-sec);
    font-weight: 300;
    line-height: 1.65;
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--texte);
    color: rgba(255,255,255,0.6);
    padding: 70px 8% 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .logo-footer {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--blanc);
    margin-bottom: 0.3rem;
    display: block;
  }

  .footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.2rem;
    display: block;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 0.4rem;
  }

  .footer-siret {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
    font-weight: 300;
    margin-top: 1rem;
    display: block;
  }

  .footer-col h4 {
    color: var(--blanc);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--or); }

  .footer-contact-item {
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-item a:hover { color: var(--or); }

  .footer-contact-item small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: rgba(255,255,255,0.55); }

  .footer-bottom-links { display: flex; gap: 1.5rem; }

  /* ============================================
     BOUTON WHATSAPP FLOTTANT — NOUVEAU
     Elementor : plugin "ElementsKit" ou
     widget HTML personnalisé
     ============================================ */
  .whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    background: #25D366;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fabIn 0.5s ease 1.5s both;
  }

  @keyframes fabIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
  }

  .whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* ============================================
     STICKY MOBILE — amélioré — NOUVEAU
     Deux boutons : appel direct + devis
     Elementor : Section fixe mobile
     ============================================ */
  .mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    background: var(--blanc);
    border-top: 1px solid rgba(92,61,30,0.12);
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }

  .mobile-sticky a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
  }

  .mobile-sticky-tel {
    background: var(--beige);
    color: var(--brun);
    border: 1.5px solid rgba(92,61,30,0.2);
  }

  .mobile-sticky-devis {
    background: var(--brun);
    color: var(--blanc);
  }

  /* ============================================
     ANIMATIONS AU SCROLL — NOUVEAU
     Elementor : Motion Effects (Pro) OU
     coller ce script dans un HTML widget
     ============================================ */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
  .fade-up:nth-child(5) { transition-delay: 0.1s; }
  .fade-up:nth-child(6) { transition-delay: 0.2s; }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 960px) {
    section { padding: 70px 5%; }
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .apropos-wrap, .cta-devis, .zone-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .apropos-img { aspect-ratio: 16/9; }
    .apropos-deco { display: none; }
    .realisations-grid { grid-template-columns: 1fr 1fr; }
    .real-item:first-child { grid-row: auto; grid-column: span 2; aspect-ratio: 16/7; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .mobile-sticky { display: flex; }
    .whatsapp-fab { bottom: 5.5rem; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; justify-content: center; padding: 0.75rem 1rem; }
    .trust-item:last-child { border-bottom: none; }
    .essences { padding: 70px 5%; }
    .processus { padding: 120px 5%; }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .realisations-grid { grid-template-columns: 1fr; }
    .real-item:first-child { grid-column: auto; aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
    .apropos-stats { gap: 1.5rem; }
    .google-rating-bar { flex-wrap: wrap; gap: 1rem; }
    .google-link { margin-left: 0; }
    .processus::before, .processus::after { height: 35px; }
    .services-header { flex-direction: column; align-items: flex-start; }
  }

/* WordPress helpers */
.admin-bar nav { top: 32px; }
.admin-bar .mobile-menu { top: 104px; }
@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .mobile-menu { top: 118px; }
}

.zone-map--static {
  background: linear-gradient(135deg, var(--beige), var(--creme));
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-map-link {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brun);
  text-decoration: none;
  padding: 2rem;
}
.zone-map-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.zone-map-sub {
  color: var(--texte-sec);
  font-size: 0.92rem;
}

.form-devis .ff-el-group label,
.form-devis .ff-el-input--label label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--texte-sec);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-devis .ff-el-form-control {
  border: 1.5px solid rgba(92,61,30,0.2) !important;
  border-radius: 4px !important;
  background: var(--creme) !important;
  color: var(--texte) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.form-devis .ff-btn-submit {
  width: 100%;
  background: var(--brun) !important;
  color: var(--blanc) !important;
  padding: 1rem !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}
.form-devis .ff-btn-submit:hover { background: var(--brun-hover) !important; }

/* Correction Fluent Forms — case RGPD */
.tdb-form-devis .ff-el-form-check,
.tdb-form-devis .ff-el-form-check label,
.tdb-form-devis .ff-el-form-check-label,
.tdb-form-devis .ff-el-form-check-label span {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

/* Fluent Forms — correction du texte de la case RGPD */
.form-devis .ff-el-form-check label,
.form-devis .ff-el-form-check label span,
.form-devis .ff-el-form-check .ff-el-form-check-label {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--texte) !important;
}

/* Header fixe au scroll */
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99998 !important;
}

/* Quand on est connecté à WordPress, tenir compte de la barre admin */
.admin-bar nav {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar nav {
    top: 0px !important;
  }
}

/* Menu mobile sous le header */
.mobile-menu {
  position: fixed !important;
  top: 0px !important;
  z-index: 99998 !important;
}

.admin-bar .mobile-menu {
  top: calc(72px + 32px) !important;
}

@media (max-width: 782px) {
  .admin-bar .mobile-menu {
    top: calc(30px + 46px) !important;
  }
}
/* Zone intervention — amélioration du bloc carte statique */
.zone-map {
  background:
    linear-gradient(rgba(250,245,238,0.82), rgba(250,245,238,0.82)),
    radial-gradient(circle at 30% 30%, rgba(201,169,110,0.35), transparent 28%),
    radial-gradient(circle at 70% 65%, rgba(92,61,30,0.18), transparent 32%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-map a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--brun);
  padding: 2rem;
}

.zone-map a::before {
  content: "📍";
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.zone-map a strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.zone-map a span {
  color: var(--texte-sec);
  font-size: 0.95rem;
}
/* Logo image dans le header */
.nav-logo--image {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo--image img {
  display: block;
  width: auto;
  height: 100px;
  max-width: 260px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .nav-logo--image img {
    height: 44px;
    max-width: 190px;
  }
}
/* Ajustements header 100px */
.hero {
  padding-top: 100px;
}

.mobile-menu {
  top: 100px !important;
}

html {
  scroll-padding-top: 110px;
}

@media (max-width: 782px) {
  nav {
    height: 76px;
  }

  .nav-logo--image img {
    height: 68px;
    max-width: 190px;
  }

  .hero {
    padding-top: 76px;
  }

  .mobile-menu {
    top: 76px !important;
  }

  html {
    scroll-padding-top: 86px;
  }
}
/* Facebook compact dans le menu */
.nav-facebook {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brun);
  color: #fff !important;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1;
}

.nav-facebook::before {
  content: none !important;
}

.nav-facebook:hover {
  background: var(--brun-hover);
  color: #fff !important;
}

.nav-facebook::before {
  content: "f";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--brun);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}
/* Footer — lien Facebook */
.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--or);
}

.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1877F2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}
/* Portfolio — galeries modifiables avec onglets */
.tdb-gallery-tabs-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(92,61,30,0.12);
}

.tdb-gallery-tabs-intro {
  margin-bottom: 2rem;
}

.tdb-gallery-tabs-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--texte);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.tdb-gallery-tabs-intro p:not(.section-label) {
  color: var(--texte-sec);
  font-size: 0.95rem;
  font-weight: 300;
}

.tdb-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.tdb-gallery-tab {
  border: none;
  background: #f1f1f1;
  color: var(--brun);
  padding: 0.95rem 1.4rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.tdb-gallery-tab:hover {
  background: var(--beige);
  transform: translateY(-1px);
}

.tdb-gallery-tab.is-active {
  background: var(--or);
  color: #fff;
}

.tdb-gallery-panel {
  display: none;
}

.tdb-gallery-panel.is-active {
  display: block;
}

.tdb-gallery-panels {
  min-height: 180px;
}

.tdb-gallery-panels img {
  border-radius: 6px;
}

@media (max-width: 700px) {
  .tdb-gallery-tabs {
    flex-direction: column;
  }

  .tdb-gallery-tab {
    width: 100%;
    text-align: center;
  }
}
/* Section savoir-faire atelier */
.savoir-faire-section {
  background: #fff;
}

/* Section galerie séparée */
.tdb-gallery-section {
  background: var(--creme);
  padding: 90px 8%;
}

.tdb-gallery-section .tdb-gallery-tabs-block {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.tdb-gallery-section .section-title {
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
  .tdb-gallery-section {
    padding: 70px 5%;
  }
}
/* Zone d’intervention — texte + carte */
.zone-mini--map {
  background: #fff;
  padding: 70px 8%;
}

.zone-mini--map .zone-mini__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid rgba(92,61,30,0.12);
  border-bottom: 1px solid rgba(92,61,30,0.12);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 3rem;
  align-items: stretch;
}

.zone-mini__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zone-mini--map .zone-mini__header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.zone-mini--map .zone-mini__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--texte);
  margin-bottom: 1rem;
}

.zone-mini--map .zone-mini__header p:not(.section-label) {
  color: var(--texte-sec);
  font-weight: 300;
  line-height: 1.7;
}

.zone-mini--map .zone-mini__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.zone-mini--map .zone-mini__tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(92,61,30,0.18);
  background: var(--creme);
  color: var(--brun);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.zone-mini--map .zone-mini__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: var(--brun);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--or);
  padding-bottom: 0.2rem;
}

.zone-mini--map .zone-mini__link:hover {
  color: var(--or);
}

.zone-mini__map {
  display: block;
  min-height: 330px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(92,61,30,0.12);
  background: var(--creme);
}

.zone-mini__map img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.zone-mini__map:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .zone-mini--map .zone-mini__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zone-mini__map,
  .zone-mini__map img {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .zone-mini--map {
    padding: 55px 5%;
  }

  .zone-mini--map .zone-mini__inner {
    padding: 2rem 0;
  }

  .zone-mini--map .zone-mini__tags span {
    font-size: 0.8rem;
  }
}