:root{
  --paper:#efe9dc;
  --paper-2:#e6dfd3;
  --paper-3:#f7f3eb;
  --ink:#121212;
  --black:#0a0a0a;
  --red:#e44334;
  --red-deep:#b92b1e;
  --sand:#cac1b3;
  --muted:#605a52;
  --line:#cfc6b8;
  --max:1220px;
  --shadow:0 28px 70px rgba(18,18,18,.15);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    linear-gradient(180deg,var(--paper-3) 0%, var(--paper) 100%);
  color:var(--ink);
  font-family:"Inter",system-ui,sans-serif;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max),calc(100% - 42px));margin:auto}
h1,h2,h3,.brand-stop,.impact-word,.poster-type,.footer-brand{
  font-family:"Archivo Black",Impact,sans-serif;
  letter-spacing:-.04em;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(247,243,235,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(18,18,18,.08);
}
.nav{
  min-height:82px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-stop{
  font-size:1.18rem;
  color:#fff;
  background:var(--red);
  padding:6px 8px;
  line-height:1;
}
.brand-word{
  font-family:"IBM Plex Mono",monospace;
  font-size:.76rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.desktop-nav{
  display:flex;
  justify-content:center;
  gap:28px;
}
.desktop-nav a{
  font-family:"IBM Plex Mono",monospace;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:600;
}
.header-phone{
  justify-self:end;
  font-family:"IBM Plex Mono",monospace;
  font-size:.72rem;
  font-weight:600;
  color:#fff;
  background:var(--black);
  padding:11px 14px;
}

/* hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 0;
}
.hero-gridlines{
  position:absolute;
  right:0;
  top:0;
  width:44%;
  height:100%;
  opacity:.06;
  background-image:
    linear-gradient(rgba(18,18,18,.9) 1px,transparent 1px),
    linear-gradient(90deg,rgba(18,18,18,.9) 1px,transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}
.hero-pattern{
  position:absolute;
  pointer-events:none;
}
.hero-pattern-a{
  right:-120px;
  top:94px;
  width:360px;
  height:360px;
  border-radius:50%;
  border:40px solid rgba(18,18,18,.92);
}
.hero-pattern-b{
  left:-120px;
  bottom:120px;
  width:240px;
  height:240px;
  border-radius:50%;
  border:26px solid rgba(228,67,52,.26);
}
.hero-stripes{
  position:absolute;
  right:-10px;
  top:104px;
  display:grid;
  gap:10px;
  pointer-events:none;
}
.hero-stripes span{
  display:block;
  height:8px;
  background:var(--red);
}
.hero-stripes span:nth-child(1){width:180px}
.hero-stripes span:nth-child(2){width:132px;background:var(--ink)}
.hero-stripes span:nth-child(3){width:92px}
.hero-stripes span:nth-child(4){width:148px;background:var(--ink)}
.hero-stripes span:nth-child(5){width:56px}

.hero-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:70px 1fr 470px;
  gap:42px;
  align-items:center;
  min-height:650px;
}
.hero-rail{
  align-self:start;
  padding-top:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-rail:before{
  content:"";
  width:1px;
  height:170px;
  background:var(--line);
}
.kicker,.section-kicker{
  font-family:"IBM Plex Mono",monospace;
  font-size:.68rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:600;
}
.kicker{color:var(--red-deep)}
.hero h1{
  margin:18px 0 22px;
  line-height:.82;
}
.h1-stop{
  display:block;
  font-size:clamp(6.2rem,11vw,11.2rem);
  color:var(--red);
}
.h1-sub{
  display:block;
  font-size:clamp(3.5rem,6vw,6rem);
}
.hero-copy p{
  max-width:600px;
  color:#4e4943;
  font-size:1.02rem;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:32px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:50px;
  padding:0 18px;
  font-family:"IBM Plex Mono",monospace;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:600;
}
.btn-red{
  background:var(--red);
  color:#fff;
  box-shadow:0 14px 30px rgba(228,67,52,.22);
}
.btn-black{
  width:100%;
  margin-top:24px;
  background:var(--black);
  color:#fff;
}
.btn-link{
  font-family:"IBM Plex Mono",monospace;
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:600;
  border-bottom:1px solid var(--ink);
  padding-bottom:4px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.hero-tags span{
  font-family:"IBM Plex Mono",monospace;
  font-size:.66rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid var(--line);
  padding:8px 10px;
  background:rgba(255,255,255,.52);
}

.hero-poster{
  position:relative;
  min-height:560px;
  background:var(--black);
  color:#fff;
  padding:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.poster-frame{
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.18);
}
.poster-head{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.poster-type{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-top:40px;
}
.poster-type span{
  font-size:clamp(5.4rem,7vw,8rem);
  line-height:.8;
}
.poster-type span:nth-child(2),
.poster-type span:nth-child(4){color:var(--red)}
.poster-target{
  position:relative;
  width:220px;
  height:220px;
  margin:40px auto 28px;
}
.target-ring{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
}
.ring-1{width:220px;height:220px;border:26px solid #f7f3eb}
.ring-2{width:138px;height:138px;border:18px solid var(--red)}
.ring-3{width:76px;height:76px;border:12px solid #f7f3eb}
.target-core{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--red);
}
.poster-bars{
  position:relative;
  z-index:2;
  display:grid;
  gap:9px;
}
.poster-bars span{
  display:block;
  height:8px;
}
.poster-bars span:nth-child(1){width:100%;background:var(--red)}
.poster-bars span:nth-child(2){width:72%;background:#fff}
.poster-bars span:nth-child(3){width:84%;background:var(--red)}
.poster-bars span:nth-child(4){width:38%;background:#fff}
.poster-foot{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
}
.poster-foot strong{
  display:block;
  font-size:1.16rem;
  line-height:1.1;
}
.poster-foot small{
  display:block;
  margin-top:6px;
  color:#b3aca2;
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
}

.quick-strip{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:38px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.quick-strip > div{
  padding:18px 18px 20px;
  border-right:1px solid var(--line);
}
.quick-strip > div:last-child{border-right:0}
.quick-strip span,.quick-strip strong{
  display:block;
}
.quick-strip span{
  font-family:"IBM Plex Mono",monospace;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.quick-strip strong{
  margin-top:6px;
  font-size:.85rem;
}

/* band */
.impact-band{
  position:relative;
  overflow:hidden;
  margin-top:74px;
  background:var(--red);
  color:#fff;
}
.impact-band-bg{
  position:absolute;
  inset:0;
  opacity:.18;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.85) 0 2px,
      transparent 2px 20px
    );
}
.impact-layout{
  position:relative;
  z-index:2;
  min-height:290px;
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:54px;
  align-items:center;
}
.impact-word{
  font-size:clamp(5.6rem,10vw,10rem);
  line-height:.8;
  color:var(--black);
}
.impact-layout p{
  margin:0;
  font-family:"Archivo Black",Impact,sans-serif;
  font-size:clamp(2.2rem,4.6vw,4.5rem);
  line-height:.92;
  letter-spacing:-.04em;
}

/* general sections */
.section{padding:104px 0}
.section-grid{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:56px;
}
.section-rail{
  display:flex;
  flex-direction:column;
  gap:12px;
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.section-rail:after{
  content:"";
  width:1px;
  height:120px;
  background:var(--line);
}
.section-heading{
  max-width:760px;
  margin-bottom:56px;
}
.signal-mark{
  display:flex;
  gap:8px;
  margin-bottom:18px;
}
.signal-mark span{
  display:block;
  height:8px;
}
.signal-mark span:nth-child(1){width:104px;background:var(--red)}
.signal-mark span:nth-child(2){width:34px;background:var(--ink)}
.signal-mark span:nth-child(3){width:62px;background:var(--red)}
.signal-mark-light span:nth-child(2){background:#fff}
.section h2,.contact-section h2{
  font-size:clamp(3.2rem,5.8vw,5.8rem);
  line-height:.9;
  margin:0 0 18px;
}
.section-heading p{color:var(--muted);max-width:620px}

/* services */
.services{background:var(--paper-3)}
.service-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  min-height:310px;
  padding:24px;
  background:#fff;
  border:1px solid rgba(18,18,18,.08);
  box-shadow:0 18px 40px rgba(18,18,18,.06);
  position:relative;
  overflow:hidden;
}
.service-card:before{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:140px;
  height:140px;
  border-radius:50%;
  border:20px solid rgba(228,67,52,.10);
}
.service-card-dark{
  background:var(--black);
  color:#fff;
}
.service-card-dark p{color:#cec7bd}
.service-card-dark:before{
  border-color:rgba(255,255,255,.09);
}
.service-card-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  margin-bottom:30px;
}
.service-num,.service-label{
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.service-label{color:var(--muted)}
.service-card-dark .service-label{color:#bdb4a8}
.service-card h3{
  font-size:2.25rem;
  line-height:.92;
  margin:0 0 16px;
}
.service-card p{
  margin:0;
  color:#57524b;
  max-width:280px;
}

/* intervention */
.intervention{
  position:relative;
  background:var(--black);
  color:#fff;
  overflow:hidden;
}
.intervention-stripe{
  position:absolute;
  right:-50px;
  top:0;
  width:280px;
  height:100%;
  opacity:.16;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(228,67,52,.95) 0 10px,
      transparent 10px 28px
    );
}
.intervention-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:88px;
  align-items:start;
}
.section-kicker{color:#f1a49c}
.intervention-copy h2{
  margin:14px 0 18px;
  max-width:620px;
}
.intervention-copy p{color:#d2cbc2;max-width:560px}
.intervention-steps{
  display:grid;
  gap:16px;
}
.intervention-steps article{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:18px 20px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.12);
}
.intervention-steps article:last-child{
  border-bottom:1px solid rgba(255,255,255,.12);
}
.intervention-steps span{
  font-family:"Archivo Black",Impact,sans-serif;
  font-size:1.8rem;
  color:var(--red);
}
.intervention-steps h3{
  margin:4px 0 8px;
  font-size:1.4rem;
}
.intervention-steps p{
  grid-column:2;
  margin:0;
  color:#cbc4bb;
}

/* about */
.about{
  background:linear-gradient(180deg,var(--paper) 0%, var(--paper-3) 100%);
}
.about-grid{
  display:grid;
  grid-template-columns:460px 1fr;
  gap:80px;
  align-items:center;
}
.about-panel{
  position:relative;
  min-height:520px;
  background:var(--red);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-panel-frame{
  position:absolute;
  inset:20px;
  border:1px solid rgba(18,18,18,.34);
}
.about-city{
  position:absolute;
  left:24px;
  top:22px;
  font-family:"IBM Plex Mono",monospace;
  font-size:.66rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.about-circle{
  position:absolute;
  right:-110px;
  top:54px;
  width:320px;
  height:320px;
  border-radius:50%;
  border:42px solid var(--black);
}
.about-number{
  position:absolute;
  left:24px;
  bottom:12px;
  font-family:"Archivo Black",Impact,sans-serif;
  font-size:12.5rem;
  line-height:.76;
  color:var(--paper-3);
}
.about-lines{
  position:absolute;
  right:24px;
  bottom:24px;
  display:grid;
  gap:9px;
}
.about-lines span{
  display:block;
  height:8px;
  background:var(--black);
}
.about-lines span:nth-child(1){width:124px}
.about-lines span:nth-child(2){width:92px}
.about-lines span:nth-child(3){width:64px}
.about-lines span:nth-child(4){width:36px}
.section-kicker.dark{color:var(--red-deep)}
.about-copy h2{margin-top:14px}
.about-copy p{color:#4f4943;max-width:680px}
.about-copy a{text-decoration:underline}
.facts-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.facts-grid > div{
  padding-top:16px;
  border-top:1px solid var(--line);
}
.facts-grid span,.facts-grid strong{
  display:block;
}
.facts-grid span{
  font-family:"IBM Plex Mono",monospace;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.facts-grid strong{
  margin-top:6px;
  font-size:.85rem;
  line-height:1.45;
}

/* contact */
.contact-section{
  position:relative;
  overflow:hidden;
  padding:108px 0;
  background:var(--red);
  color:#fff;
}
.contact-pattern{
  position:absolute;
  right:0;
  top:0;
  width:320px;
  height:100%;
  opacity:.18;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(18,18,18,.9) 0 2px,
      transparent 2px 18px
    );
}
.contact-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 430px;
  gap:88px;
  align-items:start;
}
.section-kicker.light{color:#2e2523}
.contact-copy h2{
  margin:14px 0 18px;
}
.contact-copy p{color:#f7dfda;max-width:500px}
.contact-card{
  background:var(--paper-3);
  color:var(--ink);
  padding:34px;
  box-shadow:var(--shadow);
}
.contact-label{
  display:block;
  font-family:"IBM Plex Mono",monospace;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.contact-phone{
  display:block;
  margin:12px 0 28px;
  font-family:"Archivo Black",Impact,sans-serif;
  font-size:clamp(2.4rem,4vw,4rem);
  line-height:1;
}
.contact-infos{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.contact-infos span,.contact-infos strong{
  display:block;
}
.contact-infos span{
  font-family:"IBM Plex Mono",monospace;
  font-size:.58rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
}
.contact-infos strong{
  margin-top:6px;
  font-size:.84rem;
  line-height:1.45;
}

/* footer */
.site-footer{
  background:var(--black);
  color:#fff;
  padding:56px 0 110px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-brand span{
  font-size:1.5rem;
  color:#fff;
  background:var(--red);
  padding:6px 9px;
}
.footer-brand strong{font-size:1.8rem}
.footer-back{
  font-family:"IBM Plex Mono",monospace;
  font-size:.62rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#b9b1a6;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.footer-grid > div{padding-top:24px}
.footer-grid span,.footer-grid strong,.footer-grid a{
  display:block;
}
.footer-grid span{
  font-family:"IBM Plex Mono",monospace;
  font-size:.56rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:#8d857b;
}
.footer-grid strong,.footer-grid a{
  margin-top:6px;
  color:#ddd6ca;
  font-size:.82rem;
  line-height:1.4;
}

.mobile-bar{display:none}

@media(max-width:1100px){
  .hero-layout{grid-template-columns:54px 1fr;gap:28px}
  .hero-poster{grid-column:2;max-width:520px}
  .about-grid,.contact-grid,.intervention-grid{grid-template-columns:1fr}
}

@media(max-width:980px){
  .nav{grid-template-columns:auto 1fr auto}
  .desktop-nav{display:none}
  .section-grid{grid-template-columns:1fr}
  .section-rail{display:none}
  .service-cards{grid-template-columns:1fr}
  .quick-strip{grid-template-columns:1fr}
  .quick-strip > div{border-right:0;border-bottom:1px solid var(--line)}
  .quick-strip > div:last-child{border-bottom:0}
  .impact-layout{grid-template-columns:1fr;gap:20px;padding:48px 0}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:680px){
  .container{width:min(var(--max),calc(100% - 28px))}
  .nav{min-height:70px;grid-template-columns:auto auto}
  .header-phone{font-size:.64rem;padding:9px 10px}
  .hero{padding-top:58px}
  .hero-layout{grid-template-columns:1fr;min-height:0}
  .hero-rail{display:none}
  .hero h1{margin-top:16px}
  .h1-stop{font-size:5.6rem}
  .h1-sub{font-size:3.2rem}
  .hero-poster{grid-column:auto;min-height:420px;margin-top:16px;padding:18px}
  .poster-frame{inset:12px}
  .poster-type{gap:8px}
  .poster-type span{font-size:4.8rem}
  .poster-target{width:160px;height:160px;margin:26px auto 22px}
  .ring-1{width:160px;height:160px;border-width:18px}
  .ring-2{width:102px;height:102px;border-width:12px}
  .ring-3{width:54px;height:54px;border-width:8px}
  .target-core{width:16px;height:16px}
  .impact-word{font-size:5.2rem}
  .impact-layout p{font-size:2.35rem}
  .section{padding:76px 0}
  .section h2,.contact-section h2{font-size:3rem}
  .about-panel{min-height:340px}
  .about-number{font-size:8rem}
  .about-circle{width:220px;height:220px;border-width:28px;right:-76px}
  .facts-grid,.footer-grid{grid-template-columns:1fr}
  .contact-section{padding:76px 0}
  .contact-card{padding:24px}
  .footer-top{align-items:flex-start;flex-direction:column}
  .hero-pattern-a,.hero-pattern-b,.hero-gridlines,.hero-stripes,.contact-pattern,.intervention-stripe{display:none}
  .mobile-bar{
    position:fixed;
    left:10px;right:10px;bottom:10px;
    z-index:70;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--black);
    padding:6px;
    box-shadow:0 18px 38px rgba(0,0,0,.28);
  }
  .mobile-bar a{
    text-align:center;
    padding:12px;
    color:#fff;
    font-family:"IBM Plex Mono",monospace;
    font-size:.72rem;
    text-transform:uppercase;
    font-weight:600;
  }
  .mobile-bar a:first-child{background:var(--red)}
}


/* =========================================================
   CORRECTION DES CARTES SERVICES
   Empêche les titres longs de déborder ou d'être coupés.
   ========================================================= */

.service-card{
  min-height:340px;
}

.service-card h3{
  font-size:clamp(1.7rem, 3vw, 2.25rem);
  line-height:.94;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:normal;
  hyphens:auto;
  text-wrap:balance;
}

.service-card p{
  max-width:100%;
}

@media(max-width:980px){
  .service-card{
    min-height:auto;
  }
}

@media(max-width:680px){
  .service-card{
    min-height:auto;
    padding:22px 20px;
  }

  .service-card h3{
    font-size:1.85rem;
    line-height:.96;
  }
}
