/* Styles SPÉCIFIQUES des pages projet (tronc commun → shared.css) */


    /* ── Hero ── */
    .project-hero { position: relative; height: 68vh; min-height: 480px; max-height: 720px; overflow: hidden; background: var(--dark); }
    .project-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .65; }
    .project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(28,26,18,.8) 100%); }
    .project-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 24px 56px; max-width: 1160px; margin: 0 auto; }
    .project-hero-content-inner { max-width: 680px; }
    .project-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
    .project-hero-title { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(32px, 5vw, 58px); line-height: 1.06; color: var(--white); margin-bottom: 24px; }
    .project-hero-meta { display: flex; flex-wrap: wrap; gap: 24px; }
    .phm-item { }
    .phm-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
    .phm-value { font-size: 16px; font-weight: 500; color: var(--white); }

    /* ── Stats bar ── */
    .stats-bar { background: var(--dark); border-top: 1px solid rgba(255,255,255,.07); }
    .stats-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 640px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
    .stat-item { padding: 32px 16px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Jost', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 8px; }
    .stat-label { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

    /* ── Layout ── */
    .project-body { max-width: 1160px; margin: 0 auto; padding: 80px 24px 0; }
    .project-grid { display: grid; gap: 80px; }
    @media (min-width: 900px) { .project-grid { grid-template-columns: 1fr 340px; gap: 80px; } }

    /* ── Main content ── */
    .project-main {}
    .section-kicker { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-kicker::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); margin-bottom: 12px; }
    .section-title { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; color: var(--dark); margin-bottom: 28px; }
    .project-text { font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 32px; }
    .project-text p { margin-bottom: 20px; }
    .project-text p:last-child { margin-bottom: 0; }
    .project-text strong { color: var(--dark); font-weight: 600; }
    .project-section { margin-bottom: 72px; }

    /* ── Avant/Après ── */
    .aa-section { margin-bottom: 72px; }
    .aa-grid { display: grid; gap: 2px; }
    @media (min-width: 640px) { .aa-grid { grid-template-columns: 1fr 1fr; } }
    .aa-item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
    .aa-item img { width: 100%; height: 100%; object-fit: cover; }
    .aa-badge { position: absolute; top: 16px; left: 16px; background: rgba(28,26,18,.75); backdrop-filter: blur(8px); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; }
    .aa-badge.after { background: var(--gold); color: var(--white); }

    /* ── Processus ── */
    .process-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
    .process-item { display: grid; grid-template-columns: 40px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
    .process-item:last-child { border-bottom: none; }
    .process-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-light); border: 1px solid var(--gold-mid); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-size: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .process-content {}
    .process-title { font-weight: 600; font-size: 16px; color: var(--dark); margin-bottom: 6px; }
    .process-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }
    .process-duration { font-size: 12px; color: var(--gold); font-weight: 600; margin-top: 6px; }

    /* ── Sidebar ── */
    .project-sidebar {}
    .sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 2px; padding: 32px; margin-bottom: 24px; }
    .sidebar-card-title { font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 400; margin-bottom: 24px; color: var(--dark); }
    .sidebar-detail { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
    .sidebar-detail:last-child { border-bottom: none; }
    .sidebar-detail-label { color: var(--muted); }
    .sidebar-detail-value { color: var(--dark); font-weight: 600; text-align: right; }
    .sidebar-cta { background: var(--dark); padding: 32px; border-radius: 2px; text-align: center; }
    .sidebar-cta-title { font-family: 'Jost', sans-serif; font-size: 20px; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
    .sidebar-cta-sub { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.5; }
    .sidebar-cta .btn { width: 100%; justify-content: center; }

    /* ── Témoignage ── */
    .testimonial-block { background: var(--light); border-left: 3px solid var(--gold); padding: 28px 28px 28px 32px; margin: 40px 0; }
    .testimonial-text { font-family: 'Jost', sans-serif; font-style: italic; font-size: 18px; line-height: 1.6; color: var(--dark); margin-bottom: 16px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark); }
    .testimonial-stars { font-size: 12px; color: var(--gold); }

    /* ── Autres projets ── */
    .other-projects { padding: 80px 0; background: var(--cream); border-top: 1px solid var(--border); margin-top: 80px; }
    .other-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .other-kicker { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .other-title { font-family: 'Jost', sans-serif; font-size: 28px; font-weight: 400; margin-bottom: 40px; }
    .other-grid { display: grid; gap: 24px; }
    @media (min-width: 640px) { .other-grid { grid-template-columns: repeat(3, 1fr); } }
    .other-card { background: var(--white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: box-shadow 0.3s; }
    .other-card:hover { box-shadow: 0 8px 24px rgba(28,26,18,.07); }
    .other-card-img { aspect-ratio: 4/3; overflow: hidden; }
    .other-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .other-card:hover .other-card-img img { transform: scale(1.03); }
    .other-card-body { padding: 20px; }
    .other-card-title { font-family: 'Jost', sans-serif; font-size: 18px; line-height: 1.3; margin-bottom: 8px; color: var(--dark); }
    .other-card-meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
    .other-card-link { font-size: 14px; font-weight: 600; color: var(--gold); }

    /* ── Scroll reveal ── */
    .rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .rv.visible { opacity: 1; transform: none; }
    .rv-d1 { transition-delay: 0.1s; }
    .rv-d2 { transition-delay: 0.2s; }
    .rv-d3 { transition-delay: 0.3s; }
    @media (max-width: 540px) { .project-body { padding: 56px 16px 0; } }
