
:root {
  --coral:#FB926B; --coral-bg:#fddfd8;
  --mint:#BAFAEE;  --mint-bg:#dffdf7;
  --periwinkle:#BFCCFB; --periwinkle-bg:#dee5fd;
  --cream:#FEECC2; --cream-grid:#fbefd3;
  --rose:#FFCEEC;  --rose-mid:#FF9DB8; --rose-bg:#fff0f8;
  --ink:#161616; --ink-dark:#2a2a2a; --ink-mid:#555; --ink-soft:#888;
  --body-bg:#F2F2F2; --hero-bg:#BAFAEE;
  --white:#F2F2F2; --border:#161616; --mid:#c8c8c8;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans: 'Lato', system-ui, sans-serif;
  --r:0px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family: var(--sans);background:var(--body-bg);color:var(--ink);font-size:16.8px;line-height:1.75}
.container{max-width:1240px;margin:0 auto;padding:0 3rem}
section{padding:6rem 0 8rem}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;display:flex;align-items:center;justify-content:space-between;padding:1.1rem 3rem;background:var(--body-bg);border-bottom:1.5px solid var(--mid)}
.logo{font-size:1.25rem;font-weight:700;color:var(--ink);text-decoration:none;letter-spacing:-.03em}
.logo em{font-style:normal;color:var(--coral)}
.nav-menu{display:flex;align-items:center;gap:2rem;list-style:none}
.nav-menu a{text-decoration:none;font-size:.82rem;font-weight:600;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-mid);transition:color .2s}
.nav-menu a:hover,.nav-menu a.active{color:var(--ink)}
.nav-right{display:flex;align-items:center;gap:1.5rem;list-style:none}
.nav-right a{font-size:.78rem;font-weight:500;color:var(--ink-soft);text-decoration:none;transition:color .2s}
.nav-right a:hover{color:var(--ink)}
.nav-btn{background:var(--coral)!important;color:#fff!important;padding:.6rem 1.4rem!important;border:1.5px solid var(--coral)!important;font-weight:600!important;border-radius:6px;transition:background .18s!important}
.nav-btn:hover{background:var(--ink)!important;border-color:var(--ink)!important}

/* KICKER & TITLES */
.s-kicker{font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--rose-mid);display:flex;align-items:center;gap:.6rem;margin-bottom:.9rem}
.s-kicker::before{content:'';width:22px;height:2px;background:var(--rose-mid)}
.s-kicker.coral{color:var(--coral)}
.s-kicker.coral::before{background:var(--coral)}
h2.s-title{font-size:clamp(2rem,3.5vw,3.2rem);font-weight:700;letter-spacing:-.04em;line-height:1.06;margin-bottom:1.2rem}
h2.s-title em{font-style:normal;font-weight:700;color:inherit}
.s-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3.5rem}
.link-all{display:inline-flex;align-items:center;gap:.5rem;font-size:.92rem;font-weight:700;text-decoration:none;color:var(--ink);border-bottom:2px solid var(--ink);padding-bottom:3px;transition:color .2s,border-color .2s,gap .2s}
.link-all:hover{color:var(--rose-mid);border-color:var(--rose-mid);gap:.8rem}
.link-all svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;gap:.6rem;background:var(--rose-mid);color:#fff;padding:.9rem 2rem;border:1.5px solid var(--border);border-radius:0px;font-family: var(--sans);font-size:.95rem;font-weight:700;text-decoration:none;cursor:pointer;transition:background .18s,box-shadow .2s,transform .15s;box-shadow:0 2px 8px rgba(255,157,184,.3)}
.btn-primary:hover{background:var(--ink);transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,157,184,.4)}
.btn-secondary{display:inline-flex;align-items:center;gap:.6rem;background:transparent;color:var(--ink);padding:.9rem 2rem;border:1.5px solid var(--border);border-radius:0px;font-family: var(--sans);font-size:.95rem;font-weight:600;text-decoration:none;cursor:pointer;transition:all .18s}
.btn-secondary:hover{background:var(--ink);color:#fff;transform:translateY(-1px)}
.btn-white{display:inline-flex;align-items:center;gap:.6rem;background:#fff;color:var(--ink);padding:.9rem 2rem;border:1.5px solid #fff;border-radius:0px;font-family: var(--sans);font-size:.95rem;font-weight:700;text-decoration:none;cursor:pointer;transition:all .18s;box-shadow:0 2px 10px rgba(255,255,255,.2)}
.btn-white:hover{background:var(--rose-mid);color:#fff;border-color:var(--rose-mid);transform:translateY(-2px);box-shadow:0 6px 20px rgba(255,157,184,.4)}

/* ── HERO ── */
.hero{background:var(--hero-bg);padding-top:68px;position:relative;overflow:hidden}
.hero-grid{position:absolute;inset:0;background-image:radial-gradient(circle,rgba(22,22,22,.1) 1.5px,transparent 1.5px);background-size:36px 36px;animation:gridMove 30s linear infinite}
@keyframes gridMove{from{background-position:0 0}to{background-position:36px 36px}}
.hero-inner{position:relative;z-index:2;max-width:1240px;margin:0 auto;padding:5rem 3rem;display:grid;grid-template-columns:1fr 480px;gap:5rem;align-items:end}
.breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:rgba(22,22,22,.45);margin-bottom:2rem}
.breadcrumb a{text-decoration:none;color:inherit}.breadcrumb a:hover{color:var(--ink)}
h1.hero-title{font-size:clamp(3rem,6vw,5.5rem);font-weight:700;letter-spacing:-.05em;line-height:1.0;margin-bottom:1.5rem}
h1.hero-title em{font-style:normal;font-weight:700;color:inherit}
.hero-subtitle{font-size:1.1rem;line-height:1.78;color:var(--ink-mid);max-width:52ch;margin-bottom:2.5rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}

/* Hero right — stat cards */
.hero-stats{display:flex;flex-direction:column;gap:.75rem}
.hero-stat{background:rgba(255,255,255,.7);border:1.5px solid rgba(22,22,22,.2);padding:1.1rem 1.6rem;display:flex;align-items:center;gap:1.4rem;border-radius:10px;transition:background .25s,transform .25s,border-color .25s;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.hero-stat:hover{background:#fff;transform:translateX(4px);border-color:var(--ink);box-shadow:0 6px 20px rgba(0,0,0,.1)}
.hs-num{font-size:2.4rem;font-weight:700;letter-spacing:-.04em;color:var(--ink);line-height:1}
.hs-label{font-size:.82rem;color:var(--ink-mid);line-height:1.4}
.hs-label strong{display:block;font-weight:700;font-size:.9rem;color:var(--ink)}

/* ── APROPOS SECTION ── */
.apropos-section{background:var(--white)}
.apropos-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;border-radius:0}
.apropos-wrap{background:var(--rose);border:1.5px solid var(--border);border-radius:0;padding:1.25rem;border-radius:12px;overflow:hidden}
.apropos-card{background:var(--white);border:1.5px solid var(--border);padding:2.2rem;box-shadow:0 2px 8px rgba(0,0,0,.06);display:flex;flex-direction:column;gap:.6rem;border-radius:0;transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s}
.apropos-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1)}
.apropos-label{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft)}
.apropos-title{font-size:1.05rem;font-weight:700;letter-spacing:-.02em;color:var(--ink)}
.apropos-text{font-size:.92rem;color:var(--ink-mid);line-height:1.75}
.ac-icon{width:44px;height:44px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;margin-bottom:.6rem;flex-shrink:0}

