/* ===== Tokens ===== */
:root{
  --blue:#1468ab; --blue-dark:#0d4e85; --blue-soft:#eaf3fa;
  --red:#d51635; --red-dark:#b0122c; --red-soft:#fde8ec;
  --ink:#1f2d3d; --muted:#5c6b7a; --line:#dce7f0;
  --bg:#f6f9fc; --white:#fff; --navy:#0f2438; --navy-2:#16324e;
  --shadow:0 8px 28px rgba(20,99,168,.12);
  --shadow-lg:0 16px 44px rgba(13,78,133,.18);
  --radius:12px;
  --font-display:"Sora",system-ui,sans-serif;
  --font-body:"Source Sans 3",system-ui,sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0}
html{scroll-behavior:smooth}
section[id],main[id]{scroll-margin-top:96px}
body{font-family:var(--font-body); color:var(--ink); line-height:1.6; background:var(--white)}
img{max-width:100%; height:auto; display:block}
a{color:var(--blue); text-decoration:none}
h1,h2,h3{font-family:var(--font-display); font-style:normal; line-height:1.22; letter-spacing:-.02em; font-weight:700}
h1{font-size:clamp(1.85rem,4.6vw,2.85rem); font-weight:700}
h2{font-size:clamp(1.45rem,3.4vw,2.05rem); font-weight:700; margin-bottom:8px}
.sub{color:var(--muted); font-size:1.05rem; margin-bottom:28px}
section{padding:60px 0}
section.alt{background:var(--bg)}
.container{max-width:1120px; margin:0 auto; padding:0 20px}
:focus-visible{outline:3px solid var(--blue); outline-offset:2px; border-radius:4px}
.skip-link{position:absolute; left:-999px; top:0; background:var(--navy); color:#fff; padding:10px 16px; z-index:200; border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* ===== Icons ===== */
.ic{flex:none; width:20px; height:20px; overflow:visible; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round}

/* ===== Topbar ===== */
.topbar{background:var(--navy); color:#c7d6e5; font-size:.82rem}
.topbar .container{display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:7px; padding-bottom:7px}
.topbar a{color:#e6eef6; display:inline-flex; align-items:center; gap:6px}
.topbar a:hover{color:#fff; text-decoration:underline; text-underline-offset:3px}
.topbar .tb-left{display:flex; gap:18px; flex-wrap:wrap; align-items:center}
.topbar .tb-right{display:flex; gap:16px; align-items:center}
.topbar .tb-right .ig:hover{text-decoration:none}
.topbar .ic{width:15px; height:15px}
.topbar .tb-trust{display:none; font-weight:600; color:#e6eef6; white-space:nowrap}

/* ===== Header / Nav ===== */
header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,.97); backdrop-filter:blur(8px); border-bottom:1px solid var(--line)}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px; height:80px}
.brand img{height:70px; width:auto; display:block; max-width:200px}
.nav-links{display:none; align-items:center; gap:8px; font-family:var(--font-display); font-weight:600; font-size:.95rem}
.nav-links > a,
.nav-trigger{color:var(--ink); position:relative; padding:8px 10px; border:0; background:none; cursor:pointer;
             font:inherit; font-family:var(--font-display); font-weight:600; font-size:.95rem; border-radius:8px}
.nav-links > a:hover,
.nav-trigger:hover{color:var(--blue)}
.nav-links > a.active,
.nav-trigger.active{color:var(--blue)}
.nav-links > a.active::after{content:""; position:absolute; left:10px; right:10px; bottom:2px; height:2px; background:var(--blue); border-radius:2px}
.nav-trigger.active::before{content:""; position:absolute; left:10px; right:22px; bottom:2px; height:2px; background:var(--blue); border-radius:2px}
.nav-item{position:relative}
.nav-trigger{display:inline-flex; align-items:center; gap:6px}
.nav-trigger::after{content:""; width:7px; height:7px; border-right:2px solid currentColor; border-bottom:2px solid currentColor;
                    transform:rotate(45deg); margin-top:-3px; opacity:.55; flex:none}
.nav-dropdown{position:absolute; top:100%; left:0; min-width:240px; padding:8px;
              background:#fff; border:1px solid var(--line); border-top-width:10px; border-top-color:transparent;
              background-clip:padding-box; border-radius:0 0 12px 12px; box-shadow:var(--shadow);
              display:none; flex-direction:column; gap:2px; z-index:60; margin-top:-2px}
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.open > .nav-dropdown{display:flex}
.nav-dropdown a{display:block; padding:10px 12px; border-radius:8px; color:var(--ink); font-size:.92rem; white-space:nowrap}
.nav-dropdown a:hover{background:var(--bg); color:var(--blue)}
.nav-dropdown a.active{background:var(--blue-soft); color:var(--blue)}
.nav-cta{display:flex; align-items:center; gap:12px}
.btn{display:inline-flex; align-items:center; gap:8px; border:0; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:1rem;
     padding:13px 22px; border-radius:10px; background:var(--red); color:#fff; box-shadow:0 6px 16px rgba(213,22,53,.28); transition:background .15s, transform .1s}
.btn:hover{background:var(--red-dark)}
.btn:active{transform:translateY(1px)}
.btn.ghost{background:transparent; color:var(--blue); border:2px solid var(--blue); box-shadow:none}
.btn.ghost:hover{background:var(--blue-soft)}
.btn.light{background:#fff; color:var(--red); box-shadow:0 6px 16px rgba(0,0,0,.18)}
.btn.light:hover{background:var(--red-soft)}
.btn small{font-weight:600; opacity:.92}
.hamburger{display:block; background:none; border:0; font-size:1.5rem; cursor:pointer; color:var(--ink); padding:8px; margin-right:-4px; line-height:1; border-radius:8px}
.hamburger:hover{background:var(--bg)}
.mobile-menu{display:none; flex-direction:column; gap:4px; padding:12px 20px 22px;
             background:var(--bg); border-top:1px solid var(--line)}
.mobile-menu.open{display:flex}
.mobile-menu > a,
.mobile-group-btn{font-family:var(--font-display); font-weight:600; font-size:1.05rem; color:var(--ink);
               padding:14px 14px; border-radius:10px; border:0; background:none; text-align:left; width:100%;
               cursor:pointer; transition:background .12s, color .12s}
.mobile-menu > a:hover,
.mobile-menu > a:active,
.mobile-group-btn:hover{background:#fff; color:var(--blue)}
.mobile-menu > a.active,
.mobile-group-btn.active{color:var(--blue); background:#fff}
.mobile-group-btn{display:flex; align-items:center; justify-content:space-between}
.mobile-group-btn::after{content:""; width:8px; height:8px; border-right:2px solid currentColor; border-bottom:2px solid currentColor;
                         transform:rotate(45deg); margin-right:4px; transition:transform .15s; opacity:.6}
.mobile-group.open .mobile-group-btn::after{transform:rotate(-135deg); margin-top:4px}
.mobile-group-links{display:none; flex-direction:column; gap:2px; padding:0 0 8px 10px}
.mobile-group.open .mobile-group-links{display:flex}
.mobile-group-links a{font-family:var(--font-display); font-weight:600; font-size:.98rem; color:var(--muted);
                      padding:11px 14px; border-radius:10px}
.mobile-group-links a:hover{background:#fff; color:var(--blue)}
.mobile-group-links a.active{color:var(--blue); background:#fff}

/* ===== Hero ===== */
.hero{padding:96px 0 72px; color:#fff; position:relative;
      background:linear-gradient(145deg,var(--navy) 0%,var(--navy-2) 48%,#1a4a6e 100%)}
.hero--home{padding:112px 0 96px;
      background:linear-gradient(115deg,rgba(9,25,44,.88) 0%,rgba(11,42,70,.78) 45%,rgba(16,64,103,.62) 100%),url('../img/real-equipe-01.webp') center 35%/cover no-repeat}
.hero--home .hero-copy{max-width:40em}
.hero--home h1{max-width:18ch}
.hero h1{color:#fff}
.hero .crumbs, .hero .crumbs a{color:rgba(255,255,255,.8)}
.hero-grid{display:grid; grid-template-columns:1fr; gap:34px; align-items:center}
.badge-h{display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.28);
         border-radius:999px; padding:7px 15px; font-size:.82rem; font-weight:700; color:#fff; margin-bottom:18px; backdrop-filter:blur(4px)}
.badge-h::before{content:""; width:8px; height:8px; border-radius:50%; background:var(--red)}
.hero p.lead{font-size:1.13rem; color:rgba(255,255,255,.9); margin:16px 0 28px; max-width:34em}
.hero p.lead a{color:#fff; text-decoration:underline; text-underline-offset:3px; font-weight:700}
.hero p.lead a:hover{opacity:.9}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px}
.hero .btn.ghost{background:rgba(255,255,255,.96); border-color:#fff; color:var(--navy); box-shadow:0 6px 16px rgba(0,0,0,.22)}
.hero .btn.ghost:hover{background:#fff; color:var(--navy); border-color:#fff}
.trust{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; max-width:34em}
.hero .chip{background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.26); color:#fff; backdrop-filter:blur(4px); padding:8px 14px; gap:8px; font-size:.84rem}
.hero .chip .ic{width:16px; height:16px; color:#9cc9ee; overflow:visible}
.stats{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
.stats-band{background:var(--bg); border-bottom:1px solid var(--line); padding:20px 0 24px}
.stats-band .stat{background:#fff; border:1px solid var(--line); border-radius:var(--radius);
      padding:14px 16px; display:flex; flex-direction:row; align-items:center; gap:12px; text-align:left}
.stats-band .stat .ic-wrap{flex:none; width:40px; height:40px; border-radius:10px; background:var(--blue-soft); color:var(--blue);
      display:flex; align-items:center; justify-content:center}
.stats-band .stat .ic{width:20px; height:20px; overflow:visible}
.stats-band .stat div{display:flex; flex-direction:column; gap:2px; min-width:0}
.stats-band .stat b{font-size:.92rem; line-height:1.25; color:var(--ink)}
.stats-band .stat span{font-size:.78rem; color:var(--muted); line-height:1.3}
.hero-img{border-radius:16px; box-shadow:0 20px 50px rgba(0,0,0,.35); object-fit:cover; object-position:center;
          width:100%; aspect-ratio:4/3; max-height:420px; border:1px solid rgba(255,255,255,.18)}
.hero-img.landscape,
.hero-img.portrait{aspect-ratio:4/3; max-height:420px}

/* ===== Cards / Services ===== */
.cards{display:grid; grid-template-columns:1fr; gap:20px}
.card{background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column;
      transition:box-shadow .18s, transform .18s; position:relative}
.card:hover{box-shadow:var(--shadow); transform:translateY(-3px)}
.card img{aspect-ratio:4/3; object-fit:cover; object-position:center; width:100%}
.card .body{padding:20px 22px 22px; display:flex; flex-direction:column; gap:8px; flex:1}
.card h3{font-size:1.12rem}
.card p{color:var(--muted); font-size:.95rem}
.card .badge{position:absolute; top:12px; left:12px; background:var(--red); color:#fff; font-family:var(--font-display); font-size:.72rem; font-weight:700;
             letter-spacing:.06em; text-transform:uppercase; padding:5px 12px; border-radius:999px; z-index:1}
.card a{margin-top:auto; font-weight:700; font-size:.92rem; display:inline-flex; align-items:center; gap:6px}
.note{margin-top:20px; background:var(--blue-soft); border-radius:var(--radius); padding:16px 20px; font-size:.95rem; color:var(--blue-dark); font-weight:600}
.services-extras,.service-group{margin-top:40px}
.services-extras h3,.service-group h3{font-size:1.2rem; margin-bottom:6px}
.services-extras .sub,.service-group .sub{margin-bottom:20px}
.cards--extras,.cards--group{margin-top:0}
.service-group:first-of-type{margin-top:0}
.inclus{list-style:none; display:grid; gap:10px; max-width:36em; margin:12px auto 0; padding:0}
.inclus li{position:relative; padding:12px 16px 12px 44px; background:#fff; border:1px solid var(--line); border-radius:10px; color:var(--ink); font-size:.95rem; text-align:left}
.inclus li::before{content:""; position:absolute; left:16px; top:50%; transform:translateY(-50%); width:16px; height:16px; border-radius:50%; background:var(--blue-soft); box-shadow:inset 0 0 0 4px var(--blue)}
section.alt .inclus li{background:var(--white)}
.inclus-wrap{text-align:center}
.inclus-wrap .inclus{text-align:left}

/* ===== Why ===== */
.why{display:grid; grid-template-columns:1fr; gap:30px}
.why-img{border-radius:14px; object-fit:cover; width:100%; aspect-ratio:640/563; box-shadow:var(--shadow)}
.benefits{display:grid; grid-template-columns:1fr; gap:16px}
.benefit{display:flex; gap:16px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:18px; transition:box-shadow .15s, border-color .15s}
.benefit:hover{box-shadow:var(--shadow); border-color:var(--blue)}
.benefit .ic-wrap{flex:none; width:44px; height:44px; border-radius:12px; background:var(--blue-soft); color:var(--blue);
                  display:flex; align-items:center; justify-content:center}
.benefit .ic{width:22px; height:22px}
.benefit h3{font-size:1rem; margin-bottom:2px}
.benefit p{color:var(--muted); font-size:.92rem}

.why-head{margin-bottom:28px}
.eyebrow{display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-size:.78rem; font-weight:700;
         letter-spacing:.08em; text-transform:uppercase; color:var(--blue); margin-bottom:12px}
.eyebrow::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--blue)}
.why-showcase{display:grid; grid-template-columns:1fr; gap:16px}
.why-col{display:flex; flex-direction:column; gap:16px}
.why-card{background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px 22px 24px;
          box-shadow:0 4px 18px rgba(15,36,56,.05); transition:box-shadow .15s, border-color .15s}
.why-card:hover{box-shadow:var(--shadow); border-color:rgba(20,104,171,.28)}
.why-card .ic-wrap{width:42px; height:42px; border-radius:50%; background:var(--navy); color:#fff;
                   display:flex; align-items:center; justify-content:center; margin-bottom:14px}
.why-card .ic{width:18px; height:18px}
.why-card h3{font-size:1.05rem; margin-bottom:6px}
.why-card p{color:var(--muted); font-size:.92rem; line-height:1.5}
.why-feature{background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden;
             box-shadow:0 4px 18px rgba(15,36,56,.05); display:flex; flex-direction:column}
.why-feature img{width:100%; aspect-ratio:4/3; object-fit:cover; object-position:center}
.why-feature-body{padding:22px 24px 26px; text-align:center}
.why-feature-body h3{font-size:1.2rem; margin-bottom:8px}
.why-feature-body p{color:var(--muted); font-size:.95rem; line-height:1.55; max-width:32em; margin:0 auto}

/* ===== Zones ===== */
.zones-grid{display:grid; grid-template-columns:1fr; gap:28px; align-items:center}
.zones{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px}
.chip{display:inline-flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--line);
      border-radius:999px; padding:7px 14px; font-size:.87rem; font-weight:600; color:var(--ink)}
.chip .ic{width:15px; height:15px; color:var(--blue)}
.hours{display:inline-flex; align-items:center; gap:8px; color:var(--muted); font-size:.95rem; margin-bottom:10px}
.hours .ic{width:15px; height:15px; color:var(--blue)}
.zones-note{color:var(--ink); font-size:.95rem; font-weight:600; max-width:34em}
.zones-img{border-radius:14px; object-fit:cover; width:100%; aspect-ratio:4/3; box-shadow:var(--shadow)}

/* ===== FAQ ===== */
.faq-wrap{max-width:720px; margin:0 auto; text-align:center}
.faq-wrap .sub{margin-left:auto; margin-right:auto}
.faq{max-width:720px; margin:0 auto; text-align:left}
.faq details{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:16px 18px; margin-bottom:10px}
.faq summary{font-weight:700; cursor:pointer; font-size:1rem; font-family:var(--font-display)}
.faq details p{color:var(--muted); margin-top:8px; font-size:.95rem}

/* ===== Testimonials ===== */
.testis{display:grid; grid-template-columns:1fr; gap:18px}
.testis.solo{max-width:36em}
.testi{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:20px; font-size:.95rem}
.testi .stars{color:#e8a33d; font-size:.95rem; letter-spacing:2px; margin-bottom:8px}
.testi p{font-style:italic}
.testi .who{display:flex; align-items:center; gap:8px; color:var(--muted); font-size:.85rem; margin-top:12px; font-style:normal}
.testi .who .ic{width:15px; height:15px; color:var(--blue)}

/* ===== Team ===== */
.team img{width:100px; height:100px; border-radius:50%; object-fit:cover; margin:0 auto 12px; border:3px solid var(--blue-soft)}
.team .testi{text-align:center}
.team h3{font-size:1rem; line-height:1.2}
.team .who{margin-top:4px; justify-content:center}

/* ===== Contact ===== */
.contact-grid{display:grid; grid-template-columns:1fr; gap:30px}
form{display:grid; gap:14px}
label{font-size:.88rem; font-weight:700}
label .req{color:var(--red)}
input,select,textarea{width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px; font:inherit; font-size:.98rem; background:#fff; color:var(--ink); transition:border-color .12s}
input:focus,select:focus,textarea:focus{outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(20,104,171,.15)}
.form-check{display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color:var(--muted)}
.form-check input{width:18px; height:18px; margin-top:2px; flex:none}
.form-note{font-size:.8rem; color:var(--muted)}
.form-error{color:var(--red); background:var(--red-soft); border:1px solid rgba(213,22,53,.35); border-radius:10px; padding:10px 14px; font-size:.92rem; font-weight:600}
input.field-error,select.field-error,textarea.field-error{border-color:var(--red); box-shadow:0 0 0 3px rgba(213,22,53,.15)}
.hp{position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden}
.info-card{background:var(--navy); color:#fff; border-radius:14px; padding:26px}
.info-card a{color:#fff; text-decoration:underline; text-underline-offset:3px}
.info-card .row{display:flex; gap:12px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.16); font-size:.95rem}
.info-card .row:last-child{border-bottom:0}
.info-card .mini{opacity:.7; font-size:.76rem; text-transform:uppercase; letter-spacing:.1em; font-weight:700}
.info-card .ig{display:inline-flex; align-items:center; gap:8px; margin-top:10px; font-weight:700; text-decoration:none}
.info-card .ig:hover{text-decoration:underline}

/* ===== Gallery / CTA ===== */
.intro{font-size:1.05rem; color:var(--muted); max-width:52em}
.intro p{margin-bottom:14px}
.gallery{display:grid; grid-template-columns:1fr; gap:14px}
.gallery img{border-radius:12px; aspect-ratio:3/4; object-fit:cover; width:100%}
.cta-band{background:linear-gradient(145deg,var(--navy) 0%,var(--navy-2) 55%,#1a4a6e 100%); color:#fff; text-align:center; padding:64px 0}
.cta-band h2{color:#fff; margin-bottom:10px}
.cta-band p{opacity:.92; margin:0 auto 24px; max-width:34em; color:rgba(255,255,255,.9)}
.crumbs{font-size:.85rem; color:var(--muted); margin-bottom:10px}
.crumbs a{color:var(--muted)}
.crumbs a:hover{color:var(--blue)}

/* ===== Footer ===== */
footer{background:var(--navy); color:#b6c8d9; padding:52px 0 0; font-size:.9rem}
.footer-grid{display:grid; grid-template-columns:1fr; gap:28px; padding-bottom:36px}
.footer-grid h4{color:#fff; font-size:.92rem; margin-bottom:12px; letter-spacing:.02em}
.footer-grid a{color:#cfe0ee; display:block; padding:3px 0}
.footer-grid a:hover{color:#fff; text-decoration:underline; text-underline-offset:3px}
.footer-brand img{height:56px; width:auto; max-width:180px; margin-bottom:12px}
.footer-brand p{color:#9db4c8; margin-bottom:14px; font-size:.9rem}
.footer-contact li{list-style:none; display:flex; gap:10px; padding:4px 0; color:#cfe0ee}
.footer-contact .ic{width:16px; height:16px; color:#7fa6c6; margin-top:3px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.14); padding:16px 0; font-size:.85rem; color:#8fa6ba;
               display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between}
.footer-bottom a{color:#cfe0ee}

/* ===== Legal pages ===== */
.hero--page{padding:56px 0 48px}
.hero--page h1{max-width:18ch}
.hero--page .lead{margin:12px 0 0; font-size:1.05rem; color:rgba(255,255,255,.88); max-width:36em}
.legal-section{padding-top:36px; padding-bottom:72px; background:var(--bg)}
.legal{max-width:760px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:16px;
       padding:28px 24px 36px; box-shadow:0 4px 18px rgba(15,36,56,.04)}
.legal > p:first-child{margin-top:0}
.legal h2{font-size:1.15rem; margin-top:28px; margin-bottom:8px; padding-top:22px; border-top:1px solid var(--line)}
.legal h2:first-of-type{margin-top:0; padding-top:0; border-top:0}
.legal p,.legal li{color:var(--muted); font-size:.98rem; line-height:1.65}
.legal p{margin-bottom:10px}
.legal ul{padding-left:1.15em; margin:6px 0 12px}
.legal li{margin-bottom:6px}
.legal a{font-weight:600; text-underline-offset:3px}
.legal a:hover{text-decoration:underline}
.legal strong{color:var(--ink); font-weight:700}
.legal .legal-meta{display:inline-flex; align-items:center; gap:8px; font-size:.85rem; font-weight:600;
  color:var(--blue-dark); background:var(--blue-soft); border-radius:999px; padding:6px 12px; margin-bottom:18px}

/* Brands partners — CSS sprite from logos-sheet.png (933×226, 2×5) */
.brands-band{padding-top:48px; padding-bottom:56px; text-align:center}
.brands-band h2{margin-bottom:8px}
.brands-grid{list-style:none; display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin:24px auto 0; padding:0; max-width:920px}
.brand-item{display:flex; align-items:center; justify-content:center; min-height:72px; padding:16px 18px;
  background:#fff; border:1px solid var(--line); border-radius:12px}
section.alt .brand-item{background:var(--white)}
.brand-sprite{display:block; flex-shrink:0; background-image:url("../img/brands/logos-sheet.png");
  background-repeat:no-repeat; background-size:466px 113px}
.brand-sprite--marmoran{width:94px; height:48px; background-position:-11px -6px}
.brand-sprite--getaz{width:86px; height:48px; background-position:-113px -6px}
.brand-sprite--sabag{width:92px; height:48px; background-position:-206px -6px}
.brand-sprite--weber{width:71px; height:48px; background-position:-310px -6px}
.brand-sprite--hgc{width:64px; height:48px; background-position:-392px -6px}
.brand-sprite--sikkens{width:69px; height:46px; background-position:-10px -59px}
.brand-sprite--masson{width:70px; height:46px; background-position:-100px -59px}
.brand-sprite--sto{width:59px; height:46px; background-position:-186px -59px}
.brand-sprite--regamey{width:72px; height:46px; background-position:-277px -59px}
.brand-sprite--jallut{width:94px; height:46px; background-position:-362px -59px}

/* About / Entreprise */
.about-block{max-width:760px; margin:0 auto; text-align:center}
.about-block h2{margin-bottom:16px}
.about-prose{text-align:left; max-width:640px; margin:0 auto}
.about-prose p{color:var(--muted); line-height:1.65; margin-bottom:12px}
.about-prose p:last-child{margin-bottom:0}
.about-subhead{font-size:1.15rem; margin:28px 0 16px; text-align:center}
.founder-band{padding:56px 0 64px; background:var(--bg)}
.founder-grid{display:grid; grid-template-columns:1fr; gap:28px; align-items:start; max-width:920px; margin:0 auto}
.founder-photo{width:100%; max-width:280px; margin:0 auto; border-radius:16px; object-fit:cover; aspect-ratio:1; box-shadow:var(--shadow)}
.founder-copy h2{margin-bottom:16px; text-align:center}
.founder-copy .about-prose{margin:0}
.founder-sign{margin-top:20px; color:var(--ink); font-size:.95rem; line-height:1.6; text-align:left}

/* ===== Utility ===== */
.fade-in{transition:opacity .55s ease, transform .55s ease; transition-delay:var(--d, 0ms)}
html.js .fade-in{opacity:0; transform:translateY(18px)}
html.js .fade-in.visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .fade-in{opacity:1 !important; transform:none !important; transition:none}
}

@media (min-width:640px){
  .cards{grid-template-columns:repeat(2,1fr); gap:18px}
  .brands-grid{grid-template-columns:repeat(3,1fr)}
  .card.tag{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.15fr 1fr;
    align-items:stretch;
  }
  .card.tag img{
    aspect-ratio:auto;
    height:100%;
    min-height:220px;
    max-height:280px;
  }
  .card.tag .body{
    padding:26px 28px;
    justify-content:center;
    gap:10px;
  }
  .card.tag h3{font-size:1.28rem}
  .card:not(.tag) img{aspect-ratio:16/10}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .testis:not(.team){grid-template-columns:repeat(2,minmax(0,1fr)); max-width:none; width:100%}
  .testis.team{grid-template-columns:repeat(2,minmax(0,1fr)); max-width:36em}
  .testis.solo{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .stats{gap:14px}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:760px){
  .why-showcase{
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "feat feat"
      "left right";
    gap:18px;
  }
  .why-feature{
    grid-area:feat;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:stretch;
  }
  .why-col:first-of-type{grid-area:left}
  .why-col:last-of-type{grid-area:right}
  .why-feature img{aspect-ratio:auto; height:100%; min-height:240px; max-height:300px}
  .why-feature-body{display:flex; flex-direction:column; justify-content:center; text-align:left; padding:28px 30px}
  .why-feature-body p{margin:0}
  .stats{grid-template-columns:repeat(4,1fr); gap:14px}
  .stats-band .stat{padding:16px 18px; gap:14px}
  .stats-band .stat .ic-wrap{width:44px; height:44px}
  .stats-band .stat .ic{width:22px; height:22px}
}
@media (min-width:960px){
  .nav-links{display:flex}
  .hamburger{display:none}
  .hero-grid{grid-template-columns:1.05fr .95fr}
  .cards{grid-template-columns:repeat(3,1fr); gap:20px}
  .cards--extras{grid-template-columns:repeat(2,1fr); max-width:720px}
  .inclus{grid-template-columns:1fr 1fr; max-width:52em; gap:12px}
  .card.tag{
    grid-template-columns:1.25fr 1fr;
  }
  .card.tag img{min-height:260px; max-height:300px}
  .card.tag .body{padding:32px 36px}
  .card.tag h3{font-size:1.4rem}
  .card.tag p{font-size:1.02rem; max-width:36em}
  .why-showcase{
    grid-template-columns:1fr 1.28fr 1fr;
    grid-template-areas:"left feat right";
    gap:20px;
    align-items:stretch;
  }
  .why-feature{
    display:flex;
    flex-direction:column;
  }
  .why-feature img{aspect-ratio:5/4; height:auto; min-height:0; max-height:none; flex:1}
  .why-feature-body{text-align:center; padding:26px 28px 30px}
  .why-feature-body p{margin:0 auto}
  .why-col{justify-content:stretch}
  .why-card{flex:1}
  section{padding:76px 0}
  .why{grid-template-columns:.9fr 1.1fr}
  .zones-grid{grid-template-columns:1.05fr .95fr; gap:40px}
  .contact-grid{grid-template-columns:1.15fr .85fr}
  .gallery{grid-template-columns:repeat(3,1fr)}
  .brands-grid{grid-template-columns:repeat(5,1fr); gap:16px}
  .founder-grid{grid-template-columns:280px 1fr; gap:40px; align-items:center}
  .founder-photo{margin:0}
  .founder-copy h2,.founder-sign{text-align:left}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1.2fr}
}
@media (max-width:640px){
  .topbar{font-size:.78rem}
  .topbar .container{flex-direction:row; align-items:center; justify-content:space-between; gap:12px; padding-top:6px; padding-bottom:6px; flex-wrap:nowrap}
  .topbar .tb-left{flex-direction:row; flex-wrap:nowrap; gap:12px; align-items:center; min-width:0}
  .topbar .tb-left span{white-space:nowrap}
  .topbar .tb-phone,
  .topbar .tb-mail{display:none}
  .topbar .tb-trust{display:inline}
  .topbar .ig{gap:0; font-size:0; line-height:0; text-decoration:none}
  .topbar .ig .ic{width:16px; height:16px}
  .topbar .ig:hover{opacity:.85}
  .nav-cta{gap:8px}
  .nav-cta .btn{padding:11px 12px; font-size:0; gap:0; box-shadow:0 4px 12px rgba(213,22,53,.25)}
  .nav-cta .btn .ic{width:18px; height:18px}
  .mobile-menu{padding:14px 20px 24px; gap:6px}
  .hero{padding:56px 0 48px}
  .hero--home{padding:72px 0 64px}
  .hero--page{padding:44px 0 40px}
  .legal{padding:32px 36px 40px}
}