
    :root{
      --blue:#123d68;
      --blue-deep:#0a2d50;
      --gold:#d8b56a;
      --gold-bright:#e8c979;
      --gold-soft:#c9a85f;
      --white:#ffffff;
      --offwhite:#eef3f7;
      --muted:#c8d3de;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:Arial, Helvetica, sans-serif;
      background:var(--blue);
      color:var(--white);
      overflow-x:hidden;
    }
    a{text-decoration:none;color:inherit}

    /* ========== ACCUEIL ========== */
    .hero{
      min-height:100svh;
      position:relative;
      overflow:hidden;
      isolation:isolate;
      display:flex;
      align-items:flex-end;
      padding:0 0 70px;
      background:var(--blue);
    }

    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:url("maison.png") center center / cover no-repeat;
      filter:brightness(1.12) saturate(1.03);
      transform:scale(1.01);
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:linear-gradient(
        90deg,
        rgba(7,38,69,.82) 0%,
        rgba(11,49,84,.69) 30%,
        rgba(17,69,110,.36) 58%,
        rgba(18,76,121,.16) 100%
      );
    }

    /* Grand ALLAN BRUN supprimé.
       La bande dorée prend maintenant toute la largeur du site. */
    .top-ticker{
      position:absolute;
      top:22px;
      left:0;
      width:100%;
      z-index:5;
      display:flex;
      align-items:center;
      gap:16px;
      padding:0 22px;
    }

    .logo{
      flex:0 0 auto;
      width:58px;
      height:42px;
      color:var(--gold-bright);
    }

    .logo svg{
      width:100%;
      height:100%;
      display:block;
      fill:none;
      stroke:currentColor;
      stroke-width:1.65;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .ticker{
      flex:1 1 auto;
      min-width:0;
      overflow:hidden;
      padding:11px 0;
      border-top:1px solid rgba(216,181,106,.48);
      border-bottom:1px solid rgba(216,181,106,.48);
      -webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
      mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
    }

    .ticker-track{
      display:flex;
      width:max-content;
      animation:ticker 22s linear infinite;
      will-change:transform;
    }

    .ticker-text{
      flex:none;
      padding-right:64px;
      color:var(--gold-bright);
      font-size:clamp(13px,1.05vw,16px);
      letter-spacing:.13em;
      text-transform:uppercase;
      white-space:nowrap;
      text-shadow:0 2px 10px rgba(0,0,0,.18);
    }

    .hero-services{
      position:absolute;
      top:205px;
      left:22px;
      z-index:4;
      width:430px;
      max-width:calc(100% - 44px);
    }

    .hero-services-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px 18px;
    }

    .hero-service{
      min-height:64px;
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px 12px;
      border-radius:16px;
      background:rgba(8,42,76,.34);
      border:1px solid rgba(216,181,106,.18);
      backdrop-filter:blur(4px);
      -webkit-backdrop-filter:blur(4px);
    }

    .hero-service-icon{
      width:42px;
      height:42px;
      flex:0 0 42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:13px;
      color:var(--gold-bright);
      background:rgba(216,181,106,.09);
      border:1px solid rgba(216,181,106,.20);
    }

    .hero-service-icon svg{
      width:24px;
      height:24px;
      fill:none;
      stroke:currentColor;
      stroke-width:1.7;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .hero-service span{
      color:var(--gold-bright);
      font-weight:700;
      font-size:14px;
      letter-spacing:.02em;
      line-height:1.2;
      white-space:normal;
    }

    .btn{
      min-height:50px;
      padding:0 24px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:15px;
      font-weight:700;
      letter-spacing:.01em;
      transition:.25s ease;
    }

    .btn-gold{
      background:linear-gradient(135deg,#e1c58b,#cfae6d);
      color:#15334f;
      box-shadow:0 12px 30px rgba(207,174,109,.24);
      border:1px solid rgba(255,255,255,.08);
    }

    .btn-gold:hover{
      transform:translateY(-2px);
      box-shadow:0 15px 34px rgba(207,174,109,.34);
    }

    .btn-outline{
      color:#e1c58b;
      border:1px solid #cfae6d;
      background:rgba(7,38,69,.82);
      backdrop-filter:blur(4px);
      box-shadow:0 10px 25px rgba(0,0,0,.12);
    }

    .btn-outline:hover{
      transform:translateY(-2px);
      color:#f0d8a5;
      border-color:#e1c58b;
      background:rgba(7,38,69,.94);
    }

    @keyframes ticker{
      from{transform:translateX(0)}
      to{transform:translateX(-50%)}
    }

    /* ========== COMMUN ========== */
    section{padding:82px 0}
    .wrap{
      width:min(1120px,calc(100% - 36px));
      margin:auto;
    }

    .section-head{
      text-align:center;
      max-width:780px;
      margin:0 auto;
    }

    .eyebrow{
      color:var(--gold);
      text-transform:uppercase;
      letter-spacing:.17em;
      font-size:12px;
      font-weight:700;
      margin-bottom:12px;
    }

    h2{
      color:var(--gold-bright);
      font-size:clamp(2rem,4vw,3rem);
      line-height:1.08;
      margin-bottom:16px;
    }

    .lead{
      color:var(--offwhite);
      line-height:1.75;
      font-size:17px;
    }

    /* ========== SERVICES ========== */
    .services{
      background:linear-gradient(180deg,#123d68 0%,#103861 100%);
    }

    .cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:42px;
      align-items:stretch;
    }

    .card{
      min-height:245px;
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      padding:28px 22px 26px;
      border-radius:24px;
      border:1px solid rgba(216,181,106,.14);
      background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
      box-shadow:0 12px 34px rgba(5,27,48,.11);
      transition:.28s ease;
    }

    .card:hover{
      transform:translateY(-5px);
      border-color:rgba(216,181,106,.34);
      background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
    }

    .icon-wrap{
      width:62px;
      height:62px;
      flex:0 0 62px;
      border-radius:19px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:24px;
      color:var(--gold-bright);
      background:rgba(216,181,106,.08);
      border:1px solid rgba(216,181,106,.19);
    }

    .icon-wrap svg{
      width:31px;
      height:31px;
      fill:none;
      stroke:currentColor;
      stroke-width:1.7;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .card h3{
      color:var(--gold-bright);
      font-size:21px;
      line-height:1.25;
      min-height:52px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:10px;
    }

    .card p{
      color:var(--muted);
      line-height:1.62;
      font-size:15px;
      max-width:240px;
    }

    /* ========== PUBLICS ========== */
    .audience{
      background:#0f375f;
    }

    .audience-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
      margin-top:38px;
    }

    .audience-card{
      min-height:210px;
      border-radius:24px;
      padding:30px;
      border:1px solid rgba(216,181,106,.14);
      background:rgba(255,255,255,.045);
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
    }

    .audience-card .mini-icon{
      width:52px;
      height:52px;
      margin-bottom:18px;
      color:var(--gold-bright);
    }

    .audience-card .mini-icon svg{
      width:100%;
      height:100%;
      fill:none;
      stroke:currentColor;
      stroke-width:1.6;
      stroke-linecap:round;
      stroke-linejoin:round;
    }

    .audience-card h3{
      color:var(--gold-bright);
      font-size:22px;
      margin-bottom:9px;
    }

    .audience-card p{
      color:var(--muted);
      line-height:1.65;
      max-width:430px;
    }

    /* ========== ZONE ========== */
    .zone{
      background:#123d68;
      text-align:center;
    }

    .zone .lead{
      max-width:700px;
      margin:0 auto;
      color:var(--muted);
    }

    .zone-pill{
      margin-top:28px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:13px 19px;
      border:1px solid rgba(216,181,106,.23);
      border-radius:999px;
      color:var(--gold-bright);
      background:rgba(216,181,106,.065);
    }

    /* ========== CONTACT ========== */
    .contact{
      background:linear-gradient(135deg,#092a4b,#103960);
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:42px;
      align-items:start;
    }

    .contact-copy{
      text-align:left;
      padding-top:8px;
    }

    .contact .lead{
      color:var(--muted);
      max-width:520px;
    }

    form{
      background:rgba(255,255,255,.055);
      border:1px solid rgba(216,181,106,.15);
      border-radius:25px;
      padding:28px;
      box-shadow:0 18px 50px rgba(0,0,0,.13);
    }

    .field{
      display:grid;
      gap:7px;
      margin-bottom:14px;
    }

    label{
      color:var(--gold-soft);
      font-size:13px;
      font-weight:700;
    }

    input,textarea{
      width:100%;
      border:1px solid rgba(255,255,255,.13);
      border-radius:14px;
      padding:14px 15px;
      font:inherit;
      color:#fff;
      background:rgba(255,255,255,.07);
      outline:none;
    }

    input::placeholder,textarea::placeholder{
      color:rgba(255,255,255,.45);
    }

    input:focus,textarea:focus{
      border-color:rgba(216,181,106,.52);
      box-shadow:0 0 0 3px rgba(216,181,106,.07);
    }

    textarea{min-height:125px;resize:vertical}

    .form-btn{
      width:100%;
      border:0;
      cursor:pointer;
    }

    footer{
      background:#072440;
      color:rgba(255,255,255,.60);
      border-top:1px solid rgba(216,181,106,.08);
      padding:27px 18px;
      text-align:center;
      font-size:14px;
    }

    @media(max-width:900px){
      .hero::after{background-position:62% center}

      .top-ticker{
        top:18px;
        gap:12px;
        padding:0 16px;
      }

      .logo{
        width:50px;
        height:36px;
      }

      .hero-services{
        top:195px;
        left:16px;
        width:365px;
        max-width:calc(100% - 32px);
      }

      .hero-services-grid{
        gap:12px 14px;
      }

      .hero-service{
        min-height:60px;
        padding:9px 10px;
      }

      .hero-service-icon{
        width:38px;
        height:38px;
        flex-basis:38px;
      }

      .cards{grid-template-columns:1fr 1fr}
      .audience-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .contact-copy{text-align:center}
      .contact-copy .lead{margin:0 auto}
      .contact-copy .actions{justify-content:center}
    }

    @media(max-width:620px){
      section{padding:64px 0}
      .hero-services{
        top:188px;
        left:10px;
        width:calc(100% - 20px);
      }

      .hero-services-grid{
        grid-template-columns:1fr 1fr;
        gap:10px;
      }

      .hero-service{
        gap:8px;
        min-height:56px;
        padding:8px 9px;
      }

      .hero-service-icon{
        width:34px;
        height:34px;
        flex-basis:34px;
      }

      .hero-service-icon svg{
        width:21px;
        height:21px;
      }

      .hero-service span{
        font-size:12.5px;
      }

      .cards{grid-template-columns:1fr}
      .actions{flex-direction:column}
      .btn{width:100%}
      .card{min-height:auto}

      .top-ticker{
        padding:0 10px;
        gap:8px;
      }

      .logo{
        width:42px;
        height:32px;
      }
    }

    @media(prefers-reduced-motion:reduce){
      .ticker-track{animation:none}
      .card,.btn{transition:none}
    }
  
    .service-link{
      cursor:pointer;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
      box-shadow:0 8px 20px rgba(4,24,42,.08);
    }
    .service-link:hover{
      transform:translateY(-3px);
      border-color:rgba(232,201,121,.42);
      background:rgba(10,50,86,.52);
      box-shadow:0 14px 30px rgba(3,20,36,.20);
    }
    .service-link:active{transform:translateY(1px) scale(.985)}
    .service-link.service-clicked{animation:serviceVibe .27s ease both}
    @keyframes serviceVibe{
      0%{transform:translateX(0) scale(1)}
      20%{transform:translateX(-2px) scale(1.02)}
      40%{transform:translateX(2px) scale(1.02)}
      60%{transform:translateX(-1px) scale(1.015)}
      80%{transform:translateX(1px) scale(1.01)}
      100%{transform:translateX(0) scale(1)}
    }

  
    /* ========== AVIS CLIENTS ========== */
    .reviews{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 50% 0%,rgba(216,181,106,.10),transparent 32%),
        linear-gradient(180deg,#0a2d50 0%,#0b345b 100%);
      border-top:1px solid rgba(216,181,106,.10);
      border-bottom:1px solid rgba(216,181,106,.12);
    }

    .reviews::before{
      content:"“";
      position:absolute;
      top:-55px;
      left:50%;
      transform:translateX(-50%);
      font-family:Georgia,serif;
      font-size:240px;
      line-height:1;
      color:rgba(216,181,106,.055);
      pointer-events:none;
    }

    .reviews-summary{
      margin:24px auto 34px;
      width:max-content;
      max-width:100%;
      display:flex;
      align-items:center;
      gap:14px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid rgba(216,181,106,.22);
      background:rgba(255,255,255,.035);
      box-shadow:0 12px 30px rgba(0,0,0,.10);
    }

    .reviews-stars{
      color:var(--gold-bright);
      letter-spacing:.16em;
      font-size:18px;
      white-space:nowrap;
    }

    .reviews-summary span:last-child{
      color:#e8edf2;
      font-size:13px;
      letter-spacing:.04em;
    }

    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
      margin-top:10px;
    }

    .review-card{
      min-height:245px;
      position:relative;
      padding:28px 26px 24px;
      border-radius:22px;
      background:
        linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
      border:1px solid rgba(216,181,106,.16);
      box-shadow:0 20px 50px rgba(3,22,39,.16);
      transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
    }

    .review-card:hover{
      transform:translateY(-5px);
      border-color:rgba(232,201,121,.34);
      box-shadow:0 26px 56px rgba(3,22,39,.24);
    }

    .review-card::after{
      content:"";
      position:absolute;
      left:26px;
      right:26px;
      bottom:0;
      height:2px;
      background:linear-gradient(90deg,transparent,var(--gold),transparent);
      opacity:.65;
    }

    .review-card .stars{
      color:var(--gold-bright);
      letter-spacing:.13em;
      font-size:17px;
      margin-bottom:20px;
    }

    .review-card blockquote{
      color:#f4f7fa;
      font-family:Georgia,"Times New Roman",serif;
      font-size:19px;
      line-height:1.55;
      font-style:italic;
      margin:0 0 24px;
    }

    .review-meta{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:auto;
    }

    .review-avatar{
      width:42px;
      height:42px;
      flex:0 0 42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#15334f;
      font-weight:800;
      background:linear-gradient(135deg,#ead092,#cda75f);
      box-shadow:0 8px 20px rgba(216,181,106,.18);
    }

    .review-meta strong{
      display:block;
      color:var(--gold-bright);
      font-size:14px;
      margin-bottom:3px;
    }

    .review-meta small{
      color:var(--muted);
      font-size:12px;
    }

    .reviews-note{
      max-width:760px;
      margin:26px auto 0;
      text-align:center;
      color:#aebdca;
      font-size:12px;
      line-height:1.6;
    }

    @media(max-width:900px){
      .reviews-grid{grid-template-columns:1fr}
      .review-card{min-height:auto}
    }

  
    @keyframes maisonCameraDouce{
      0%   {transform:scale(1.035) translate3d(-0.5%,0,0) rotate(-0.12deg)}
      50%  {transform:scale(1.075) translate3d(0.7%,-0.25%,0) rotate(0.12deg)}
      100% {transform:scale(1.035) translate3d(-0.5%,0,0) rotate(-0.12deg)}
    }

    .hero::after{
      transform-origin:center center;
      animation:maisonCameraDouce 18s ease-in-out infinite;
      will-change:transform;
    }

    @media (prefers-reduced-motion: reduce){
      .hero::after{animation:none}
    }

  
    

  
    .devis-title{
      display:inline-flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      line-height:1.08;
    }
    .devis-title span{
      display:block;
      width:100%;
      text-align:center;
    }
    .devis-title span + span{
      margin-top:.08em;
    }

  
    .reviews{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 50% 0%,rgba(216,181,106,.10),transparent 34%),
        linear-gradient(180deg,#092b4c 0%,#0b345b 100%);
      border-top:1px solid rgba(216,181,106,.12);
      border-bottom:1px solid rgba(216,181,106,.12);
    }
    .reviews::before{
      content:"“";
      position:absolute;
      top:-65px;
      left:50%;
      transform:translateX(-50%);
      font-family:Georgia,serif;
      font-size:250px;
      color:rgba(216,181,106,.055);
      pointer-events:none;
    }
    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      margin-top:30px;
    }
    .review-card{
      position:relative;
      min-height:250px;
      padding:26px 24px 22px;
      border-radius:22px;
      background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
      border:1px solid rgba(216,181,106,.17);
      box-shadow:0 20px 50px rgba(3,22,39,.18);
      transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
    }
    .review-card:hover{
      transform:translateY(-5px);
      border-color:rgba(232,201,121,.34);
      box-shadow:0 26px 58px rgba(3,22,39,.25);
    }
    .review-stars{
      color:var(--gold-bright);
      letter-spacing:.13em;
      font-size:17px;
      margin-bottom:18px;
    }
    .review-card blockquote{
      margin:0 0 24px;
      color:#f4f7fa;
      font-family:Georgia,"Times New Roman",serif;
      font-size:18px;
      line-height:1.55;
      font-style:italic;
    }
    .review-meta{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:auto;
    }
    .review-avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      flex:0 0 42px;
      color:#17344f;
      font-weight:800;
      background:linear-gradient(135deg,#ead092,#cda75f);
      box-shadow:0 8px 20px rgba(216,181,106,.18);
    }
    .review-meta strong{
      display:block;
      color:var(--gold-bright);
      font-size:14px;
      margin-bottom:3px;
    }
    .review-meta small{
      color:var(--muted);
      font-size:12px;
    }
    .review-placeholder{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:16px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(216,181,106,.16);
      color:#d9c28a;
      font-size:11px;
      letter-spacing:.04em;
      background:rgba(216,181,106,.04);
    }
    @media(max-width:900px){
      .reviews-grid{grid-template-columns:1fr}
      .review-card{min-height:auto}
    }

  

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
a:focus-visible,button:focus-visible{outline:3px solid var(--gold-bright);outline-offset:5px}
.why-allan{background:linear-gradient(135deg,#0a2d50,#103861)}
.trust-grid{list-style:none;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px;margin-top:34px}
.trust-grid li{padding:24px 18px;border:1px solid rgba(216,181,106,.23);border-radius:20px;background:rgba(255,255,255,.035);text-align:center}
.trust-grid strong{display:block;color:var(--gold-bright);font-size:18px;line-height:1.35;margin-bottom:10px}
.trust-grid span{font-size:15px;color:var(--muted);line-height:1.6}
.zone-map-layout{display:grid;grid-template-columns:1.4fr 1fr;gap:32px;align-items:center;margin-top:36px;padding:24px;border:1px solid rgba(216,181,106,.25);border-radius:24px;background:radial-gradient(ellipse at center,#123d68,#082b4b);box-shadow:0 18px 48px rgba(0,0,0,.16)}
.intervention-map{width:100%;height:auto;display:block;overflow:visible}
.map-land{fill:rgba(216,181,106,.075);stroke:#d8b56a;stroke-width:1.8;stroke-linejoin:round}
.map-city circle{fill:#e8c979;stroke:#0a2d50;stroke-width:2}
.map-city .map-hit{fill:transparent;stroke:none}
.map-city:hover circle,.map-city:focus circle{fill:white}
.map-city path{fill:none;stroke:#d8b56a;stroke-width:1;opacity:.65}
.map-city text{fill:#e8c979;font:17px Arial,Helvetica,sans-serif;paint-order:stroke;stroke:#092d4e;stroke-width:4;stroke-linejoin:round}
.map-city:focus{outline:none}.map-city:focus text{fill:white;text-decoration:underline}
.city-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;text-align:left}
.city-links a{display:flex;align-items:center;min-height:48px;padding:12px 14px;border:1px solid rgba(216,181,106,.27);border-radius:13px;color:var(--gold-bright);font-size:16px;line-height:1.4;transition:background .2s,transform .2s}
.city-links a:hover{background:rgba(216,181,106,.10);transform:translateY(-2px)}
.map-note{margin:16px 0 0;color:var(--muted);font-size:14px;line-height:1.6}
.map-source{display:block;margin-top:12px;font-size:12px;color:var(--muted)}
.devis-title{display:flex;width:100%;align-items:center;text-align:center;font-size:clamp(1.8rem,3.5vw,3rem)}
.devis-title span{white-space:nowrap}
.local-topbar{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:20px max(18px,calc((100% - 1120px)/2));background:#072440;border-bottom:1px solid rgba(216,181,106,.2)}
.local-brand{color:var(--gold-bright);font-weight:800;letter-spacing:.13em}
.local-back{color:var(--gold-bright);border:1px solid rgba(216,181,106,.4);padding:12px 16px;border-radius:999px}
.local-hero{padding:62px 0;background:linear-gradient(135deg,#092a4b,#123d68)}
.local-hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.local-hero h1{font-size:clamp(2.1rem,4.8vw,4rem);line-height:1.08;color:var(--gold-bright);margin-bottom:22px;overflow-wrap:break-word}
.local-hero .actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.local-photo{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:24px;border:1px solid rgba(216,181,106,.3)}
.local-content{background:#103861}
.local-content .wrap{max-width:900px}
.local-content article+article{margin-top:38px;padding-top:38px;border-top:1px solid rgba(216,181,106,.2)}
.local-content h2{font-size:clamp(1.65rem,3vw,2.25rem);line-height:1.2}
.local-content p{font-size:17px;color:var(--muted);line-height:1.85}
.local-services{margin-top:34px;display:flex;flex-wrap:wrap;gap:12px}
.local-services a{color:var(--gold-bright);text-decoration:underline;text-underline-offset:4px;min-height:44px;display:inline-flex;align-items:center}
.local-neighbors .city-links{margin-top:28px;grid-template-columns:repeat(3,minmax(0,1fr))}
.local-cta{text-align:center;background:linear-gradient(135deg,#092a4b,#103960)}
.local-cta .lead{max-width:700px;margin:auto}.local-cta .actions{display:flex;justify-content:center;gap:14px;margin-top:24px}
@media(max-width:1000px){.trust-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.zone-map-layout{grid-template-columns:1fr}.intervention-map{max-width:660px;margin:auto}}
@media(max-width:700px){.local-hero-grid{grid-template-columns:1fr}.local-photo{max-height:300px}.trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.local-neighbors .city-links{grid-template-columns:repeat(2,minmax(0,1fr))}.local-topbar{flex-wrap:wrap}.local-hero{padding:42px 0}.zone-map-layout{padding:18px 12px;gap:20px}.map-city text{font-size:19px}.local-cta .actions{flex-direction:column}}
@media(max-width:400px){.city-links{grid-template-columns:1fr}.trust-grid{grid-template-columns:1fr}.local-neighbors .city-links{grid-template-columns:1fr}.zone-pill{max-width:100%}.local-hero h1{font-size:2rem}.devis-title{font-size:1.75rem}}
