
  :root {
    --vert: #1c3d2e;
    --vert-moyen: #2d5c42;
    --vert-clair: #4a8060;
    --creme: #f5f0e8;
    --creme-fonce: #ede6d6;
    --or: #b8936a;
    --or-clair: #d4aa82;
    --texte: #1c2b22;
    --texte-secondaire: #4a5e52;
    --blanc: #fdfaf4;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── TYPOGRAPHIE ── */
  h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; }
  h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
  h3 { font-size: 1.15rem; }

  /* ── ORNEMENTS ── */
  .ornement {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
  }
  .ornement::before, .ornement::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--or);
    opacity: 0.5;
  }
  .ornement span {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--or);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    white-space: nowrap;
  }

  .filet {
    width: 40px;
    height: 2px;
    background: var(--or);
    margin: 0.75rem 0 1.25rem;
  }
  .filet.centre { margin: 0.75rem auto 1.25rem; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--vert);
    border-bottom: 1px solid rgba(184,147,106,0.3);
    padding: 20px 3% 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .nav-row1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 12px;
  }

  .nav-logo-link { text-decoration: none; }

  .nav-logo-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    display: block;
  }

  .nav-tel-wrap {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-row2 {
    width: 100%;
    border-top: 1px solid rgba(184,147,106,0.25);
    padding-top: 14px;
    padding-bottom: 4px;
    display: flex;
    justify-content: center;
  }

  .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-menu a {
    font-size: 15px;
    color: rgba(245,240,232,0.8);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-menu a:hover { color: var(--or-clair); }

  .nav-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--or);
    color: var(--vert);
    font-weight: 500;
    font-size: 17px;
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    animation: telPulse 2.4s ease-out infinite;
  }
  .nav-tel:hover { background: var(--or-clair); animation-play-state: paused; }
  .nav-tel svg { width: 14px; height: 14px; }

  @keyframes telPulse {
    0%   { box-shadow: 0 0 0 0 rgba(184,147,106,0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(184,147,106,0); }
    100% { box-shadow: 0 0 0 0 rgba(184,147,106,0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-tel { animation: none; }
  }

  /* ── BOUTON APPEL FLOTTANT ── */
  .fab-tel {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--or);
    color: var(--vert);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 300;
    box-shadow: 0 6px 22px rgba(28,61,46,0.35);
    transition: background 0.2s, transform 0.15s;
    animation: fabPulse 2.4s ease-out infinite;
  }
  .fab-tel:hover { background: var(--or-clair); transform: translateY(-2px); animation-play-state: paused; }
  .fab-tel svg { width: 24px; height: 24px; }

  @keyframes fabPulse {
    0%   { box-shadow: 0 6px 22px rgba(28,61,46,0.35), 0 0 0 0 rgba(184,147,106,0.55); }
    70%  { box-shadow: 0 6px 22px rgba(28,61,46,0.35), 0 0 0 14px rgba(184,147,106,0); }
    100% { box-shadow: 0 6px 22px rgba(28,61,46,0.35), 0 0 0 0 rgba(184,147,106,0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .fab-tel { animation: none; }
  }
  @media (max-width: 640px) {
    .fab-tel { width: 50px; height: 50px; right: 16px; bottom: 16px; }
    .fab-tel svg { width: 22px; height: 22px; }
  }

  /* ── HERO ── */
  .hero {
    background: var(--vert);
    background-image: url("hero-bg.jpg");
    background-size: cover;
    background-position: center 30%;
    padding: 80px 5% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    overflow: hidden;
    min-height: 640px;
    position: relative;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28,61,46,0.88) 0%, rgba(28,61,46,0.65) 60%, rgba(28,61,46,0.4) 100%);
    z-index: 0;
  }

  .hero > * { position: relative; z-index: 1; }



  .hero-content { padding-bottom: 80px; position: relative; z-index: 1; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(184,147,106,0.5);
    padding: 5px 14px;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--or-clair);
    margin-bottom: 24px;
  }
  .hero-badge svg { width: 12px; height: 12px; }

  .hero h1 {
    color: var(--creme);
    margin-bottom: 20px;
  }
  .hero h1 em {
    
    color: var(--or-clair);
  }

  .hero-desc {
    color: rgba(245,240,232,0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
  }

  .hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    background: var(--or);
    color: var(--vert);
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--or-clair); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--creme);
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 1; }
  .btn-ghost svg { width: 16px; height: 16px; }

  .hero-visuel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .hero-carte {
    background: rgba(28,61,46,0.75);
    border: 1px solid rgba(184,147,106,0.55);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    padding: 36px 40px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  }

  .hero-carte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-item { text-align: center; }
  .stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--or-clair);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-lbl {
    font-size: 13px;
    color: rgba(245,240,232,0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .stat-sep {
    width: 1px;
    background: rgba(184,147,106,0.2);
    align-self: stretch;
  }

  /* ── BANDEAU ENGAGEMENTS ── */
  .bandeau {
    background: var(--creme-fonce);
    border-top: 1px solid rgba(28,61,46,0.12);
    border-bottom: 1px solid rgba(28,61,46,0.12);
  }

  .bandeau-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .bandeau-item {
    padding: 44px 24px;
    border-right: 1px solid rgba(28,61,46,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .bandeau-item:last-child { border-right: none; }
  .bandeau-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--vert);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(28,61,46,0.2);
  }

  .bandeau-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--vert);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bandeau-icon svg { width: 18px; height: 18px; stroke: var(--or-clair); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .bandeau-text strong { display: block; font-size: 17px; font-weight: 500; color: var(--texte); margin-bottom: 2px; }
  .bandeau-text span { font-size: 14px; color: var(--texte-secondaire); line-height: 1.4; }

  /* ── SECTIONS COMMUNES ── */
  section { padding: 80px 5%; }

  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-header { text-align: center; margin-bottom: 52px; }
  .section-header h1, .section-header h2 { color: var(--vert); margin-bottom: 20px; }
  .section-header p { color: var(--texte-secondaire); font-size: 17px; max-width: 500px; margin: 0 auto; }

  /* ── SERVICES ── */
  .services { background: var(--blanc); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(28,61,46,0.1);
    border: 1px solid rgba(28,61,46,0.1);
    border-radius: 4px;
    overflow: hidden;
  }

  .service-card {
    background: var(--blanc);
    padding: 32px 28px;
    transition: background 0.2s;
  }
  .service-card:hover { background: var(--creme); }

  .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }
  .service-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--vert-moyen);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-card h3 { color: var(--vert); margin-bottom: 8px; }
  .service-card p { font-size: 17px; color: var(--texte-secondaire); line-height: 1.6; margin-bottom: 20px; }

  .service-tag {
    display: inline-block;
    border: 1px solid var(--or);
    color: var(--or);
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ── TARIFS ── */
  .tarifs { background: var(--creme); }

  .tarifs-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 52px;
    align-items: start;
  }

  .tarifs-intro h1, .tarifs-intro h2 { color: var(--vert); margin-bottom: 12px; }
  .tarifs-intro p { color: var(--texte-secondaire); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
  .tarifs-note {
    background: var(--vert);
    color: var(--creme);
    padding: 16px 20px;
    border-radius: 3px;
    font-size: 17px;
    line-height: 1.6;
    border-left: 3px solid var(--or);
  }

  .tarifs-table-wrap {
    background: var(--blanc);
    border: 1px solid rgba(28,61,46,0.12);
    border-radius: 4px;
    overflow: hidden;
  }

  .tarifs-table-head {
    background: var(--vert);
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
  }
  .tarifs-table-head span {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.55);
  }

  .tarif-ligne {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(28,61,46,0.07);
    transition: background 0.15s;
  }
  .tarif-ligne:last-child { border-bottom: none; }
  .tarif-ligne:hover { background: var(--creme); }

  .tarif-nom strong { display: block; font-size: 16px; font-weight: 500; color: var(--texte); }
  .tarif-nom span { font-size: 14px; color: var(--texte-secondaire); margin-top: 2px; display: block; }

  .tarif-prix {
    text-align: right;
    white-space: nowrap;
  }
  .tarif-prix strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--vert);
  }
  .tarif-prix span { font-size: 13px; color: var(--or); }

  .tarif-gratuit strong { color: var(--vert-clair) !important; }

  /* ── APPROCHE ── */
  .approche { background: var(--vert); }

  .approche .section-header h1, .approche .section-header h2 { color: var(--creme); }
  .approche .section-header p { color: rgba(245,240,232,0.65); }

  .approche-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(184,147,106,0.2);
  }

  .step {
    background: var(--vert);
    padding: 32px 24px;
    position: relative;
  }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(184,147,106,0.2);
    line-height: 1;
    margin-bottom: 16px;
  }

  .step-icon { margin-bottom: 20px; }
  .step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--or-clair);
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .step h3 { color: var(--creme); font-size: 1rem; margin-bottom: 8px; }
  .step p { font-size: 17px; color: rgba(245,240,232,0.6); line-height: 1.6; }

  /* ── AVIS ── */
  .avis { background: var(--creme-fonce); }

  .avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .avis-card {
    background: var(--blanc);
    border: 1px solid rgba(28,61,46,0.1);
    border-radius: 4px;
    padding: 24px;
  }

  .avis-etoiles {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
  }
  .etoile { color: var(--or); font-size: 16px; }

  .avis-texte {
    font-size: 16px;
    line-height: 1.65;
    color: var(--texte);
    
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
  }

  .avis-auteur {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .avis-initiales {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--vert);
    color: var(--or-clair);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .avis-auteur-info strong { display: block; font-size: 17px; font-weight: 500; }
  .avis-auteur-info span { font-size: 13px; color: var(--texte-secondaire); }

  /* ── CONTACT ── */
  .contact { background: var(--blanc); }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info h1, .contact-info h2 { color: var(--vert); margin-bottom: 12px; }
  .contact-info p { color: var(--texte-secondaire); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }

  .contact-coords { display: flex; flex-direction: column; gap: 12px; }

  .coord-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .coord-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(28,61,46,0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .coord-icon svg { width: 16px; height: 16px; stroke: var(--vert-moyen); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .coord-item a, .coord-item span { font-size: 16px; color: var(--texte); text-decoration: none; }
  .coord-item a:hover { color: var(--vert-clair); }

  /* ── FORMULAIRE ── */
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--texte-secondaire); margin-bottom: 6px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(28,61,46,0.2);
    border-radius: 3px;
    background: var(--creme);
    color: var(--texte);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--vert-moyen); }
  .form-group textarea { resize: vertical; min-height: 110px; }

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

  .form-submit {
    width: 100%;
    background: var(--vert);
    color: var(--creme);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 13px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--vert-moyen); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--vert);
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(184,147,106,0.2);
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--creme);
    
  }
  .footer-logo span { color: var(--or-clair); }

  .footer-copy {
    font-size: 14px;
    color: rgba(245,240,232,0.4);
  }

  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a {
    color: rgba(245,240,232,0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--or-clair); }


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .anim-up    { opacity: 0; }
  .anim-left  { opacity: 0; }
  .anim-right { opacity: 0; }
  .anim-in    { opacity: 0; }
  .anim-up.visible    { animation: fadeUp   0.7s ease forwards; }
  .anim-left.visible  { animation: slideLeft  0.7s ease forwards; }
  .anim-right.visible { animation: slideRight 0.7s ease forwards; }
  .anim-in.visible    { animation: fadeIn   0.8s ease forwards; }
  .delay-1 { animation-delay: 0.1s !important; }
  .delay-2 { animation-delay: 0.2s !important; }
  .delay-3 { animation-delay: 0.3s !important; }
  .delay-4 { animation-delay: 0.4s !important; }
  .delay-5 { animation-delay: 0.5s !important; }
  .delay-6 { animation-delay: 0.6s !important; }

  /* ── GALERIE IMAGES ── */
  .galerie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 460px;
    overflow: hidden;
    padding: 0 5%;
    background: var(--creme-fonce);
  }
  .galerie-img {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
  }
  .galerie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .galerie-img:hover img { transform: scale(1.05); }
  .galerie-img .overlay-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(28,61,46,0.82);
    padding: 14px 20px;
    color: var(--creme);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-top: 1px solid rgba(184,147,106,0.4);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 48px; }
    .hero-visuel { display: none; }
    .hero-content { padding-bottom: 48px; }
    .bandeau-inner { grid-template-columns: 1fr 1fr; }
    .bandeau-item:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .tarifs-wrap { grid-template-columns: 1fr; }
    .approche-steps { grid-template-columns: 1fr 1fr; }
    .avis-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrap { grid-template-columns: 1fr; }
    .galerie { grid-template-columns: 1fr; height: auto; gap: 12px; padding: 0 5%; }
    .galerie-img { height: 240px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { justify-content: center; }
  }

  @media (max-width: 640px) {
    nav { padding: 16px 5% 10px; }
    .nav-row1 { flex-direction: column; gap: 12px; padding-bottom: 10px; }
    .nav-logo-img { width: 110px; height: 110px; }
    .nav-tel-wrap { position: static; transform: none; }
    .nav-tel { font-size: 14px; padding: 7px 14px; }
    .nav-menu { gap: 10px 18px; }
    .nav-menu a { font-size: 13px; }
  }

  @media (max-width: 580px) {
    .bandeau-inner { grid-template-columns: 1fr; }
    .bandeau-item { border-right: none; border-bottom: 1px solid rgba(28,61,46,0.1); }
    .bandeau-item:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .approche-steps { grid-template-columns: 1fr; }
    .avis-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 52px 5%; }
  }

  @media (max-width: 480px) {
    .tarifs-table-head, .tarif-ligne { padding: 14px 16px; gap: 10px; }
    .tarif-prix { white-space: normal; }
  }

  @media (max-width: 400px) {
    .nav-logo-img { width: 85px; height: 85px; }
    .hero-carte { padding: 28px 24px; }
    .hero-carte-grid { gap: 12px; }
    .stat-num { font-size: 1.9rem; }
  }

  /* ── PAGES LÉGALES (politique de confidentialité, mentions légales) ── */
  .legal-content { max-width: 760px; margin: 0 auto; }
  .legal-content h2 { color: var(--vert); font-size: 1.4rem; margin: 40px 0 14px; }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content p { margin-bottom: 16px; color: var(--texte); }
  .legal-content ul { margin: 0 0 16px 22px; }
  .legal-content li { margin-bottom: 8px; }
  .legal-content a { color: var(--vert-moyen); }
  .legal-content .maj { color: var(--texte-secondaire); font-size: 14px; margin-bottom: 40px; }
