:root{
  --bg:#eceff1;
  --bg-soft:#f6f7f8;
  --surface:#ffffff;
  --surface-2:#e2e6e9;
  --surface-3:#cfd4d8;
  --text:#171a1d;
  --muted:#626970;
  --muted-2:#858c92;
  --line:#d3d8dc;
  --line-strong:#b7bec4;
  --graphite:#202428;
  --graphite-2:#2b3035;
  --steel:#8f979e;
  --white:#ffffff;
  --black:#0d0f11;
  --max:1200px;
  --radius:22px;
  --radius-sm:14px;
  --shadow:0 24px 65px rgba(35,42,48,.12);
  --shadow-soft:0 12px 34px rgba(35,42,48,.09);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(circle at 8% 4%,rgba(255,255,255,.95),transparent 28rem),
    linear-gradient(180deg,#f2f4f5 0%,#e8ebed 100%);
  font-family:"Segoe UI Variable","Segoe UI",Inter,system-ui,-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  line-height:1.6;
  letter-spacing:-.006em;
  min-height:100vh;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.34;
  background-image:
    linear-gradient(rgba(53,61,68,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(53,61,68,.03) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,black,transparent 55%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
::selection{background:var(--graphite);color:#fff}
.wrap{width:min(calc(100% - 56px),var(--max));margin-inline:auto}

/* Header */
.site-header{
  position:relative;
  z-index:20;
  padding:20px 0 0;
  color:#fff;
  background:
    linear-gradient(115deg,rgba(255,255,255,.055),transparent 28%),
    linear-gradient(180deg,#292e33 0%,#202428 100%);
  border-bottom:1px solid #343a40;
  box-shadow:0 8px 30px rgba(21,25,29,.13);
}
.header-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:30px;
}
.hours,.address{
  width:max-content;
  max-width:100%;
  padding:11px 14px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:12px;
  background:rgba(255,255,255,.055);
  color:#e4e7e9;
  font-size:12px;
  line-height:1.55;
  letter-spacing:.015em;
}
.hours{justify-self:start}
.address{justify-self:end;text-align:right}
.address a{color:#fff;font-weight:700}
.brand{display:flex;align-items:center;justify-content:center;gap:13px;text-align:left}
.brand-mark{
  width:64px;
  height:64px;
  object-fit:contain;
  margin:0;
  border-radius:13px;
  background:#fff;
  box-shadow:0 0 0 1px rgba(255,255,255,.18),0 12px 30px rgba(0,0,0,.22);
}
.brand-title{
  max-width:170px;
  color:#fff;
  font-size:15px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:.115em;
  text-transform:uppercase;
}
.header-rule{height:0;margin:16px 0 0}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  margin-top:16px;
  padding:7px;
  border:1px solid rgba(255,255,255,.09);
  border-bottom:0;
  border-radius:17px 17px 0 0;
  background:rgba(6,8,10,.18);
}
.nav-row a{
  position:relative;
  padding:10px 13px;
  border-radius:10px;
  color:#d3d7da;
  font-size:13px;
  font-weight:600;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.nav-row a:hover{background:rgba(255,255,255,.09);color:#fff}
.nav-row a.active{background:rgba(255,255,255,.13);color:#fff}
.nav-row a.active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:4px;
  width:18px;
  height:2px;
  border-radius:2px;
  background:#fff;
  transform:translateX(-50%);
}
.nav-row .quote{
  margin-left:7px;
  padding:10px 15px;
  background:#fff;
  color:#1c2024;
  border:1px solid #fff;
  font-weight:750;
}
.nav-row .quote:hover{background:#e4e7e9;color:#0f1113;transform:translateY(-1px)}
.mobile-toggle{display:none}

main{min-height:55vh}

/* Hero */
.hero,.page-hero{position:relative;overflow:hidden}
.hero::before,.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 76% 16%,rgba(255,255,255,.9),transparent 24rem),
    linear-gradient(120deg,transparent 0 58%,rgba(88,97,104,.05) 58% 59%,transparent 59% 100%);
}
.hero{
  padding:108px 0 92px;
  text-align:center;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f8f9fa 0%,#e6e9eb 52%,#d5dade 100%);
}
.hero .wrap,.page-hero .wrap{position:relative;z-index:1}
.hero h1{
  margin:0 0 20px;
  color:#171a1d;
  font-size:clamp(68px,9vw,116px);
  line-height:.88;
  font-weight:800;
  letter-spacing:-.07em;
  text-wrap:balance;
}
.hero .kicker{margin:0 0 6px;color:#30353a;font-size:clamp(22px,3vw,34px);font-weight:560;letter-spacing:-.025em}
.hero p{margin:0;color:#697078;font-size:17px}
.page-hero{
  padding:78px 0 52px;
  text-align:center;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f9fafb 0%,#e4e8ea 68%,#d0d5d9 100%);
}
.page-hero h1{margin:0 0 12px;color:#1a1d20;font-size:clamp(44px,6vw,72px);line-height:1;font-weight:760;letter-spacing:-.045em}
.page-hero p{max-width:760px;margin:0 auto;color:#626a71;font-size:17px}

/* Generic sections */
.section{padding:76px 0}
main>.section:nth-of-type(even){background:rgba(255,255,255,.36);border-top:1px solid rgba(255,255,255,.8);border-bottom:1px solid rgba(190,197,203,.55)}
.section-title{margin:0 0 8px;text-align:center;font-size:clamp(34px,4vw,46px);line-height:1.05;font-weight:720;letter-spacing:-.035em}
.section-sub{margin:0 0 42px;text-align:center;color:var(--muted);font-size:17px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:11px 20px;
  border:1px solid #30353a;
  border-radius:12px;
  background:#2a2f34;
  color:#fff;
  cursor:pointer;
  font:inherit;
  font-weight:700;
  box-shadow:0 7px 18px rgba(36,42,47,.12);
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease;
}
.button:hover{transform:translateY(-2px);background:#111417;border-color:#111417;color:#fff;box-shadow:0 12px 28px rgba(36,42,47,.18)}

/* Home services */
.services{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.service{
  position:relative;
  min-height:222px;
  padding:28px 24px;
  overflow:hidden;
  border:1px solid #d9dde0;
  border-radius:18px;
  background:linear-gradient(145deg,#fff,#f4f6f7);
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  text-align:left;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.service::before{
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-58px;
  top:-62px;
  border-radius:50%;
  background:rgba(103,113,121,.07);
  pointer-events:none;
}
.service:hover{transform:translateY(-5px);border-color:#bcc3c8;box-shadow:0 20px 44px rgba(42,49,55,.13)}
.service img{
  position:relative;
  z-index:1;
  width:52px;
  height:52px;
  padding:13px;
  margin:0 0 auto;
  object-fit:contain;
  border:1px solid #d3d8dc;
  border-radius:14px;
  background:#edf0f2;
}
.service h3{position:relative;z-index:1;margin:24px 0 5px;color:#1b1e21;font-size:19px;line-height:1.2;font-weight:700}
.service p{position:relative;z-index:1;margin:0;color:#697078;font-size:13px;line-height:1.5}

.visual-split{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:0;
  align-items:stretch;
  margin-top:72px;
  overflow:hidden;
  border:1px solid #c8ced2;
  border-radius:var(--radius);
  background:#262b30;
  box-shadow:var(--shadow);
}
.visual-split img{width:100%;height:520px;object-fit:cover;object-position:center}
.visual-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:54px;
  color:#fff;
  background:
    radial-gradient(circle at 15% 50%,rgba(255,255,255,.09),transparent 42%),
    linear-gradient(145deg,#31373c,#202428);
}
.visual-copy::before{
  content:"AVIS CLIENTS";
  width:max-content;
  margin-bottom:22px;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#d1d5d8;
  font-size:11px;
  font-weight:750;
  letter-spacing:.14em;
}
.visual-copy h2{margin:0 0 10px;color:#fff;font-size:clamp(36px,4vw,52px);line-height:1.05;font-weight:720;letter-spacing:-.04em}
.visual-copy p{margin:0;color:#c3c8cc;font-size:17px}
/* Avis clients */
.reviews-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:18px;
  padding:22px 26px;
  border:1px solid #d2d7da;
  border-radius:18px;
  background:linear-gradient(135deg,#fff,#f3f5f6);
  box-shadow:var(--shadow-soft);
}
.reviews-score{display:flex;align-items:center;gap:18px}
.reviews-score strong{color:#1d2226;font-size:36px;line-height:1;font-weight:780;letter-spacing:-.04em}
.reviews-score strong span{font-size:18px;font-weight:650;color:#717980}
.stars,.review-stars{color:#555d64;letter-spacing:.12em}
.stars{margin-bottom:3px;font-size:18px}
.reviews-score p{margin:0;color:#687078;font-size:13px;font-weight:650}
.reviews-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid #343a40;
  border-radius:999px;
  color:#fff;
  background:#2b3035;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:transform .2s ease,background .2s ease;
}
.reviews-link:hover{transform:translateY(-2px);background:#171a1d}
.recent-reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
.review-card{
  position:relative;
  min-height:176px;
  margin:0;
  padding:24px;
  overflow:hidden;
  border:1px solid #d6dbde;
  border-radius:17px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.review-card::after{
  content:'“';
  position:absolute;
  right:16px;
  bottom:-22px;
  color:#eef0f1;
  font-size:110px;
  font-family:Georgia,serif;
  line-height:1;
  pointer-events:none;
}
.review-stars{position:relative;z-index:1;margin-bottom:18px;font-size:13px}
.review-card p{position:relative;z-index:1;margin:0 0 18px;color:#2c3237;font-size:16px;line-height:1.55;font-weight:580}
.review-card footer{position:relative;z-index:1;color:#7a8288;font-size:12px;font-weight:650;text-transform:uppercase;letter-spacing:.08em}
.testimonials{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px}
.testimonials img{width:100%;height:100%;min-height:210px;object-fit:contain;padding:12px;border:1px solid #d4d9dc;border-radius:17px;background:#fff;box-shadow:var(--shadow-soft)}

/* References */
.references-section{background:linear-gradient(180deg,rgba(255,255,255,.72),rgba(239,242,244,.74))}
.references-heading{max-width:760px;margin:0 auto 42px;text-align:center}
.references-heading .eyebrow{margin:0 0 8px;color:#737b82;font-size:12px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.references-heading h2{margin:0 0 12px;font-size:clamp(32px,4vw,46px);line-height:1.05;font-weight:730;letter-spacing:-.035em}
.references-heading>p:last-child{margin:0;color:var(--muted);font-size:16px}
.references-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px}
.reference-card{min-width:0;overflow:hidden;border:1px solid #d5dade;border-radius:18px;background:#fff;box-shadow:0 9px 26px rgba(35,42,48,.07);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.reference-card:hover{transform:translateY(-3px);border-color:#b9c0c5;box-shadow:0 17px 34px rgba(35,42,48,.11)}
.reference-visual{display:flex;height:154px;align-items:center;justify-content:center;padding:20px;background:linear-gradient(145deg,#fff,#f5f6f7);border-bottom:1px solid #e1e5e7}
.reference-visual img{width:100%;height:100%;object-fit:contain}
.reference-visual.legacy{padding:0;background:#222}
.reference-visual.legacy img{object-fit:cover}
.reference-visual.photo{padding:10px;background:#f2f4f5}
.reference-visual.photo img{border-radius:10px;object-fit:cover}
.reference-visual.dark-logo{background:#151515}
.reference-wordmark{color:#202428;text-align:center;background:linear-gradient(145deg,#f9fafb,#e8ecef)}
.reference-wordmark>div{display:flex;flex-direction:column;align-items:center;gap:5px}
.reference-wordmark strong{font-size:42px;line-height:1;font-weight:850;letter-spacing:-.055em}
.reference-wordmark span{font-size:11px;line-height:1.2;font-weight:800;letter-spacing:.12em}
.reference-wordmark--earl strong{font-size:32px;letter-spacing:.08em}
.reference-wordmark--earl span{max-width:170px;font-size:12px;letter-spacing:.07em}
.reference-card h2{display:flex;min-height:72px;align-items:center;justify-content:center;margin:0;padding:16px 15px;color:#252a2e;text-align:center;font-size:15px;line-height:1.3;font-weight:690;letter-spacing:-.012em}

/* Legacy catalog support */
.catalog-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.catalog-column h2{margin:0 0 22px;text-align:center;font-size:31px;font-weight:680}
.catalog-column img{width:100%;margin-bottom:20px;padding:10px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-soft)}

/* About / remote / content */
.content-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:stretch}
.content-grid>div:first-child,.about{
  border:1px solid #d6dbde;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#fff,#f2f4f5);
  box-shadow:var(--shadow-soft);
}
.content-grid>div:first-child{padding:44px}
.content-grid h2{margin:0 0 20px;color:#1b1f22;font-size:clamp(34px,4vw,46px);line-height:1.08;font-weight:720;letter-spacing:-.035em}
.content-grid h3{margin:32px 0 10px;font-size:23px;font-weight:680}
.content-grid p{color:#555d64;font-size:16px}
.remote-card{
  height:100%;
  padding:48px;
  border:1px solid #c7cdd2;
  border-radius:var(--radius);
  background:
    radial-gradient(circle at 50% 0,rgba(255,255,255,.14),transparent 42%),
    linear-gradient(145deg,#343a40,#23282d);
  box-shadow:var(--shadow);
  color:#fff;
  text-align:center;
}
.remote-card p{color:#d3d7da}
.remote-card .remote-icon{margin-bottom:18px;color:#fff;font-size:64px;line-height:1;filter:grayscale(1)}
.about{max-width:980px;margin:0 auto;padding:50px}
.about h2{margin:0 0 18px;font-size:clamp(36px,4vw,48px);line-height:1.06;font-weight:720;letter-spacing:-.035em}
.about p{color:#555e65;font-size:17px}
.about .lead{margin-top:0;color:#202428;font-size:22px;line-height:1.45;font-weight:520}

/* Contact / devis */
.contact-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:22px;align-items:stretch}
.contact-card{
  padding:38px;
  border:1px solid #d3d8dc;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#fff,#f2f4f5);
  box-shadow:var(--shadow-soft);
}
.contact-card h2{margin:0 0 24px;color:#1e2226;font-size:33px;line-height:1.1;font-weight:720;letter-spacing:-.025em}
.contact-card p{margin:0 0 17px;color:#50585f;font-size:16px}
.contact-card a{font-weight:620;transition:color .2s ease}.contact-card a:hover{color:#000;text-decoration:underline;text-underline-offset:4px}
.contact-card img{width:100%;max-height:420px;margin-top:30px;object-fit:cover;border-radius:16px;filter:saturate(.78) contrast(1.02)}
.form{
  display:grid;
  gap:16px;
  padding:38px;
  border:1px solid #d1d6da;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.form label{display:grid;gap:7px;color:#3e454b;font-size:13px;font-weight:650;letter-spacing:.015em}
.form input,.form textarea{
  width:100%;
  padding:13px 14px;
  outline:none;
  border:1px solid #cbd1d5;
  border-radius:11px;
  background:#f7f8f9;
  color:#1a1d20;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.form input:focus,.form textarea:focus{border-color:#6f7880;background:#fff;box-shadow:0 0 0 3px rgba(62,71,78,.08)}
.form textarea{min-height:170px;resize:vertical}
.form .button{justify-self:start;min-width:140px}
.form-status{min-height:1px;color:#444b51;font-size:14px}
.devis-intro{max-width:780px;margin:0 auto 42px;text-align:center}
.devis-intro h1{margin:0 0 10px;color:#1b1e21;font-size:clamp(42px,5vw,66px);line-height:1.04;font-weight:760;letter-spacing:-.045em}
.devis-intro h2{margin:0 0 12px;color:#485057;font-size:22px;font-weight:550}
.devis-intro p{color:var(--muted)}

/* Assemblages sur mesure */
.build-intro{max-width:940px;margin:0 auto;text-align:center}
.build-intro .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:20px;
  padding:7px 11px;
  border:1px solid #c9cfd4;
  border-radius:999px;
  background:#fff;
  color:#5c646b;
  box-shadow:0 4px 14px rgba(37,44,49,.06);
  font-size:11px;
  font-weight:750;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.build-intro h2{margin:0 0 22px;color:#1a1d20;font-size:clamp(38px,5vw,62px);line-height:1.02;font-weight:760;letter-spacing:-.045em;text-wrap:balance}
.build-intro .lead{max-width:800px;margin:0 auto;color:#596168;font-size:19px;line-height:1.65}
.build-highlight{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin:56px auto 0}
.build-highlight article{
  min-height:280px;
  padding:30px;
  border:1px solid #d5dade;
  border-radius:18px;
  background:linear-gradient(145deg,#fff,#f3f5f6);
  box-shadow:var(--shadow-soft);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.build-highlight article:hover{transform:translateY(-4px);border-color:#b9c0c5;box-shadow:0 18px 42px rgba(38,46,52,.12)}
.build-highlight .number{display:block;margin-bottom:50px;color:#778087;font-size:11px;font-weight:750;letter-spacing:.12em}
.build-highlight h3{margin:0 0 12px;color:#22262a;font-size:22px;line-height:1.2;font-weight:700}
.build-highlight p{margin:0;color:#626a71;font-size:14px}
.build-use{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:48px;
  align-items:center;
  margin-top:72px;
  padding:48px;
  border:1px solid #bfc6cb;
  border-radius:var(--radius);
  color:#fff;
  background:
    radial-gradient(circle at 0 0,rgba(255,255,255,.11),transparent 36%),
    linear-gradient(145deg,#343a40,#24292e);
  box-shadow:var(--shadow);
}
.build-use h2{margin:0 0 16px;color:#fff;font-size:clamp(34px,4vw,46px);line-height:1.08;font-weight:720;letter-spacing:-.035em}
.build-use p{margin:0;color:#d0d5d8;font-size:16px}
.build-use-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.build-use-item{padding:18px;border:1px solid rgba(255,255,255,.13);border-radius:14px;background:rgba(255,255,255,.07)}
.build-use-item strong{display:block;margin-bottom:4px;color:#fff;font-size:15px;font-weight:680}
.build-use-item span{color:#c0c6ca;font-size:13px}
.build-price-note{
  position:relative;
  max-width:920px;
  margin:70px auto 0;
  padding:42px 44px;
  overflow:hidden;
  border:1px solid #c4cbd0;
  border-radius:20px;
  background:linear-gradient(135deg,#fff,#dfe3e6);
  text-align:center;
  box-shadow:var(--shadow-soft);
}
.build-price-note::before{content:"€";position:absolute;right:22px;top:-34px;color:rgba(50,58,64,.055);font-size:170px;font-weight:800;line-height:1}
.build-price-note h2{position:relative;margin:0 0 12px;color:#202428;font-size:30px;line-height:1.15;font-weight:700}
.build-price-note p{position:relative;max-width:790px;margin:0 auto;color:#596168;font-size:16px}
.build-cta{margin-top:70px;text-align:center}
.build-cta h2{margin:0 0 10px;color:#1b1e21;font-size:clamp(34px,4vw,46px);line-height:1.08;font-weight:720;letter-spacing:-.035em}
.build-cta p{max-width:700px;margin:0 auto 8px;color:#5e666d;font-size:16px}
.build-cta .button{margin:12px 5px 0}
.build-cta .button:first-of-type{background:#202428;border-color:#202428;color:#fff}
.build-cta .button:first-of-type:hover{background:#090b0d;border-color:#090b0d}
.build-cta .button:last-of-type{background:#fff;color:#202428;border-color:#aeb6bc}
.build-cta .button:last-of-type:hover{background:#e1e5e8;color:#111417}

/* Footer */
.footer{
  margin-top:76px;
  padding:36px 0 40px;
  border-top:1px solid #383e43;
  background:linear-gradient(180deg,#262b30,#1a1e22);
  color:#fff;
  text-align:center;
}
.footer .phone{margin-bottom:8px;font-size:22px;font-weight:700;letter-spacing:.02em}
.footer p{margin:0;color:#aeb4b9;font-size:12px}

/* Responsive */
@media(max-width:1020px){
  .wrap{width:min(calc(100% - 40px),var(--max))}
  .services{grid-template-columns:repeat(2,1fr)}
  .build-highlight{grid-template-columns:1fr}
  .build-highlight article{min-height:auto}
  .build-highlight .number{margin-bottom:26px}
}
@media(max-width:820px){
  .site-header{padding-top:16px}
  .header-grid{grid-template-columns:auto 1fr;gap:14px}
  .brand{justify-content:flex-start}
  .brand-mark{width:54px;height:54px}
  .brand-title{font-size:13px}
  .hours{display:none}
  .address{justify-self:end;padding:10px 12px;font-size:11px}
  .header-rule{margin-top:12px}
  .mobile-toggle{
    display:flex;width:100%;align-items:center;justify-content:space-between;margin:12px 0 0;padding:12px 14px;
    border:1px solid rgba(255,255,255,.10);border-bottom:0;border-radius:14px 14px 0 0;background:rgba(255,255,255,.06);
    color:#fff;cursor:pointer;font-size:13px;font-weight:680;
  }
  .mobile-toggle::after{content:"+";font-size:20px;line-height:1;color:#c0c5c9;transition:transform .2s ease}
  .mobile-toggle[aria-expanded="true"]::after{transform:rotate(45deg)}
  .nav-row{display:none;margin-top:0;padding:9px;border-radius:0 0 14px 14px;flex-direction:column;align-items:stretch}
  .nav-row.open{display:flex}
  .nav-row a{padding:11px 12px}
  .nav-row a.active::after{display:none}
  .nav-row .quote{margin:5px 0 0;text-align:center}
  .visual-split,.content-grid,.contact-layout,.build-use{grid-template-columns:1fr}
  .visual-split img{height:380px}
  .visual-copy{padding:38px}
  .content-grid,.contact-layout{gap:16px}
  .build-use{gap:30px;padding:34px}
  .references-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:580px){
  .wrap{width:min(calc(100% - 28px),var(--max))}
  .site-header{padding-top:12px}
  .header-grid{grid-template-columns:1fr auto}
  .address{display:none}
  .brand-mark{width:50px;height:50px;border-radius:10px}
  .hero{padding:76px 0 68px}
  .hero h1{font-size:64px}
  .hero .kicker{font-size:23px}
  .page-hero{padding:62px 0 38px}
  .page-hero h1{font-size:42px}
  .section{padding:52px 0}
  .services{grid-template-columns:1fr;gap:11px}
  .service{min-height:190px;padding:24px}
  .visual-split{margin-top:52px}
  .visual-split img{height:330px}
  .visual-copy{padding:30px}
  .testimonials{grid-template-columns:1fr;gap:11px;margin-top:11px}
  .references-grid{grid-template-columns:1fr;gap:11px}
  .reference-visual{height:170px}
  .reference-card h2{min-height:62px}
  .testimonials img{min-height:0;padding:8px}
  .about,.content-grid>div:first-child,.remote-card,.contact-card,.form{padding:26px}
  .about .lead{font-size:19px}
  .build-intro .lead{font-size:17px}
  .build-highlight{margin-top:42px;gap:11px}
  .build-highlight article{padding:25px}
  .build-use{margin-top:52px;padding:26px;border-radius:18px}
  .build-use-list{grid-template-columns:1fr}
  .build-price-note{margin-top:52px;padding:34px 22px}
  .build-price-note h2{font-size:26px}
  .build-cta{margin-top:52px}
  .build-cta .button{display:flex;width:100%;margin:10px 0 0}
  .devis-intro{margin-bottom:28px}
  .footer{margin-top:56px}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important;animation:none!important}
}

@media (max-width:760px){
  .reviews-summary{align-items:flex-start;flex-direction:column;padding:20px}
  .reviews-link{width:100%}
  .recent-reviews{grid-template-columns:1fr}
}

/* Page Qui sommes nous */
.about-hero p{font-size:18px;line-height:1.6}
.about-intro-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.about-intro-copy{
  padding:48px;
  border:1px solid #d6dbde;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#fff,#f2f4f5);
  box-shadow:var(--shadow-soft);
}
.about-eyebrow{
  display:inline-flex;
  margin-bottom:20px;
  padding:7px 11px;
  border:1px solid #c9cfd4;
  border-radius:999px;
  background:#fff;
  color:#606970;
  font-size:11px;
  font-weight:760;
  letter-spacing:.12em;
}
.about-intro-copy h2,.about-services-copy h2{
  margin:0 0 20px;
  color:#1b1f22;
  font-size:clamp(38px,5vw,58px);
  line-height:1.03;
  font-weight:750;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.about-intro-copy p{margin:0 0 16px;color:#586168;font-size:16px}
.about-intro-copy .lead{color:#24282c;font-size:20px;line-height:1.55;font-weight:520}
.about-intro-copy p:last-child{margin-bottom:0}
.about-facts{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.about-facts article{
  min-height:190px;
  padding:26px;
  border:1px solid #d4d9dd;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.about-facts article:nth-child(2),.about-facts article:nth-child(3){background:linear-gradient(145deg,#eef1f3,#fff)}
.about-fact-value{display:block;margin-bottom:8px;color:#202428;font-size:27px;line-height:1.05;font-weight:760;letter-spacing:-.035em}
.about-fact-label{color:#737b82;font-size:13px;line-height:1.4;font-weight:580}
.about-values-section{background:rgba(255,255,255,.36)}
.about-values{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.about-values article{
  min-height:300px;
  padding:30px;
  border:1px solid #d6dbde;
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.about-value-number{display:block;margin-bottom:58px;color:#8b9399;font-size:11px;font-weight:760;letter-spacing:.12em}
.about-values h3{margin:0 0 12px;color:#22262a;font-size:22px;line-height:1.2;font-weight:700}
.about-values p{margin:0;color:#626a71;font-size:14px;line-height:1.65}
.about-dark-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  padding:50px;
  border:1px solid #bbc2c7;
  border-radius:var(--radius);
  color:#fff;
  background:
    radial-gradient(circle at 0 0,rgba(255,255,255,.12),transparent 38%),
    linear-gradient(145deg,#353b40,#22272b);
  box-shadow:var(--shadow);
}
.about-dark-kicker{display:block;margin-bottom:18px;color:#c4c9cc;font-size:11px;font-weight:760;letter-spacing:.12em;text-transform:uppercase}
.about-dark-panel h2{margin:0;color:#fff;font-size:clamp(34px,4.5vw,52px);line-height:1.06;font-weight:730;letter-spacing:-.04em;text-wrap:balance}
.about-dark-copy{align-self:end}
.about-dark-copy p{margin:0 0 16px;color:#d1d5d8;font-size:16px;line-height:1.7}
.about-dark-copy p:last-child{margin-bottom:0}
.about-services{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.about-services-copy p{max-width:650px;margin:0;color:#5d656c;font-size:16px}
.about-service-tags{display:flex;flex-wrap:wrap;gap:11px;justify-content:flex-start}
.about-service-tags span{
  padding:13px 16px;
  border:1px solid #cbd1d5;
  border-radius:999px;
  background:#fff;
  color:#30363b;
  box-shadow:0 7px 18px rgba(36,42,47,.06);
  font-size:13px;
  font-weight:650;
}
.about-cta-section{padding-top:28px}
.about-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  padding:38px 42px;
  border:1px solid #c8ced2;
  border-radius:20px;
  background:linear-gradient(135deg,#fff,#e2e6e9);
  box-shadow:var(--shadow-soft);
}
.about-cta h2{margin:0 0 7px;color:#202428;font-size:30px;line-height:1.1;font-weight:720;letter-spacing:-.03em}
.about-cta p{margin:0;color:#626a71;font-size:15px}
.about-cta-actions{display:flex;flex-shrink:0;gap:10px}
.about-secondary-button{background:#fff;color:#202428;border-color:#aeb6bc;box-shadow:none}
.about-secondary-button:hover{background:#dce1e4;color:#111417;border-color:#9fa8ae}

@media(max-width:900px){
  .about-intro-grid,.about-dark-panel,.about-services{grid-template-columns:1fr}
  .about-values{grid-template-columns:1fr}
  .about-values article{min-height:auto}
  .about-value-number{margin-bottom:28px}
  .about-cta{align-items:flex-start;flex-direction:column}
}
@media(max-width:580px){
  .about-intro-copy{padding:26px}
  .about-facts{grid-template-columns:1fr}
  .about-facts article{min-height:145px;padding:22px}
  .about-dark-panel{gap:28px;padding:27px}
  .about-services{gap:28px}
  .about-cta{padding:27px 24px}
  .about-cta-actions{width:100%;flex-direction:column}
  .about-cta-actions .button{width:100%}
}


/* Final accessibility, local-conversion and legal-content pass */
.skip-link{position:fixed;left:14px;top:10px;z-index:9999;padding:10px 14px;border-radius:8px;background:#fff;color:#111;box-shadow:0 4px 18px rgba(0,0,0,.22);transform:translateY(-180%);transition:transform .15s ease}
.skip-link:focus{transform:translateY(0)}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid #737b82;outline-offset:3px}
.hero-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:26px}
.button-secondary{border:1px solid #aeb5ba;background:#fff;color:#252a2e;box-shadow:none}
.button-secondary:hover{background:#edf0f2;color:#111}
.privacy-note{margin:4px 0 14px;color:#697078;font-size:12px;line-height:1.5}
.privacy-note a{text-decoration:underline;text-underline-offset:2px}
.hp-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.footer{padding:46px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:38px;text-align:left}
.footer-brand{margin-bottom:10px;color:#fff;font-size:18px;font-weight:800;letter-spacing:.025em}
.footer h2{margin:0 0 10px;color:#fff;font-size:13px;font-weight:760;letter-spacing:.08em;text-transform:uppercase}
.footer p{margin:0 0 7px;color:#bfc5ca;font-size:13px;line-height:1.55}
.footer a{color:#fff;text-decoration:none}
.footer a:hover{text-decoration:underline;text-underline-offset:3px}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;margin-top:30px;padding-top:17px;border-top:1px solid rgba(255,255,255,.13);color:#969ea4;font-size:11px}
.footer-bottom nav{display:flex;flex-wrap:wrap;gap:16px}
.footer-bottom a{color:#c7ccd0}
.legal-content{max-width:880px}
.legal-content h2{margin:34px 0 10px;font-size:24px;letter-spacing:-.025em}
.legal-content h2:first-child{margin-top:0}
.legal-content p{color:#50575d;line-height:1.72}
.legal-content a{font-weight:650;text-decoration:underline;text-underline-offset:3px}
.not-found{text-align:center;font-size:18px}
@media(max-width:820px){.footer-grid{grid-template-columns:1fr 1fr}.footer-brand-block{grid-column:1/-1}.footer-bottom{flex-direction:column}}
@media(max-width:540px){.footer-grid{grid-template-columns:1fr;gap:24px}.footer-brand-block{grid-column:auto}.hero-actions{flex-direction:column;align-items:stretch}.hero-actions .button{text-align:center}.footer-bottom nav{gap:12px}}


/* Liens externes */
.footer-social-links{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.footer-social-links a{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;color:#fff;font-size:12px;font-weight:680;line-height:1;text-decoration:none;transition:background .2s ease,border-color .2s ease,transform .2s ease}
.footer-social-links a:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.35);text-decoration:none;transform:translateY(-1px)}
.footer-social-links a:focus-visible,.contact-external-links a:focus-visible{outline:3px solid rgba(255,255,255,.35);outline-offset:3px}
.contact-external-links{display:flex;flex-wrap:wrap;gap:9px;margin:16px 0 20px}
.contact-external-links a{display:inline-flex;align-items:center;min-height:38px;padding:9px 12px;border:1px solid #d4dadd;border-radius:999px;background:#f7f8f9;color:#252a2e;font-size:13px;font-weight:700;text-decoration:none;transition:background .2s ease,border-color .2s ease,transform .2s ease}
.contact-external-links a:hover{background:#fff;border-color:#adb6bc;transform:translateY(-1px)}
.about-linkedin-section{padding-top:0}
.about-linkedin-card{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:28px 30px;border:1px solid #d6dbde;border-radius:20px;background:linear-gradient(145deg,#fff,#f3f5f6);box-shadow:var(--shadow-soft)}
.about-linkedin-card h2{margin:4px 0 8px;font-size:clamp(24px,3vw,34px);letter-spacing:-.025em}
.about-linkedin-card p{margin:0;color:var(--muted);max-width:670px}
@media(max-width:700px){.about-linkedin-card{align-items:flex-start;flex-direction:column}.about-linkedin-card .button{width:100%;text-align:center}}