/* ── SERVICES SECTION ── */
.services-section{background:var(--body-bg)}
.services-layout{display:grid;grid-template-columns:240px 1fr;gap:3rem;align-items:start}
.filters-panel{position:sticky;top:100px}
.filters-title{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft);margin-bottom:1.2rem}
.filter-group{margin-bottom:1.5rem}
.filter-group-label{font-size:.78rem;font-weight:700;color:var(--ink);margin-bottom:.6rem}
.filter-item{display:flex;align-items:center;gap:.6rem;padding:.5rem 0;cursor:pointer;border-bottom:1px solid var(--mid);font-size:.88rem;color:var(--ink-mid);transition:color .2s}
.filter-item:last-child{border-bottom:none}
.filter-item:hover{color:var(--ink)}
.filter-checkbox{width:14px;height:14px;border:1.5px solid var(--border);flex-shrink:0;display:flex;align-items:center;justify-content:center;background:transparent;transition:background .15s;border-radius:3px}
.filter-item.checked .filter-checkbox{background:var(--rose-mid);border-color:var(--rose-mid)}
.filter-item.checked .filter-checkbox::after{content:'';width:6px;height:4px;border-left:1.5px solid #fff;border-bottom:1.5px solid #fff;transform:rotate(-45deg) translateY(-1px)}

/* Service cards */
.services-wrap{background:var(--rose-bg);border:1.5px solid var(--border);border-radius:0;padding:1.25rem}
.services-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.service-card{background:var(--white);border:1.5px solid var(--border);border-radius:0;box-shadow:0 2px 8px rgba(0,0,0,.06);overflow:hidden;cursor:pointer;transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s;display:flex;flex-direction:column}
.service-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1)}
.sc-top-bar{height:4px}
.sc-body{padding:1.6rem;display:flex;flex-direction:column;flex:1}
.sc-icon{width:40px;height:40px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;border-radius:0px}
.sc-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.sc-tag{font-size:.68rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:.22rem .65rem;border:1.5px solid transparent;border-radius:20px;margin-bottom:.8rem;display:inline-block;align-self:flex-start}
.sc-title{font-size:1rem;font-weight:700;letter-spacing:-.02em;line-height:1.3;margin-bottom:.5rem;color:var(--ink);transition:color .2s}
.service-card:hover .sc-title{color:var(--rose-mid)}
.sc-desc{font-size:.88rem;color:var(--ink-mid);line-height:1.6;flex:1}

