    :root {
      --orange: #F97316;
      --dark: #1a1a1a;
      --charcoal: #2d2d2d;
      --orange-hover: #ea6a0a;
      --orange-glow: rgba(249,115,22,0.3);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { height: 100%; overflow-x: hidden; }
    body { background: #fff; font-family: 'Barlow', sans-serif; color: var(--dark); }

    /* ── Intro ── */
    #intro {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 12vh;
      transition: opacity .8s ease, transform .5s ease;
    }
    #intro.fade-out { opacity: 0; transform: scale(1.08); pointer-events: none; }
    .intro-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 12vw, 8rem);
      color: #fff; letter-spacing: 4px;
      opacity: 0; transform: translateY(30px);
      animation: rise .9s ease forwards .3s;
    }
    .intro-divider {
      width: clamp(200px, 50vw, 600px);
      height: 5px;
      background: var(--orange);
      border-radius: 3px;
      margin: 4px auto 8px;
      opacity: 0;
      animation: rise .7s ease forwards .7s;
    }
    .intro-sub {
      color: var(--orange);
      font-size: clamp(.85rem, 2.5vw, 1.2rem);
      letter-spacing: 4px; text-transform: uppercase;
      opacity: 0; transform: translateY(20px);
      animation: rise .8s ease forwards 1s;
    }
    @keyframes rise { to { opacity: 1; transform: translateY(0); } }

    /* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(26,26,26,.96); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-inner {
      max-width: 1280px; margin: 0 auto;
      padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 76px;
    }
    .nav-logo { cursor: pointer; flex-shrink: 0; }
    .nav-logo img { height: 60px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-link {
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,.85); font-family: 'Barlow', sans-serif;
      font-size: .875rem; font-weight: 500; padding: 4px 0;
      position: relative; transition: color .2s;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 2px; background: var(--orange);
      transition: width .3s;
    }
    .nav-link:hover, .nav-link.active { color: #fff; }
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }
    .btn-cta {
      background: var(--orange); color: #fff; border: none; cursor: pointer;
      padding: 10px 22px; border-radius: 10px;
      font-family: 'Barlow', sans-serif; font-size: .875rem; font-weight: 600;
      transition: background .2s, box-shadow .2s;
      animation: pulse-cta 2.5s infinite;
    }
    .btn-cta:hover { background: var(--orange-hover); box-shadow: 0 0 0 6px var(--orange-glow); }
    @keyframes pulse-cta {
      0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
      50% { box-shadow: 0 0 0 6px rgba(249,115,22,.18); }
    }

    /* ── Hamburger ── */
    .hamburger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px; background: #fff;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile Menu ── */
    #mobileMenu {
      position: fixed; inset-y: 0; right: 0; width: 280px;
      background: var(--dark); z-index: 99; padding: 90px 28px 32px;
      transform: translateX(110%); transition: transform .3s ease;
      display: flex; flex-direction: column; gap: 8px;
      border-left: 1px solid rgba(255,255,255,.08);
    }
    #mobileMenu.open { transform: translateX(0); }
    .mob-link {
      background: none; border: none; cursor: pointer;
      color: rgba(255,255,255,.85); font-family: 'Barlow', sans-serif;
      font-size: 1.1rem; font-weight: 500; text-align: left;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
      transition: color .2s;
    }
    .mob-link:hover { color: var(--orange); }

    /* ── Pages ── */
    .page { min-height: 100vh; }
    .page.active { display: block; }
    main { padding-top: 80px; }

    /* ── Nav logo ── */
    .nav-logo img { height: 56px; width: auto; display: block; object-fit: contain; }

    /* ── Hero ── */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 60%, var(--dark) 100%);
      position: relative; overflow: hidden;
      padding: 100px 24px 80px;
    }
    .hero-glow-1 {
      position: absolute; top: 5%; right: 5%; width: 500px; height: 500px;
      background: var(--orange); border-radius: 50%; filter: blur(120px); opacity: .08;
    }
    .hero-glow-2 {
      position: absolute; bottom: -10%; left: -5%; width: 400px; height: 400px;
      background: #fb923c; border-radius: 50%; filter: blur(100px); opacity: .06;
    }
    .hero-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: flex-start;
      position: relative; z-index: 1;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 10vw, 9rem);
      color: #fff; line-height: 1; margin-bottom: 12px;
    }
    .hero-slogan {
      color: var(--orange); font-size: clamp(.95rem, 2vw, 1.15rem);
      font-weight: 500; text-transform: uppercase; letter-spacing: 3px;
      margin-bottom: 20px;
    }
    .hero p {
      color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 540px;
      line-height: 1.7; margin-bottom: 36px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--orange); color: #fff; border: none; cursor: pointer;
      padding: 14px 32px; border-radius: 12px;
      font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 8px 24px rgba(249,115,22,.35);
    }
    .btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,.45); }
    .btn-outline {
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); cursor: pointer;
      padding: 14px 32px; border-radius: 12px;
      font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600;
      transition: border-color .2s, color .2s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

    /* ── Section titles ── */
    .section { max-width: 1280px; margin: 0 auto; padding: 80px 24px; }
    .section-title { text-align: center; margin-bottom: 56px; }
    .section-title h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      color: var(--dark); line-height: 1.05;
    }
    .section-title p { color: #6b7280; font-size: 1.05rem; margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .section-title .bar { width: 64px; height: 3px; background: var(--orange); margin: 14px auto 0; border-radius: 2px; }
    .section-title.light h2 { color: #fff; }
    .section-title.light p { color: rgba(255,255,255,.65); }

    /* ── Cards ── */
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .card {
      background: #fff; border: 1px solid #f0f0f0;
      border-radius: 18px; padding: 28px 24px; text-align: center;
      cursor: pointer; transition: transform .3s, box-shadow .3s;
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    .card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(249,115,22,.14); }
    .card-icon {
      width: 56px; height: 56px; background: rgba(249,115,22,.1);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; font-size: 1.8rem; line-height: 1;
    }
    .card-icon svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    /* Prod card emoji support */
    .prod-card-img {
      height: 180px; background: linear-gradient(135deg, rgba(249,115,22,.18) 0%, #fff8f3 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; line-height: 1; overflow: hidden;
    }
    .prod-card-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      display: block; transition: transform .4s ease;
    }
    .prod-card:hover .prod-card-img img { transform: scale(1.05); }
    .prod-card-img svg { width: 60px; height: 60px; stroke: var(--orange); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
    .card p { color: #6b7280; font-size: .875rem; line-height: 1.55; }

    /* Dark section */
    .dark-section { background: #0f0f0f; padding: 80px 0; }
    .dark-section .card { background: #fff; }

    /* Product card */
    .prod-card {
      background: #fff; border: 1px solid #f0f0f0; border-radius: 18px;
      overflow: hidden; cursor: pointer;
      transition: transform .3s, box-shadow .3s;
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    .prod-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(249,115,22,.14); border-color: rgba(249,115,22,.3); }
    .prod-card-body { padding: 20px; }
    .prod-card-body h3 { font-weight: 600; margin-bottom: 6px; }
    .prod-card-body p { color: #6b7280; font-size: .875rem; }
    .prod-card-body .card-link { display:inline-block; margin-top:10px; font-size:.8rem; font-weight:600; color:var(--orange); opacity:0; transform:translateX(-4px); transition:opacity .2s, transform .2s; }
    .prod-card:hover .card-link { opacity:1; transform:translateX(0); }

    /* Why us */
    .why-item { display: flex; gap: 20px; align-items: flex-start; }
    .why-icon {
      flex-shrink: 0; width: 56px; height: 56px;
      background: var(--orange); border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .why-item h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
    .why-item p { color: #6b7280; font-size: .9rem; line-height: 1.6; }

    /* Atelier */
    .tech-card {
      background: #fff; border: 1px solid #f0f0f0; border-radius: 18px; padding: 28px;
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
      transition: transform .3s, box-shadow .3s;
    }
    .tech-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(249,115,22,.13); }
    .tech-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; background: var(--orange);
      border-radius: 12px; margin-bottom: 16px;
      font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff;
    }
    .tech-badge svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .tech-card h3 { font-weight: 600; font-size: 1.1rem; margin-bottom: 10px; }
    .tech-card p { color: #6b7280; font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
    .check-list li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #555; }
    .check-list li::before { content: ''; display: block; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
    .tech-portfolio-btn {
      display: inline-block; margin-top: 18px;
      background: none; border: none; cursor: pointer;
      color: var(--orange); font-family: 'Barlow', sans-serif;
      font-size: .85rem; font-weight: 700; letter-spacing: .3px;
      padding: 0; transition: letter-spacing .2s, opacity .2s;
    }
    .tech-portfolio-btn:hover { letter-spacing: 1px; opacity: .8; }

    /* Info box */
    .info-box {
      background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.4);
      border-radius: 18px; padding: 32px;
    }
    .info-box h3 { font-weight: 600; font-size: 1.1rem; margin-bottom: 14px; color: var(--dark); }
    .info-box .check-list li { color: var(--dark); }

    /* Devis form */
    .form-card {
      background: #fff; border: 1px solid #eee;
      border-radius: 20px; padding: 40px; box-shadow: 0 4px 30px rgba(0,0,0,.08);
    }
    .form-group { margin-bottom: 18px; }
    label { display: block; font-size: .875rem; font-weight: 500; color: #374151; margin-bottom: 6px; }
    input, textarea {
      width: 100%; border: 1.5px solid #e5e7eb; border-radius: 12px;
      padding: 12px 16px; font-family: 'Barlow', sans-serif; font-size: .95rem;
      outline: none; transition: border-color .2s, box-shadow .2s;
    }
    input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
    textarea { resize: none; }
    .form-submit {
      width: 100%; background: var(--orange); color: #fff; border: none; cursor: pointer;
      padding: 14px; border-radius: 12px;
      font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 600;
      transition: background .2s, transform .2s;
    }
    .form-submit:hover { background: var(--orange-hover); transform: translateY(-1px); }
    .form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .alert { border-radius: 12px; padding: 16px; text-align: center; margin-top: 16px; display: none; }
    .alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
    .alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }

    /* Footer */
    footer {
      background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
      padding: 64px 24px 32px;
    }
    .footer-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
    }
    footer h4 { color: #fff; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
    footer p, footer a { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.7; text-decoration: none; transition: color .2s; }
    footer a:hover { color: var(--orange); }
    .footer-logo { height: 72px; width: auto; margin-bottom: 14px; }
    .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .contact-item svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
    .social-links { display: flex; gap: 10px; }
    .social-btn {
      width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s; text-decoration: none;
    }
    .social-btn:hover { background: var(--orange); }
    .social-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
    .footer-bottom p { color: rgba(255,255,255,.25); font-size: .75rem; }

    /* Section Services */
    .section-hero {
      background: linear-gradient(180deg, var(--dark) 0%, var(--charcoal) 100%);
      padding: 96px 24px 64px; text-align: center;
    }
    .section-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); color: #fff; }
    .section-hero .bar { width: 64px; height: 3px; background: var(--orange); margin: 16px auto 18px; border-radius: 2px; }
    .section-hero p { color: rgba(255,255,255,.65); font-size: 1rem; }

    /* Responsive */
    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .nav-link { font-size: .78rem; }
      .nav-links { gap: 16px; }
    }
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .hero { padding: 60px 20px; }
    }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── Catalogue ── */
    .cat-filters-wrap {
      background: #fff; border-bottom: 1px solid #f0f0f0;
      padding: 12px 24px; position: sticky; top: 76px; z-index: 40;
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .cat-select-bar {
      display: flex; align-items: center; gap: 10px;
    }
    .cat-select-bar + .cat-select-bar {
      padding-left: 14px;
      border-left: 2px solid #f0f0f0;
    }
    .cat-select-bar label { font-weight: 600; font-size: .9rem; color: var(--dark); white-space: nowrap; }
    .cat-select {
      border: 2px solid #e5e7eb; border-radius: 10px;
      padding: 10px 16px; font-family: 'Barlow', sans-serif; font-size: .95rem;
      color: var(--dark); outline: none; cursor: pointer;
      transition: border-color .2s; background: #fff; min-width: 260px;
    }
    .cat-select:focus { border-color: var(--orange); }
    .cat-count { margin-left: auto; font-size: .85rem; color: #9ca3af; white-space: nowrap; }
    .brand-select { border-color: #e96c2a !important; }
    .brand-select:focus { box-shadow: 0 0 0 3px rgba(233,108,42,.2) !important; }
    .cat-right-group { margin-left: auto; display: flex; align-items: center; gap: 12px; }
    .cat-search-bar { flex: 0 0 auto; min-width: 160px; max-width: 220px; }
    .search-input-wrap { position: relative; display: flex; align-items: center; }
    .search-icon { position: absolute; left: 9px; width: 13px; height: 13px; color: #9ca3af; pointer-events: none; flex-shrink: 0; }
    .cat-search-input {
      width: 100%; padding: 6px 28px 6px 28px;
      border: 1.5px solid #e5e7eb; border-radius: 8px;
      font-size: .8rem; color: #374151; outline: none;
      transition: border-color .2s, box-shadow .2s;
      background: #fafafa;
    }
    .cat-search-input:focus { border-color: #e96c2a; box-shadow: 0 0 0 3px rgba(233,108,42,.15); background:#fff; }
    .cat-search-input::placeholder { color: #b0b7c3; }
    .search-clear {
      position: absolute; right: 8px; display: none; align-items: center; justify-content: center;
      width: 20px; height: 20px; border: none; background: #e5e7eb;
      border-radius: 50%; font-size: .7rem; color: #6b7280; cursor: pointer; line-height: 1;
    }
    .search-clear:hover { background: #d1d5db; color: #374151; }
    .subcat-bar { background:#f9fafb; border-bottom:1px solid #eee; padding:10px 24px; display:none; flex-wrap:wrap; gap:8px; align-items:center; position:sticky; top:152px; z-index:39; }
    .subcat-bar.visible { display:flex; }
    .subcat-pill { background:#fff; border:1.5px solid #e5e7eb; border-radius:20px; padding:5px 14px; font-size:.8rem; cursor:pointer; transition:all .2s; }
    .subcat-pill.active { background:var(--orange); border-color:var(--orange); color:#fff; }
    .subcat-pill:hover:not(.active) { border-color:var(--orange); color:var(--orange); }
    .pagination { display:flex; justify-content:center; align-items:center; gap:6px; padding:32px 24px 48px; flex-wrap:wrap; }
    .pag-btn { background:#fff; border:1.5px solid #e5e7eb; border-radius:8px; padding:8px 14px; font-size:.9rem; cursor:pointer; transition:all .2s; font-family:'Barlow',sans-serif; color:var(--dark); }
    .pag-btn:hover { border-color:var(--orange); color:var(--orange); }
    .pag-btn.active { background:var(--orange); border-color:var(--orange); color:#fff; font-weight:600; }
    .pag-dots { padding:0 4px; color:#9ca3af; }

    /* Grille catalogue — cartes épurées */
    .catalogue-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
      padding: 40px 24px 60px; max-width: 1280px; margin: 0 auto;
    }
    .art-card {
      background: #fff; border: 1px solid #f0f0f0; border-radius: 16px;
      overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05);
      cursor: pointer; transition: transform .3s, box-shadow .3s;
      display: flex; flex-direction: column;
    }
    .art-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(249,115,22,.15); }
    .art-img {
      height: 220px; background: #f9fafb; padding: 12px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .art-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .4s; }
    .art-card:hover .art-img img { transform: scale(1.04); }
    .art-info { padding: 14px 16px 18px; }
    .art-sub { font-size: .72rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
    .art-nom { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
    .art-brand { font-size: .72rem; color: #9ca3af; margin-top: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

    /* ── Bloc SEO ── */
    .seo-block {
      background: #f9fafb; border: 1px solid #f0f0f0; border-radius: 16px;
      padding: 36px 40px; max-width: 860px; margin-left: auto; margin-right: auto;
    }
    .seo-block h2 {
      font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.3rem, 3vw, 1.8rem);
      color: var(--dark); margin-bottom: 16px; letter-spacing: 1px;
    }
    .seo-block p { color: #6b7280; font-size: .92rem; line-height: 1.75; margin-bottom: 12px; }
    .seo-block p:last-of-type { margin-bottom: 0; }
    .seo-block strong { color: var(--dark); }

    /* ── Portfolio ── */
    .portfolio-section { max-width: 1100px; margin: 0 auto; }
    .portfolio-section-header {
      display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
    }
    .portfolio-section-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: linear-gradient(135deg, var(--orange), var(--orange-hover));
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .portfolio-section-icon svg { width: 22px; height: 22px; }
    .portfolio-section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: var(--dark); letter-spacing: 1.5px;
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
    }
    .portfolio-item {
      border-radius: 14px; overflow: hidden;
      background: #f3f4f6; border: 1px solid #e5e7eb;
      cursor: zoom-in; transition: transform .3s, box-shadow .3s;
      aspect-ratio: 1 / 1;
    }
    .portfolio-item:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(249,115,22,.18); border-color: rgba(249,115,22,.3); }
    .portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
    .portfolio-item:hover img { transform: scale(1.04); }
    .portfolio-empty {
      grid-column: 1 / -1;
      text-align: center; padding: 60px 24px;
      color: #9ca3af; display: flex; flex-direction: column; align-items: center; gap: 14px;
      border: 2px dashed #e5e7eb; border-radius: 14px;
    }
    .portfolio-empty p { font-size: .95rem; }
    /* Lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,.92); cursor: zoom-out;
      align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img {
      max-width: 92vw; max-height: 88vh;
      border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.6);
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute; top: 20px; right: 28px;
      background: rgba(255,255,255,.12); border: none; color: #fff;
      font-size: 1.4rem; width: 42px; height: 42px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .lightbox-close:hover { background: var(--orange); }

    /* Bouton retour Nos Produits */
    .back-to-produits {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
      border-radius: 20px; cursor: pointer;
      color: rgba(255,255,255,.85); font-family: 'Barlow', sans-serif;
      font-size: .82rem; font-weight: 600; letter-spacing: .4px;
      padding: 6px 14px; transition: background .2s, color .2s, gap .2s;
    }
    .back-to-produits:hover { background: var(--orange); border-color: var(--orange); color: #fff; gap: 8px; }
    .back-to-produits svg { stroke: currentColor; flex-shrink: 0; }

    /* Fiche produit */
    .fiche-wrap {
      display: none; max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px;
    }
    .fiche-wrap.active { display: block; }
    .fiche-back {
      background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px;
      color: var(--orange); font-family: 'Barlow', sans-serif; font-size: .9rem; font-weight: 600;
      margin-bottom: 36px; transition: gap .2s;
    }
    .fiche-back:hover { gap: 12px; }
    .fiche-back svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .fiche-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
    }
    .fiche-img-box {
      background: #f9fafb; border-radius: 20px; padding: 32px;
      display: flex; align-items: center; justify-content: center;
      min-height: 420px; border: 1px solid #f0f0f0;
    }
    .fiche-img-box img { max-width: 100%; max-height: 400px; object-fit: contain; }
    .fiche-content {}
    .fiche-sub { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
    .fiche-nom { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); line-height: 1.05; margin-bottom: 6px; }
    .fiche-ref { font-size: .82rem; color: #9ca3af; margin-bottom: 24px; }
    .fiche-desc { font-size: 1rem; color: #4b5563; line-height: 1.75; margin-bottom: 28px; border-left: 3px solid var(--orange); padding-left: 16px; }
    .fiche-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
    .fiche-meta-row { display: flex; flex-direction: column; gap: 6px; }
    .fiche-meta-label { font-size: .8rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }
    .fiche-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .fiche-tag {
      background: #f3f4f6; border-radius: 6px; padding: 4px 10px;
      font-size: .8rem; color: #374151; font-weight: 500;
    }
    .fiche-btn {
      width: 100%; background: var(--orange); color: #fff; border: none; cursor: pointer;
      padding: 14px; border-radius: 12px;
      font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 700;
      transition: background .2s, transform .2s;
      box-shadow: 0 6px 20px rgba(249,115,22,.3);
    }
    .fiche-btn:hover { background: var(--orange-hover); transform: translateY(-2px); }

    .cat-hero-bar {
      background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
      padding: 28px 24px 36px; text-align: center; position: relative;
    }
    .cat-hero-bar h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,6vw,5rem); color: #fff; }
    .cat-hero-bar .bar { width: 64px; height: 3px; background: var(--orange); margin: 12px auto 14px; border-radius: 2px; }
    .cat-hero-bar p { color: rgba(255,255,255,.65); font-size: .95rem; }
    .cat-empty { text-align: center; padding: 80px 24px; color: #9ca3af; font-size: 1rem; }

    @media (max-width: 1024px) { .catalogue-grid { grid-template-columns: repeat(3, 1fr); } .fiche-inner { grid-template-columns: 1fr; gap: 32px; } }
    @media (max-width: 700px) { .catalogue-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .catalogue-grid { grid-template-columns: 1fr; } .cat-select { min-width: 100%; } }

    /* Cards with top image (expertises) */
    .card-img-top {
      padding: 0;
      overflow: hidden;
      text-align: left;
    }
    .card-top-img {
      width: 100%; height: 160px; overflow: hidden;
      background: #f3f4f6;
    }
    .card-top-img img {
      width: 100%; height: 100%; object-fit: cover; object-position: top;
      display: block; transition: transform .4s ease;
    }
    .card-img-top:hover .card-top-img img { transform: scale(1.06); }
    .card-content {
      padding: 18px 20px 22px;
    }
    .card-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
    .card-content p { color: #6b7280; font-size: .875rem; line-height: 1.55; }

    .cat-voir-btn {
      background: transparent; border: 2px solid var(--orange); color: var(--orange);
      padding: 7px 16px; border-radius: 8px; cursor: pointer;
      font-family: 'Barlow', sans-serif; font-size: .85rem; font-weight: 600;
      transition: background .2s, color .2s; white-space: nowrap;
    }
    .cat-voir-btn:hover { background: var(--orange); color: #fff; }

    /* Product categories */
    .prod-category { margin-bottom: 12px; }
    .prod-category-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 8px; }
    .prod-category-icon {
      flex-shrink: 0; width: 52px; height: 52px;
      background: rgba(249,115,22,.1); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-top: 4px;
    }
    .prod-category-icon svg { width: 28px; height: 28px; }
    .prod-category-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--dark); line-height: 1.1; margin-bottom: 10px;
    }
    .prod-category-seo {
      color: #6b7280; font-size: .9rem; line-height: 1.7;
      max-width: 820px;
    }
    .prod-divider {
      height: 1px; background: #f0f0f0;
      margin: 48px 0; border-radius: 1px;
    }

.page { display: block !important; }
[id^="page-"]:not(.active):not(#page-accueil) { display: none !important; }
#page-accueil { display: block !important; }

/* Footer fix */
footer .footer-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 48px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  align-items: start !important;
}
footer .footer-logo {
  height: 72px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif !important;
}
/* Supprimer le soulignement des liens du menu venant du thème */
nav a, nav a:hover, nav a:focus {
  text-decoration: none !important;
}
/* Fix nav collé en haut */
body > nav,
.wp-site-blocks nav,
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  margin: 0 !important;
}
main { padding-top: 0 !important; margin-top: 0 !important; }
.wp-site-blocks { padding-top: 0 !important; margin-top: 0 !important; }
.hero { margin-top: 0 !important; }
body { padding-top: 0 !important; }
a { text-decoration: none !important; }