
    /* ========== RESET & BASE ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --cream:    #f0ebe3;
      --dark-green: #383825;
      --mid-green:  #383825;
      --brown:    #8B4513;
      --rust:     #8A492B;
      --gold:     #c49a3c;
      --light-bg: #f7f3ee;
      --text:     #1a1a1a;
      --text-mid: #4a4a4a;
      --white:    #ffffff;
      --shadow:   rgba(0,0,0,0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ========== HEADER / NAV ========== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: rgba(40, 42, 30, 0.97);
      backdrop-filter: blur(8px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 42px;
      height: 42px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .logo-text span {
      font-size: 9.5px;
      color: var(--rust);
      letter-spacing: 0.20em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    nav a {
      text-decoration: none;
      color: rgba(255,255,255,0.8);
      font-size: 12px;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--rust); }

    .nav-tel {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--white) !important;
      font-weight: 600 !important;
      font-size: 13px !important;
      letter-spacing: 0.03em !important;
      text-transform: none !important;
    }

    .nav-tel:hover { color: var(--rust) !important; }

    .nav-tel svg { stroke: var(--rust); }

    .btn-devis-header {
      background: var(--rust);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 600 !important;
      letter-spacing: 0.1em !important;
      transition: background 0.2s !important;
    }

    .btn-devis-header:hover { background: var(--rust-dark, #9a3a14) !important; color: var(--white) !important; }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 680px;
      overflow: hidden;
      display: flex;
      align-items: center;
      background-color: #cfc7b8;
    }

    /* Image couvre TOUT le hero — pas de séparation */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('hero-bg.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 60% center;
    }

    .hero-bg::before { content: none; }
    .hero-bg::after  { content: none; }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 96px 72px 0;
      max-width: 520px;
      margin-top: 0;
      animation: fadeSlideIn 0.9s ease both;
    }

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

    .hero-label {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 18px;
    }

    .hero h1 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(36px, 4.8vw, 62px);
      font-weight: 700;
      line-height: 0.97;
      color: #1a1a1a;
      margin-bottom: 8px;
    }


    .hero h1 em {
      font-style: normal;
      color: var(--rust);
      display: block;
    }

    .hero-sub {
      font-size: 14.5px;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
      color: var(--text-mid);
      line-height: 1.6;
      margin: 20px 0 36px;
      max-width: 460px;
    }

    /* Icônes pills */
    .hero-pills {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 0;
      margin-bottom: 36px;
    }

    .pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 9.5px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text);
      text-align: center;
    }

    .pill svg {
      flex-shrink: 0;
    }

    .pill-sep {
      width: 1px;
      background: rgba(0,0,0,0.14);
      align-self: stretch;
      margin: 0 20px;
      flex-shrink: 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--dark-green);
      color: var(--white);
      padding: 15px 32px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--rust);
      transform: translateX(3px);
    }

    .btn-primary svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }

    /* ========== BANDE SERVICES BAS HERO ========== */
    .services-strip {
      background: var(--dark-green);
      display: flex;
      align-items: stretch;
      min-height: 90px;
    }

    .service-item {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px 24px;
      border-right: 1px solid rgba(255,255,255,0.08);
      transition: background 0.2s;
    }

    .service-item:last-child { border-right: none; }
    .service-item:hover { background: rgba(255,255,255,0.05); }

    .service-item svg, .service-item img {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      object-fit: contain;
    }

    .service-item-text strong {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .service-item-text span {
      font-size: 11.5px;
      color: rgba(255,255,255,0.55);
      line-height: 1.3;
    }

    /* Bloc zone */
    .service-zone {
      background: var(--rust);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 190px;
    }

    .service-zone svg {
      width: 26px;
      height: 26px;
      stroke: rgba(255,255,255,0.8);
      fill: none;
      flex-shrink: 0;
    }

    .service-zone-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.06em;
    }

    .service-zone-text span {
      font-size: 11.5px;
      color: rgba(255,255,255,0.75);
    }

    /* ========== INTRO SECTION ========== */
    .section-intro {
      background: var(--light-bg);
      padding: 100px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 1.5px;
      background: var(--rust);
      display: inline-block;
    }

    .section-intro h2 {
      font-family: 'League Spartan', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--dark-green);
      margin-bottom: 20px;
    }

    .section-intro p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 36px;
    }

    .stat-box {
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.07);
      padding: 24px;
      border-left: 3px solid var(--rust);
    }

    .stat-box .num {
      font-family: 'League Spartan', sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--dark-green);
      line-height: 1;
    }

    .stat-box .label {
      font-size: 12px;
      color: var(--text-mid);
      margin-top: 6px;
      letter-spacing: 0.04em;
    }

    .intro-image-col {
      position: relative;
    }

    .intro-image-col img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }

    .badge-certif {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--rust);
      color: var(--white);
      padding: 20px 24px;
      text-align: center;
      width: 150px;
    }

    .badge-certif strong {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }

    .badge-certif span {
      font-size: 11px;
      opacity: 0.85;
    }

    /* ========== PRESTATIONS ========== */
    .section-prestations {
      padding: 100px 80px;
      background: var(--white);
    }

    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-header h2 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      color: var(--dark-green);
      margin-bottom: 14px;
    }

    .section-header p {
      color: var(--text-mid);
      font-size: 15px;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .prestations-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: #e8e0d8;
    }

    .presta-card {
      background: var(--white);
      padding: 44px 40px;
      display: flex;
      gap: 24px;
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .presta-card:hover { background: #faf8f5; }

    .presta-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--rust);
      text-transform: uppercase;
      transition: transform 0.2s;
    }

    .presta-card:hover .presta-link { transform: translateX(4px); }

    .presta-icon {
      width: 52px;
      height: 52px;
      background: var(--light-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 1px;
    }

    .presta-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--rust);
      fill: none;
      stroke-width: 1.6;
    }

    .presta-body h3 {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-green);
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }

    .presta-body p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .presta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--rust);
      background: rgba(181,69,27,0.08);
      padding: 3px 10px;
      border-radius: 2px;
    }

    /* ========== RÉALISATIONS ========== */
    .section-realisations {
      background: var(--dark-green);
      padding: 100px 80px;
    }

    .section-realisations .section-label { color: rgba(255,255,255,0.5); }
    .section-realisations .section-label::before { background: rgba(255,255,255,0.3); }

    .section-realisations h2 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 48px;
    }

    /* Gallery grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }

    .gallery-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .gallery-item.gallery-large {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }

    .gallery-item.gallery-large img { min-height: 460px; }

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

    .gallery-item .overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(26,42,26,0.85), transparent);
      padding: 24px 20px 20px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .overlay { opacity: 1; }

    .overlay-text {
      font-size: 13px;
      color: var(--white);
      font-weight: 600;
    }

    .overlay-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      margin-top: 2px;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 300;
      align-items: center;
      justify-content: center;
    }

    .lightbox.active { display: flex; }

    .lb-content {
      position: relative;
      max-width: 90vw;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .lb-content img {
      max-width: 90vw;
      max-height: 78vh;
      object-fit: contain;
      display: block;
      animation: lbFade 0.3s ease;
    }

    @keyframes lbFade {
      from { opacity: 0; transform: scale(0.96); }
      to   { opacity: 1; transform: scale(1); }
    }

    .lb-caption {
      text-align: center;
      margin-top: 16px;
    }

    .lb-caption #lb-title {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: var(--white);
    }

    .lb-caption #lb-sub {
      display: block;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-top: 3px;
    }

    .lb-close {
      position: absolute;
      top: 24px; right: 28px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.7);
      font-size: 32px;
      cursor: pointer;
      z-index: 10;
      transition: color 0.2s;
    }

    .lb-close:hover { color: var(--white); }

    .lb-prev, .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 54px;
      cursor: pointer;
      z-index: 10;
      padding: 0 20px;
      transition: color 0.2s;
    }

    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .lb-prev:hover, .lb-next:hover { color: var(--white); }

    .lb-counter {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      font-family: 'Inter', sans-serif;
    }

    /* ========== GARANTIES / ATOUTS ========== */
    .section-garanties {
      background: var(--cream);
      padding: 100px 80px;
    }

    .garanties-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 56px;
    }

    .garantie-item {
      background: var(--white);
      padding: 36px 30px;
      border-top: 3px solid transparent;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .garantie-item:hover {
      border-top-color: var(--rust);
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .garantie-item svg {
      width: 36px;
      height: 36px;
      stroke: var(--rust);
      fill: none;
      stroke-width: 1.6;
      margin-bottom: 18px;
    }

    .garantie-item h3 {
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--dark-green);
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }

    .garantie-item p {
      font-size: 13.5px;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* ========== FAQ ========== */
    .section-faq {
      padding: 100px 80px;
      background: var(--white);
    }

    .faq-grid {
      max-width: 820px;
      margin: 56px auto 0;
    }

    details {
      border-bottom: 1px solid rgba(0,0,0,0.1);
      padding: 0;
    }

    summary {
      list-style: none;
      padding: 24px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark-green);
    }

    summary::-webkit-details-marker { display: none; }

    summary .faq-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--light-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    summary .faq-icon svg {
      width: 12px;
      height: 12px;
      stroke: var(--rust);
      fill: none;
      stroke-width: 2.5;
      transition: transform 0.25s;
    }

    details[open] summary .faq-icon { background: var(--rust); }
    details[open] summary .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

    .faq-answer {
      padding: 0 0 24px;
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 700px;
    }

    /* ========== CTA FINAL ========== */
    .section-cta {
      background: var(--dark-green);
      padding: 90px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
    }

    .cta-text h2 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .cta-text p {
      font-size: 15px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 500px;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .btn-cta-main {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--rust);
      color: var(--white);
      padding: 18px 40px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .btn-cta-main:hover { background: var(--rust-dark, #9a3a14); }

    .cta-tel {
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.05em;
    }

    .cta-tel-label {
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.08em;
    }

    /* ========== FOOTER ========== */
    footer {
      background: #0f1a0f;
      padding: 56px 80px 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand .logo-text strong { color: var(--white); font-size: 18px; }
    .footer-brand .logo-text span { color: var(--rust); }

    .footer-desc {
      font-size: 13.5px;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-top: 16px;
      margin-bottom: 20px;
    }

    .footer-certifs {
      display: flex;
      gap: 10px;
    }

    .certif-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--rust);
      border: 1px solid rgba(181,69,27,0.4);
      padding: 4px 10px;
    }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-col ul li span {
      font-size: 13.5px;
      color: rgba(255,255,255,0.65);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom span {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
    }

    /* ========== MODAL DEVIS ========== */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 200;
      align-items: center;
      justify-content: center;
    }

    .modal-overlay.active { display: flex; }

    .modal {
      background: var(--white);
      width: 100%;
      max-width: 540px;
      padding: 48px;
      position: relative;
      animation: modalIn 0.3s ease both;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(20px) scale(0.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-mid);
      font-size: 22px;
      line-height: 1;
    }

    .modal h3 {
      font-family: 'League Spartan', sans-serif;
      font-size: 26px;
      color: var(--dark-green);
      margin-bottom: 6px;
    }

    .modal-sub {
      font-size: 13.5px;
      color: var(--text-mid);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid rgba(0,0,0,0.12);
      background: var(--light-bg);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      border-radius: 2px;
      transition: border-color 0.2s;
    }

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

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

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

    .btn-submit {
      width: 100%;
      background: var(--rust);
      color: var(--white);
      border: none;
      padding: 16px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      border-radius: 2px;
      transition: background 0.2s;
    }

    .btn-submit:hover { background: var(--rust-dark, #9a3a14); }

    /* ========== AIRES DE JEUX ========== */
    .section-aires {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }

    .aires-img {
      overflow: hidden;
    }

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

    .aires-content {
      background: var(--light-bg);
      padding: 72px 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .aires-content h2 {
      font-family: 'League Spartan', sans-serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      color: var(--dark-green);
      margin-bottom: 18px;
      line-height: 1.1;
    }

    .aires-lead {
      font-size: 16px;
      font-weight: 600;
      color: var(--dark-green);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .aires-content p {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .aires-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    /* ========== AVIS CLIENTS ========== */
    .section-avis {
      padding: 100px 80px;
      background: var(--light-bg);
    }

    .avis-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 16px;
    }

    .avis-rating .stars {
      color: var(--gold);
      font-size: 20px;
      letter-spacing: 2px;
    }

    .avis-rating .rating-text {
      font-size: 13px;
      color: var(--text-mid);
    }

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

    .avis-single {
      max-width: 680px;
      margin: 48px auto 0;
    }

    .avis-single .avis-card {
      text-align: center;
      padding: 40px 48px;
      border: 1px solid rgba(0,0,0,0.08);
      background: var(--white);
    }

    .avis-single .avis-card p {
      font-size: 15.5px;
      line-height: 1.8;
    }

    .avis-card {
      background: var(--white);
      padding: 32px 28px;
      border-radius: 2px;
      border: 1px solid rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
    }

    .avis-stars {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }

    .avis-card p {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.7;
      font-style: italic;
      flex: 1;
      margin-bottom: 18px;
    }

    .avis-author strong {
      display: block;
      font-size: 14px;
      color: var(--dark-green);
      font-weight: 600;
    }

    .avis-author span {
      font-size: 12px;
      color: var(--rust);
      font-weight: 500;
    }

    .trust-badges {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 56px;
      padding-top: 48px;
      border-top: 1px solid rgba(0,0,0,0.1);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .trust-badge svg { flex-shrink: 0; }

    .trust-badge strong {
      display: block;
      font-size: 13.5px;
      color: var(--dark-green);
      font-weight: 700;
      font-family: 'Inter', sans-serif;
    }

    .trust-badge span {
      font-size: 11.5px;
      color: var(--text-mid);
      line-height: 1.4;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .section-intro, .section-cta { padding: 80px 40px; }
      .section-prestations, .section-realisations, .section-garanties, .section-faq { padding: 80px 40px; }
      footer { padding: 56px 40px 32px; }
      header { padding: 0 24px; }
      .hero-content { padding: 0 40px; }
    }

    @media (max-width: 768px) {
      header { height: 64px; }
      nav { display: none; }

      /* === HERO MOBILE — lisibilité du texte === */
      .hero { min-height: 100vh; min-height: 100svh; }

      .hero-bg {
        background-position: 65% center;
      }

      /* Voile sombre sur mobile pour lisibilité */
      .hero-bg::before {
        content: '' !important;
        position: absolute;
        inset: 0;
        background: rgba(40, 42, 30, 0.55);
      }

      .hero-content {
        padding: 88px 24px 0;
        max-width: 100%;
        margin-top: 0;
      }

      .hero-label { color: rgba(255,255,255,0.7); }

      .hero h1 {
        font-size: 38px;
        color: var(--white);
      }

      .hero h1 em { color: var(--rust); }

      .hero-sub {
        color: rgba(255,255,255,0.8);
        font-size: 14px;
      }

      .hero-pills {
        flex-wrap: wrap;
        gap: 12px;
      }

      .pill {
        font-size: 8px;
        gap: 5px;
      }

      .pill svg { width: 28px; height: 28px; }

      .pill-sep { display: none; }

      .btn-primary {
        padding: 14px 24px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
      }

      /* === AUTRES SECTIONS MOBILE === */
      .services-strip { flex-direction: column; }
      .service-zone { min-width: unset; }
      .section-intro { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
      .intro-image-col { order: -1; }
      .badge-certif { right: 0; }
      .prestations-grid { grid-template-columns: 1fr; }
      .presta-card { padding: 28px 20px; }
      .garanties-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .section-aires { grid-template-columns: 1fr; }
      .aires-content { padding: 48px 24px; }
      .gallery-item.gallery-large { grid-column: auto; grid-row: auto; }
      .gallery-item.gallery-large img { min-height: 260px; }
      .lb-prev, .lb-next { font-size: 36px; padding: 0 10px; }
      .section-cta { grid-template-columns: 1fr; padding: 60px 24px; }
      .section-avis { padding: 60px 24px; }
      .avis-single .avis-card { padding: 28px 20px; }
      .avis-grid { grid-template-columns: 1fr; }
      .trust-badges { grid-template-columns: 1fr 1fr; gap: 16px; }
      .nav-tel { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0; }
      .section-prestations, .section-realisations, .section-garanties, .section-faq { padding: 60px 24px; }
      footer { padding: 48px 24px 24px; }
      .section-header h2, .section-intro h2 { font-size: 28px; }
      .cta-text h2 { font-size: 26px; }
    }
  
/* ========== DROPDOWN NAV ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 2px;
}

.nav-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(40, 42, 30, 0.98);
  backdrop-filter: blur(12px);
  min-width: 260px;
  padding: 12px 0;
  z-index: 110;
  border-top: 2px solid var(--rust);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block !important;
  padding: 10px 24px !important;
  font-size: 12.5px !important;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(138,73,43,0.15) !important;
  color: #fff !important;
}

.dropdown .drop-label {
  padding: 8px 24px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.dropdown .drop-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(40, 42, 30, 0.98);
  z-index: 105;
  overflow-y: auto;
  padding: 24px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a:hover { color: var(--rust); }

.mobile-nav .mob-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  padding: 20px 0 8px;
  border-bottom: none;
}

.mobile-nav .mob-cta {
  display: block;
  background: var(--rust);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 20px;
  border-radius: 2px;
  border-bottom: none;
}

@media (max-width: 768px) {
  nav { display: none !important; }
  .hamburger { display: block; }
}

/* ========== SUBPAGE RICH SECTIONS ========== */

.section-white { background: var(--white); padding: 64px 80px; }
.section-light { background: var(--light-bg); padding: 64px 80px; }
.section-dark { background: var(--dark-green); padding: 64px 80px; }
.section-cream { background: #f0ebe3; padding: 64px 80px; }

.section-white .section-inner,
.section-light .section-inner,
.section-cream .section-inner { max-width: 900px; margin: 0 auto; }

.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark strong { color: var(--white); }
.section-dark a { color: var(--rust); }

.section-white h2, .section-light h2, .section-cream h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--dark-green);
  margin: 0 0 20px; line-height: 1.2;
}

.section-white h3, .section-light h3, .section-cream h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark-green);
  margin: 28px 0 10px;
}

.section-white p, .section-light p, .section-cream p {
  font-size: 15px; color: var(--text-mid); line-height: 1.85;
  margin-bottom: 14px; font-family: 'Inter', sans-serif;
}

/* Feature cards grid */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin: 32px 0;
}
.feature-card {
  background: var(--white); padding: 28px 24px;
  border-left: 3px solid var(--rust);
  display: flex; gap: 16px; align-items: flex-start;
}
.section-dark .feature-card {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--rust);
}
.feature-card svg {
  width: 28px; height: 28px; stroke: var(--rust);
  fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 2px;
}
.section-dark .feature-card svg { stroke: var(--rust); }
.feature-card-text h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important; font-weight: 700 !important;
  color: var(--dark-green); margin: 0 0 6px !important;
}
.section-dark .feature-card-text h3 { color: var(--white); }
.feature-card-text p {
  font-size: 13.5px !important; margin: 0 !important;
}

/* Service cards */
.services-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; margin: 32px 0; background: #e8e0d8;
}
.svc-card {
  background: var(--white); padding: 32px 28px;
  text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.svc-card:hover { background: #faf8f5; }
.svc-card h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important; font-weight: 700 !important;
  color: var(--dark-green); margin: 0 0 8px !important;
}
.svc-card p { font-size: 13.5px !important; margin: 0 0 12px !important; }
.svc-card .svc-link {
  font-size: 12px; font-weight: 600; color: var(--rust);
  letter-spacing: 0.04em;
}

/* Subpage FAQ accordion */
.sub-faq { max-width: 800px; margin: 24px auto 0; }
.sub-faq details {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sub-faq summary {
  list-style: none; padding: 22px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--dark-green);
  font-family: 'Inter', sans-serif;
}
.sub-faq summary::-webkit-details-marker { display: none; }
.sub-faq .faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--light-bg); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.sub-faq .faq-icon svg {
  width: 12px; height: 12px; stroke: var(--rust);
  fill: none; stroke-width: 2.5; transition: transform 0.25s;
}
.sub-faq details[open] .faq-icon { background: var(--rust); }
.sub-faq details[open] .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.sub-faq .faq-answer {
  padding: 0 0 22px; font-size: 14.5px; color: var(--text-mid);
  line-height: 1.8; font-family: 'Inter', sans-serif;
}
.section-dark .sub-faq details { border-color: rgba(255,255,255,0.1); }
.section-dark .sub-faq summary { color: var(--white); }
.section-dark .sub-faq .faq-icon { background: rgba(255,255,255,0.1); }
.section-dark .sub-faq .faq-answer { color: rgba(255,255,255,0.65); }

/* Inline CTA band */
.inline-cta {
  background: var(--light-bg); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  margin: 32px 0; gap: 24px; border-left: 4px solid var(--rust);
}
.inline-cta p { margin: 0 !important; font-weight: 500; color: var(--dark-green); }

/* Stats row */
.stats-row {
  display: flex; gap: 24px; margin: 32px 0; flex-wrap: wrap;
}
.stat-pill {
  background: var(--white); border-left: 3px solid var(--rust);
  padding: 16px 20px; flex: 1; min-width: 140px;
}
.section-dark .stat-pill { background: rgba(255,255,255,0.06); }
.stat-pill .num {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--dark-green); line-height: 1;
}
.section-dark .stat-pill .num { color: var(--white); }
.stat-pill .label { font-size: 12px; color: var(--text-mid); margin-top: 4px; }
.section-dark .stat-pill .label { color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .section-white, .section-light, .section-dark, .section-cream { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; text-align: center; }
  .stats-row { flex-direction: column; }
}

/* Fix phone number contrast on light CTA backgrounds */
.page-cta .cta-tel { color: var(--dark-green) !important; }
.page-cta .cta-tel-label { color: var(--text-mid) !important; }

/* ===== BARRE MOBILE FIXE (CTA téléphone) ===== */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--dark-green);
    border-top: 1px solid rgba(255,255,255,0.12);
    height: 56px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.18);
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .mobile-cta-bar .mcta-tel {
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .mobile-cta-bar .mcta-devis {
    color: #fff;
    background: var(--rust);
  }
  /* Pousser le contenu pour ne pas cacher sous la barre */
  body {
    padding-bottom: 56px;
  }
}