/* ── PROJETS SECTION ── */
.projets-section{background:var(--white)}
.projets-layout{display:grid;grid-template-columns:240px 1fr;gap:3rem;align-items:start}
.projets-filters{position:sticky;top:100px}

/* Projet cards */
.projets-wrap{background:var(--cream-grid);border:1.5px solid var(--border);border-radius:0;padding:1.25rem}
.projets-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.projet-card-item{background:var(--white);border:1.5px solid var(--border);border-radius:0;box-shadow:0 2px 8px rgba(0,0,0,.06);cursor:pointer;transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s;display:flex;flex-direction:column;overflow:hidden;position:relative}
.projet-card-item:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1)}
.pci-color-bar{height:4px;width:100%;flex-shrink:0}
.pci-body{padding:1.6rem;display:flex;flex-direction:column;flex:1}
.pci-meta{display:flex;align-items:center;gap:.5rem;margin-bottom:.7rem;flex-wrap:wrap}
.pci-badge{font-size:.65rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.2rem .65rem;border:1.5px solid transparent;border-radius:20px;display:inline-block}
.pci-year{font-size:.72rem;color:var(--ink-soft);font-weight:500}
.pci-title{font-size:1rem;font-weight:700;line-height:1.35;margin-bottom:.5rem;color:var(--ink);transition:color .2s;letter-spacing:-.02em}
.projet-card-item:hover .pci-title{color:var(--rose-mid)}
.pci-desc{font-size:.88rem;color:var(--ink-mid);line-height:1.6;flex:1;margin-bottom:1rem}
.pci-footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;display:flex;align-items:center;justify-content:space-between;padding-top:.9rem;border-top:1.5px solid var(--mid);margin-top:auto}
.pci-lieu{font-size:.75rem;color:var(--ink-soft);display:flex;align-items:center;gap:.3rem}
.pci-lieu svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2}
.pci-read{display:inline-flex;align-items:center;gap:.35rem;font-size:.8rem;font-weight:700;color:var(--rose-mid);text-decoration:none;transition:gap .2s}
.pci-read:hover{gap:.6rem}
.pci-read svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
/* hide/show by filter */
.projet-card-item.hidden{display:none}

/* ── CLIENTS STRIP ── */
.clients-strip{background:var(--cream);border-top:1.5px solid var(--border);border-bottom:1.5px solid var(--border);padding:5rem 0}
.clients-inner{max-width:1240px;margin:0 auto;padding:0 3rem}
.clients-kicker{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--rose-mid);display:flex;align-items:center;gap:.5rem;margin-bottom:.8rem;justify-content:center}
.clients-kicker::before{content:'';width:18px;height:1.5px;background:var(--rose-mid)}
.clients-kicker::after{content:'';width:18px;height:1.5px;background:var(--rose-mid)}
.clients-title{font-family:var(--display);font-size:clamp(2rem,3.5vw,3rem);font-weight:700;color:var(--ink);text-align:center;margin-bottom:.7rem;letter-spacing:-.04em;line-height:1.05}
.clients-sub{font-size:.95rem;color:var(--ink-mid);text-align:center;margin-bottom:3rem}
.clients-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.client-card{background:rgba(22,22,22,.04);border:1.5px solid var(--border);padding:2rem 1.5rem;display:flex;flex-direction:column;gap:.6rem;border-radius:0px;transition:background .25s,border-color .25s,transform .25s;text-decoration:none;color:inherit}
.client-card:hover{background:#fff;border-color:var(--ink);transform:translateY(-3px);box-shadow:3px 3px 0 rgba(0,0,0,.08)}
.cc-icon{width:100%;height:72px;background:#fff;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;border-radius:4px;margin-bottom:.4rem;padding:.6rem}
.cc-icon img{max-width:100%;max-height:100%;object-fit:contain;display:block}
.cc-name{font-family:var(--display);font-size:1.05rem;font-weight:700;color:var(--ink);line-height:1.3;letter-spacing:-.02em}
.cc-type{font-size:.75rem;color:var(--ink-soft);font-weight:500}
.cc-project{font-size:.82rem;color:var(--ink-mid);line-height:1.5;margin-top:.2rem}

/* ── PROJET STRIP FEATURED ── */
.featured-strip{background:var(--periwinkle-bg);border-top:1.5px solid var(--border);border-bottom:1.5px solid var(--border);color:var(--ink)}
.featured-inner{display:grid;grid-template-columns:1fr 1fr;gap:0}
.featured-col{padding:5rem 3.5rem}
.featured-col:first-child{border-right:1px solid rgba(22,22,22,.1)}
.feat-kicker{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--coral);display:flex;align-items:center;gap:.5rem;margin-bottom:.8rem}
.feat-kicker::before{content:'';width:18px;height:1.5px;background:var(--coral)}
.feat-title{font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:700;color:#fff;margin-bottom:1rem;letter-spacing:-.03em;line-height:1.15}
.feat-title em{font-style:italic;font-weight:300;color:rgba(255,255,255,.55)}
.feat-text{font-size:.95rem;color:rgba(255,255,255,.5);line-height:1.85;margin-bottom:2rem}
.feat-visual{background:rgba(255,255,255,.04);border:1.5px solid rgba(255,255,255,.1);aspect-ratio:16/9;display:flex;align-items:center;justify-content:center;margin-top:2rem;border-radius:10px}
.feat-visual svg{width:48px;height:48px;stroke:rgba(255,255,255,.2);fill:none;stroke-width:1.2}
/* Stats grid inside featured col */
.feat-stats{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:rgba(255,255,255,.08);margin-top:2rem;border:1.5px solid rgba(255,255,255,.08);border-radius:10px;overflow:hidden}
.feat-stat{background:rgba(255,255,255,.03);padding:1.2rem 1.5rem}
.feat-stat-num{font-size:2.2rem;font-weight:700;color:#fff;letter-spacing:-.04em;line-height:1;margin-bottom:.25rem}
.feat-stat-label{font-size:.75rem;color:rgba(255,255,255,.4);font-weight:500;letter-spacing:.04em;text-transform:uppercase}

/* ── CONTACT ── */
.contact-section{background:var(--body-bg)}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:5rem;align-items:start}
.contact-left h2{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;letter-spacing:-.04em;margin-bottom:1rem}
.contact-left p{font-size:1rem;color:var(--ink-mid);line-height:1.78;margin-bottom:2rem}
.contact-info{display:flex;flex-direction:column;gap:.8rem;margin-bottom:2rem}
.ci-row{display:flex;align-items:flex-start;gap:.8rem}
.ci-icon{width:32px;height:32px;background:var(--rose-bg);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;border-radius:0px}
.ci-icon svg{width:14px;height:14px;stroke:var(--rose-mid);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ci-text{font-size:.92rem;color:var(--ink-mid);padding-top:.35rem}
.ci-text strong{display:block;font-weight:700;font-size:.82rem;color:var(--ink-soft);letter-spacing:.07em;text-transform:uppercase;margin-bottom:.15rem}
.contact-card{background:var(--white);border:1.5px solid var(--border);padding:2.5rem;box-shadow:0 4px 16px rgba(0,0,0,.08);border-radius:0px}
.contact-card h3{font-size:1.3rem;font-weight:700;letter-spacing:-.03em;margin-bottom:.5rem}
.contact-card > p{font-size:.92rem;color:var(--ink-mid);margin-bottom:2rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.form-field{width:100%;background:#fff;border:1.5px solid var(--border);padding:.85rem 1rem;border-radius:0px;font-family: var(--sans);font-size:.95rem;color:var(--ink);outline:none;transition:border-color .2s;margin-bottom:.75rem}
.form-field:focus{border-color:var(--rose-mid)}
.form-field::placeholder{color:var(--ink-soft)}
textarea.form-field{resize:vertical;min-height:110px}

/* ── FOOTER ── */
footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding:4.5rem 0 2rem}
.footer-top{display:grid;grid-template-columns:1.8fr 1fr 1fr 1.3fr;gap:3.5rem;margin-bottom:3.5rem;padding-bottom:3.5rem;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .logo{color:rgba(255,255,255,.85);display:block;margin-bottom:1.1rem}
.footer-brand p{font-size:.85rem;line-height:1.75;color:rgba(255,255,255,.35);max-width:28ch;margin-bottom:1.6rem}
.footer-social{display:flex;gap:.6rem}
.social-btn{width:34px;height:34px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .2s;border-radius:0px}
.social-btn:hover{background:var(--rose-mid);border-color:var(--rose-mid)}
.social-btn svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.footer-col h4{font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1.1rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-col ul a{text-decoration:none;font-size:.92rem;color:rgba(255,255,255,.5);transition:color .2s}
.footer-col ul a:hover{color:var(--rose-mid)}
.footer-newsletter input{width:100%;background:rgba(255,255,255,.06);border:1.5px solid rgba(255,255,255,.12);padding:.85rem 1rem;border-radius:0px 0px 0 0;color:#fff;font-family: var(--sans);font-size:.92rem;margin-bottom:.6rem;outline:none;transition:border-color .2s}
.footer-newsletter input::placeholder{color:rgba(255,255,255,.25)}
.footer-newsletter input:focus{border-color:var(--rose-mid)}
.footer-newsletter .btn-nl{width:100%;background:var(--rose-mid);color:#fff;border:1.5px solid var(--rose-mid);padding:.9rem;border-radius:0 0 8px 8px;font-family: var(--sans);font-size:.92rem;font-weight:600;cursor:pointer;transition:background .2s,transform .15s,box-shadow .2s;box-shadow:0 2px 8px rgba(255,157,184,.2)}
.footer-newsletter .btn-nl:hover{background:var(--coral);border-color:var(--coral);transform:translateY(-1px);box-shadow:0 4px 14px rgba(255,157,184,.4)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.footer-copy{font-size:.75rem;color:rgba(255,255,255,.25)}
.footer-legal{display:flex;gap:2rem}
.footer-legal a{font-size:.75rem;color:rgba(255,255,255,.25);text-decoration:none;transition:color .2s}
.footer-legal a:hover{color:rgba(255,255,255,.6)}



/* ── BACK TO TOP ── */
.back-to-top{
  position:fixed;bottom:2rem;right:2rem;
  width:50px;height:50px;
  background:var(--rose-mid);
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:150;
  opacity:0;transform:translateY(14px);
  transition:opacity .3s cubic-bezier(.23,1,.32,1),transform .3s cubic-bezier(.23,1,.32,1),background .18s;
  box-shadow:3px 3px 0 rgba(0,0,0,.12);
  border-radius:0;
}
.back-to-top.visible{opacity:1;transform:translateY(0)}
.back-to-top:hover{background:var(--ink);box-shadow:5px 5px 0 rgba(0,0,0,.15)}
.back-to-top svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.back-to-top:hover svg{transform:translateY(-2px)}

/* ── HERO IMAGE PLACEHOLDER ── */
.hero-img-block{position:relative;aspect-ratio:4/3;overflow:hidden;border-radius:16px}
.hero-img-placeholder{background:rgba(255,255,255,.55);border:1.5px solid rgba(22,22,22,.2);aspect-ratio:4/3;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.9rem;box-shadow:0 4px 20px rgba(0,0,0,.08);border-radius:12px;overflow:hidden}
.hero-img-placeholder svg{width:52px;height:52px;stroke:rgba(22,22,22,.22);fill:none;stroke-width:1.2}
.hero-img-placeholder span{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(22,22,22,.3)}

/* ── STATS TICKER ── */
.stats-ticker{background:#FEECC2;border-top:1.5px solid var(--border);border-bottom:1.5px solid var(--border);padding:0;overflow:hidden;position:relative}
.stats-ticker-track{display:flex;align-items:center;white-space:nowrap;animation:tickerScroll 22s linear infinite}
.stats-ticker-track:hover{animation-play-state:paused}
.ticker-item{display:inline-flex;align-items:center;gap:1.2rem;padding:1.3rem 5rem;flex-shrink:0}
.ticker-num{font-size:2.2rem;font-weight:700;color: #555555;letter-spacing:-.04em;line-height:1}
.ticker-label{font-size:.82rem;font-weight:600;color:#555555;text-transform:uppercase;letter-spacing:.08em;line-height:1.3;max-width:14ch}

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

/* ── ENGAGEMENTS SECTION ── */
.engagements-section{background:var(--body-bg)}
.eng-wrap{background:var(--periwinkle-bg);border:1.5px solid var(--border);border-radius:0;padding:1.25rem}
.eng-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.eng-card{background:var(--white);border:1.5px solid var(--border);border-radius:0;padding:2rem;display:flex;flex-direction:column;gap:.7rem;box-shadow:0 2px 8px rgba(0,0,0,.06);transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s;position:relative;overflow:hidden}
.eng-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:var(--rose-mid);transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.23,1,.32,1)}
.eng-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(0,0,0,.1)}
.eng-card:hover::before{transform:scaleX(1)}
.eng-icon{width:44px;height:44px;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;border-radius:0px;flex-shrink:0}
.eng-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.eng-label{font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-soft)}
.eng-title{font-size:1rem;font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.3}
.eng-text{font-size:.88rem;color:var(--ink-mid);line-height:1.72}
.eng-card-wide{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}

/* ── PROJET CARD PHOTO ── */
.pci-photo{width:100%;aspect-ratio:16/9;background:var(--mid);border-bottom:1.5px solid var(--border);overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center;position:relative}
.pci-photo img{width:100%;height:100%;object-fit:cover;display:block}
.pci-photo-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;width:100%;height:100%}
.pci-photo-placeholder svg{width:32px;height:32px;stroke:var(--ink-soft);fill:none;stroke-width:1.5;opacity:.5}
.pci-photo-placeholder span{font-size:.65rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-soft);opacity:.5}

/* REVEAL */
@keyframes up{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s cubic-bezier(.23,1,.32,1),transform .7s}
.reveal.in{opacity:1;transform:none}
.rd1{transition-delay:.1s}.rd2{transition-delay:.2s}.rd3{transition-delay:.3s}

/* PROJET FILTER TABS */
.proj-tabs{display:flex;gap:.5rem;margin-bottom:1.5rem;flex-wrap:wrap}
.proj-tab{background:transparent;border:1.5px solid var(--mid);border-radius:6px;padding:.55rem 1.2rem;font-family: var(--sans);font-size:.82rem;font-weight:600;color:var(--ink-mid);cursor:pointer;transition:all .18s}
.proj-tab:hover{border-color:var(--ink);color:var(--ink)}
.proj-tab.active{background:var(--ink);color:#fff;border-color:var(--ink)}

/* ── NOTRE ÉQUIPE ── */
.equipe-section{background:var(--white)}
.equipe-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.equipe-card{background:var(--body-bg);border:1.5px solid var(--border);padding:1.6rem 1.2rem;display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:0px;box-shadow:0 2px 8px rgba(0,0,0,.05);transition:transform .25s cubic-bezier(.23,1,.32,1),box-shadow .25s}
.equipe-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.09)}
.eq-avatar{width:72px;height:72px;border-radius:50%;border:2px solid var(--border);background:var(--rose);display:flex;align-items:center;justify-content:center;margin-bottom:1rem;overflow:hidden;flex-shrink:0}
.eq-avatar svg{width:28px;height:28px;stroke:rgba(22,22,22,.4);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.eq-initials{font-size:1.1rem;font-weight:700;color:rgba(22,22,22,.5);letter-spacing:.02em}
.eq-name{font-size:.95rem;font-weight:700;color:var(--ink);letter-spacing:-.02em;margin-bottom:.25rem;line-height:1.25}
.eq-role{font-size:.78rem;color:var(--ink-soft);font-weight:500;line-height:1.4;margin-bottom:.6rem}
.eq-email{font-size:.75rem;color:var(--rose-mid);font-weight:600;text-decoration:none;border-bottom:1px solid transparent;transition:border-color .2s}
.eq-email:hover{border-color:var(--rose-mid)}

/* ══════════════════════════════════════
   HAMBURGER + DRAWER
   ══════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--body-bg);
  border-bottom: 1.5px solid var(--mid);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 190;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .25s cubic-bezier(.23,1,.32,1), opacity .2s;
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.drawer-menu { list-style: none; display: flex; flex-direction: column; gap: 0; }
.drawer-menu a {
  display: block; padding: .85rem 0;
  font-size: 1.05rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--mid);
  text-transform: uppercase; font-size: .88rem;
}
.drawer-menu a.active { color: var(--rose-mid); }
.drawer-divider { height: 1.5px; background: var(--mid); margin: 1rem 0; }
.drawer-secondary { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.drawer-secondary a {
  display: block; padding: .6rem 0;
  font-size: .88rem; font-weight: 500;
  text-decoration: none; color: var(--ink-soft);
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 180;
  backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* ══════════════════════════════════════
   MOBILE — breakpoint principal 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Base */
  body { font-size: 16px; }
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }

  /* Nav */
  nav { padding: .9rem 1.25rem; }
  .nav-menu, .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: block; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.25rem 2.5rem;
  }
  h1.hero-title { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-direction: row; gap: .6rem; overflow-x: auto; padding-bottom: .5rem; }
  .hero-stat {
    min-width: 160px; flex-shrink: 0;
    flex-direction: column; align-items: flex-start;
    gap: .35rem; padding: 1rem 1.1rem;
  }
  .hs-num { font-size: 2rem; }

  /* Section headers */
  .s-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }

  /* À propos */
  .apropos-grid { grid-template-columns: 1fr; }
  .apropos-card:last-child { max-width: 100% !important; }

  /* Domaines d'intervention — 1 colonne */
  .domaines-grid { grid-template-columns: 1fr !important; }
  .domaine-card { flex-direction: row !important; }
  .dom-bar { width: 4px !important; height: auto !important; flex-shrink: 0; }
  .dom-body { padding: 1.2rem 1.4rem; }

  /* Services */
  .services-wrap { padding: .75rem; }
  .services-grid { grid-template-columns: 1fr; }

  /* Projets */
  .projets-wrap { padding: .75rem; }
  .projets-grid { grid-template-columns: 1fr; }

  /* Clients strip */
  .clients-inner { padding: 0 1.25rem; }
  .clients-grid { grid-template-columns: repeat(2,1fr); gap: .75rem; }
  .clients-title { font-size: 1.6rem; }
  .client-card { padding: 1.2rem 1rem; }

  /* Featured strip — DémoMètre */
  .featured-inner { grid-template-columns: 1fr; }
  .featured-col { padding: 2.5rem 1.25rem; }
  .featured-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .feat-title { font-size: 1.6rem; }

  /* Équipe */
  .equipe-grid { grid-template-columns: repeat(2,1fr); gap: .75rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }


  /* Hero image */
  .hero-img-placeholder { aspect-ratio: 16/9; }
  /* Stats ticker — empiler num/label pour éviter le chevauchement */
  .ticker-item { flex-direction: column; align-items: center; padding: .9rem 2.5rem; gap: .15rem; }
  .ticker-num { font-size: 1.5rem; line-height: 1; }
  .ticker-label { font-size: .62rem; max-width: none; white-space: nowrap; text-align: center; line-height: 1.2; }
  /* Engagements */
  .eng-grid { grid-template-columns: 1fr; }
  .eng-card-wide { grid-template-columns: 1fr !important; gap: 1rem !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-legal { flex-direction: column; gap: .6rem; }
  footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding: 3rem 0 2rem; }
}

/* Intermédiaire 769–1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .hero-inner { grid-template-columns: 1fr 360px; gap: 3rem; }
  .apropos-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projets-grid { grid-template-columns: repeat(2,1fr); }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .equipe-grid { grid-template-columns: repeat(3,1fr); }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

::-webkit-scrollbar{width:5px}

/* ── Featured strip: textes pour fond clair ── */
.featured-strip .feat-title{color:var(--ink)}
.featured-strip .feat-title em{color:var(--ink-mid);font-style:normal;font-weight:400}
.featured-strip .feat-text{color:var(--ink-mid)}
.featured-strip .feat-kicker{color:var(--coral)}
.featured-strip .feat-stats{background:rgba(22,22,22,.06);border:1.5px solid rgba(22,22,22,.1)}
.featured-strip .feat-stat{background:rgba(22,22,22,.02)}
.featured-strip .feat-stat-num{color:var(--ink)}
.featured-strip .feat-stat-label{color:var(--ink-soft)}

/* ── EQUIPE WRAP ── */
.equipe-wrap { background:var(--cream-grid); border-radius:12px; padding:1.5rem; border:1.5px solid var(--border); }
.equipe-grid { border-radius:0; }

/* ── BRICOLAGE GROTESQUE titres ── */
h1.hero-title, h2.s-title, h2, h3 {
  font-family: 'Bricolage Grotesque', var(--display), sans-serif;
  font-weight: 700;
}
h2.s-title em, h1.hero-title em, h2 em, h3 em {
  font-style: normal;
  font-weight: 700;
}

/* ── BUTTONS border-radius ── */
.btn-primary, .btn-white, .btn-ghost, .btn-outline-white, .btn-coral {
  border-radius: 6px !important;
}

/* ── CONTACT CARD ── */
.contact-card {
  border-radius: 12px !important;
  background: var(--periwinkle-bg, #e8eeff) !important;
  border: 1.5px solid var(--periwinkle) !important;
}

/* ── PROJET CARD FIXES ── */
.pci-type {
  font-family: 'Bricolage Grotesque', var(--display), sans-serif !important;
  font-weight: 700 !important;
}
.pci-lieu {
  font-size: .92rem !important;
}
/* pci-link as link-all style */
.pci-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: none !important;
  padding-bottom: 0;
  transition: color .2s;
  margin-top: .6rem;
  width: fit-content;
}
.pci-link span {
  border-bottom: 2px solid var(--ink);
  transition: border-color .2s;
}
.pci-link:hover { color: var(--coral); }
.pci-link:hover span { border-bottom-color: var(--coral); }

/* ── BODY TEXT SIZE ── */
.projets-section p, .apropos-section p, .services-section p,
.engagements-section p, .equipe-section p, .contact-section p,
.pci-desc, .pc-desc, .hero-desc, .apropos-card p,
.eng-card p, .service-card p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
}

/* ══════════════════════════════════════════
   PARTICIPATION CITOYENNE - CORRECTIONS
══════════════════════════════════════════ */

/* ── WRAPPER BACKGROUNDS → periwinkle-bg ── */
/* À propos et Services : periwinkle-bg */
.apropos-section .apropos-wrap,
.services-section .services-wrap,
.projets-section .projets-wrap {
  background: var(--periwinkle-bg, #e8eeff) !important;
}
/* Nos engagements, Nos actions, Équipe → inchangés */
.engagements-section .eng-wrap,
.actions-section,
.equipe-section .equipe-wrap {
  /* pas de changement - conserver background actuel */
}

/* ── TEXTE PARAGRAPHES 16px ── */
.apropos-section p,
.services-section p,
.services-section .sc-desc,
.projets-section p,
.engagements-section p,
.demometre-section p,
.contact-section p,
.hero-section p,
.hero-desc,
.apropos-text,
.sc-desc,
.eng-desc,
.pci-desc {
  font-size: 16.8px !important;
  line-height: 1.75 !important;
  color: var(--ink-70);
}

/* ── SOUS-TITRES BRICOLAGE GROTESQUE ── */
/* À propos */
.apropos-title,
/* Services */
.sc-title,
/* Engagements */
.eng-title,
/* Communes / lieux */
.pci-lieu,
.lieu-name,
/* Équipe */
.member-name,
.tm-name,
.equipe-name {
  font-family: 'Bricolage Grotesque', var(--display), sans-serif !important;
  font-weight: 700 !important;
}

/* ── DOMAINES D'INTERVENTION ── */
.domaines-section { padding: 5rem 0; background: var(--body-bg); }
.domaines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.domaine-card { display: flex; flex-direction: column; }
.dom-bar { height: 4px; }
.dom-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.dom-title { font-family: 'Bricolage Grotesque', var(--display), sans-serif !important; font-weight: 700 !important; font-size: 1.1rem; line-height: 1.3; color: var(--ink); }
.dom-text { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.68; }
@media (max-width: 768px) {
  /* Domaines → 1 colonne sur mobile */
  .domaines-grid { grid-template-columns: 1fr; }
  .domaine-card { flex-direction: row; gap: 0; }
  .dom-bar { width: 4px; height: auto; flex-shrink: 0; }
  .dom-body { padding: 1.2rem 1.4rem; }
  /* Sidebar layouts → single column */
  .services-layout,
  .projets-layout { grid-template-columns: 1fr; }
  .filters-panel,
  .projets-filters { position: static; }
}