/* ===== GRILLE PHOTOS PAGES PRESTATIONS ===== */
.photos-section { margin: 40px 0; }
.photos-section h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--dark-green); margin: 0 0 16px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.photo-grid img, .photo-single img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  border-radius: 3px;
}
.photo-single img { height: 340px; }
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img, .photo-single img { height: 220px; }
}
/* Photo équipe */
.team-photo { margin: 32px 0; }
.team-photo img {
  width: 100%; max-width: 600px;
  height: auto; display: block;
  border-radius: 3px;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== FORMULAIRE INLINE PAGES PRESTATIONS ===== */
.section-cta-inline {
  background: var(--dark-green);
  padding: 48px 0;
}
.section-cta-inline h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin: 0 0 8px;
}
.section-cta-inline p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin: 0 0 24px;
}
.inline-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.inline-form-row input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--dark-green);
}
.inline-form-row input::placeholder { color: #888; }
.inline-form-row .btn-cta-main {
  flex-shrink: 0;
  padding: 12px 24px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .inline-form-row { flex-direction: column; }
  .inline-form-row input, .inline-form-row .btn-cta-main { width: 100%; }
}

/* ===== BANDEAU COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-green);
  color: rgba(255,255,255,0.88);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 950;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.cookie-banner a { color: var(--rust); text-decoration: underline; }
.cookie-banner button {
  background: var(--rust);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
}
.cookie-banner button:hover { background: var(--rust-dark, #9a3a14); }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; padding-bottom: 72px; }
}

/* ===== SKIP LINK ACCESSIBILITÉ ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--rust);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== OPTIMISATION GPU ===== */
.presta-card, .garantie-item, .stat-box {
  will-change: opacity, transform;
}
