:root {
      --rose:     #cd6184;
      --rose-light: #ffecf2;
      --rose-dark: #a04060;
      --vert:     #254117;
      --vert-mid: #97a273;
      --vert-light: #d8e8c8;
      --or:       #ffbd59;
      --creme:    #fdf6ee;
      --texte:    #2a1a20;
      --texte-doux: #6b4a55;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: var(--creme);
      color: var(--texte);
      overflow-x: hidden;
    }

    /* ── MOTIF FLORAL SVG BACKGROUND ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='20' cy='20' r='3' fill='%23cd6184' opacity='.08'/%3E%3Ccircle cx='100' cy='100' r='3' fill='%2397a273' opacity='.08'/%3E%3Ccircle cx='60' cy='10' r='2' fill='%23ffbd59' opacity='.1'/%3E%3Ccircle cx='10' cy='80' r='2' fill='%23cd6184' opacity='.06'/%3E%3Ccircle cx='110' cy='40' r='2' fill='%2397a273' opacity='.06'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV PILLS FLOTTANTES ── */
    nav {
      position: fixed;
      top: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 0.65rem 0.65rem 0.65rem 1.6rem;
      background: rgba(253, 246, 238, 0.96);
      backdrop-filter: blur(12px);
      border-radius: 100px;
      border: 1px solid var(--rose-light);
      box-shadow: 0 4px 24px rgba(205, 97, 132, 0.12);
      z-index: 100;
      white-space: nowrap;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--vert);
      font-style: italic;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: color 0.2s;
      flex-shrink: 0;
    }

    .nav-logo:hover { color: var(--rose); }

    .nav-links {
      display: flex;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--texte-doux);
      padding: 0.5rem 1.1rem;
      border-radius: 100px;
      transition: background 0.2s, color 0.2s;
    }

    .nav-links a:hover { background: var(--rose-light); color: var(--rose); }
    .nav-links a.actif-nav { background: var(--rose); color: white; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 6rem 4rem;
      position: relative;
      gap: 4rem;
    }

    .hero-text { z-index: 1; }

    .hero-tag {
      display: inline-block;
      background: var(--or);
      color: var(--vert);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    .hero-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.05;
      color: var(--vert);
      margin-bottom: 0.5rem;
    }

    .hero-name em {
      font-style: italic;
      color: var(--rose);
    }

    .hero-title {
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--texte-doux);
      margin-bottom: 2rem;
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--texte-doux);
      max-width: 460px;
      margin-bottom: 2.5rem;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--rose);
      color: white;
      text-decoration: none;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: background 0.3s, transform 0.2s;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--vert);
      text-decoration: none;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      border: 1.5px solid var(--vert-mid);
      transition: border-color 0.3s, color 0.3s, transform 0.2s;
    }

    .btn-outline:hover { border-color: var(--vert); color: var(--vert); transform: translateY(-2px); }

    /* HERO VISUAL */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-blob {
      width: 420px;
      height: 420px;
      border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
      background: linear-gradient(135deg, var(--rose-light) 0%, var(--vert-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: morph 8s ease-in-out infinite;
    }

    @keyframes morph {
      0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
      50%       { border-radius: 44% 56% 60% 40% / 52% 38% 62% 48%; }
    }

    .hero-initials {
      font-family: 'Playfair Display', serif;
      font-size: 7rem;
      color: var(--rose);
      opacity: 0.35;
      font-style: italic;
      user-select: none;
    }

    .floating-badge {
      position: absolute;
      background: white;
      border: 1.5px solid var(--rose-light);
      border-radius: 12px;
      padding: 0.6rem 1rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--texte);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(205, 97, 132, 0.1);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--vert-mid);
    }

    .badge-1 { top: 10%; right: -8%; animation: float1 4s ease-in-out infinite; }
    .badge-2 { bottom: 15%; left: -10%; animation: float2 5s ease-in-out infinite; }
    .badge-3 { top: -6%; left: 50%; transform: translateX(-50%); animation: float3 6s ease-in-out infinite; }

    @keyframes float1 {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }
    @keyframes float2 {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(8px); }
    }
    @keyframes float3 {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTIONS COMMUNES ── */
    section { padding: 6rem 6rem; position: relative; z-index: 1; }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--vert);
      margin-bottom: 3rem;
      line-height: 1.2;
    }

    /* ── À PROPOS ── */
    #about {
      background: white;
      border-top: 1px solid var(--rose-light);
      border-bottom: 1px solid var(--rose-light);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about-text p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--texte-doux);
      margin-bottom: 1.2rem;
    }

    .about-text p strong {
      color: var(--vert);
      font-weight: 500;
    }

    .skills-title {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--texte-doux);
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .skills-group { margin-bottom: 2rem; }

    .skills-group-name {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--rose);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }

    .skills-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .skill-tag {
      background: var(--rose-light);
      color: var(--rose-dark);
      font-size: 0.8rem;
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      font-weight: 400;
    }

    .skill-tag.green { background: var(--vert-light); color: var(--vert); }
    .skill-tag.gold  { background: #fff5dc; color: #8a6200; }

    /* ── PROJETS (aperçu index) ── */
    #projects { background: var(--creme); }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .project-card {
      background: white;
      border: 1px solid var(--rose-light);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(205, 97, 132, 0.12);
    }

    .project-thumb {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
    }

    .project-thumb.rose { background: linear-gradient(135deg, var(--rose-light), #f7d0df); }
    .project-thumb.vert { background: linear-gradient(135deg, var(--vert-light), #c8ddb0); }
    .project-thumb.or   { background: linear-gradient(135deg, #fff5dc, #ffe4a0); }

    .project-body { padding: 1.5rem; }

    .project-tag {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--vert-mid);
      margin-bottom: 0.6rem;
    }

    .project-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--vert);
      margin-bottom: 0.6rem;
    }

    .project-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--texte-doux);
      margin-bottom: 1rem;
    }

    .project-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .stack-pill {
      background: var(--creme);
      border: 1px solid var(--rose-light);
      color: var(--texte-doux);
      font-size: 0.72rem;
      padding: 0.2rem 0.65rem;
      border-radius: 100px;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--vert);
      color: white;
    }

    #contact .section-label { color: var(--or); }
    #contact .section-title { color: white; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.7);
      margin-bottom: 2rem;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .contact-link:hover { color: var(--or); }

    .contact-link-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-cv {
      background: white;
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      color: var(--vert);
    }

    .cv-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--rose-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.5rem;
    }

    .cv-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .cv-sub {
      font-size: 0.88rem;
      color: var(--texte-doux);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .btn-cv {
      display: inline-block;
      background: var(--rose);
      color: white;
      text-decoration: none;
      padding: 0.85rem 2rem;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-cv:hover { background: var(--rose-dark); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--vert);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1;
      position: relative;
    }

    footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
    footer span { color: var(--rose); }


    /* ═══════════════════════════════════════════
       PAGE PROJETS — projets.html
    ═══════════════════════════════════════════ */

    /* HERO PAGE PROJETS */
    .projets-hero {
      padding: 10rem 6rem 4rem;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .projets-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      color: var(--vert);
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .projets-hero h1 em { color: var(--rose); font-style: italic; }

    .projets-hero p {
      font-size: 1.05rem;
      color: var(--texte-doux);
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.8;
    }

    /* RETOUR */
    .retour-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: var(--texte-doux);
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
      z-index: 1;
      padding: 6rem 6rem 0;
    }

    .retour-btn:hover { color: var(--rose); }

    /* FILTRES */
    .filtres {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 4rem;
      position: relative;
      z-index: 1;
    }

    .filtre-btn {
      background: white;
      border: 1.5px solid var(--rose-light);
      color: var(--texte-doux);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 0.5rem 1.2rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'DM Sans', sans-serif;
    }

    .filtre-btn:hover,
    .filtre-btn.actif {
      background: var(--rose);
      border-color: var(--rose);
      color: white;
    }

    /* SECTION LISTE */
    .projets-section {
      padding: 0 6rem 6rem;
      position: relative;
      z-index: 1;
    }

    .projets-liste {
      display: flex;
      flex-direction: column;
      gap: 5rem;
    }

    /* CARTE PROJET DÉTAILLÉE */
    .projet-detail {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      background: white;
      border-radius: 24px;
      border: 1px solid var(--rose-light);
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .projet-detail:hover {
      box-shadow: 0 16px 50px rgba(205, 97, 132, 0.1);
    }

    .projet-detail.reverse { direction: rtl; }
    .projet-detail.reverse > * { direction: ltr; }

    /* ZONE MEDIA */
    .projet-media {
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .projet-media.rose-bg { background: linear-gradient(135deg, var(--rose-light), #f7d0df); }
    .projet-media.vert-bg { background: linear-gradient(135deg, var(--vert-light), #c8ddb0); }
    .projet-media.or-bg   { background: linear-gradient(135deg, #fff5dc, #ffe4a0); }

    /* Mockup navigateur */
    .screen-mockup {
      width: 100%;
      max-width: 320px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .screen-bar {
      background: #f0f0f0;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .screen-dot { width: 10px; height: 10px; border-radius: 50%; }
    .screen-dot.rouge  { background: #ff5f57; }
    .screen-dot.jaune  { background: #ffbd2e; }
    .screen-dot.vert-d { background: #28c840; }

    .screen-content {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      background: white;
    }

    /* Pour tes vraies images — décommenter et remplacer screen-content */
    .screen-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Upload placeholder */
    .upload-zone {
      width: 100%;
      max-width: 320px;
      border: 2px dashed rgba(205, 97, 132, 0.3);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      background: rgba(255,255,255,0.6);
    }

    .upload-zone p {
      font-size: 0.78rem;
      color: var(--texte-doux);
      margin: 0.4rem 0 0;
      line-height: 1.5;
    }

    .upload-icon { font-size: 1.6rem; opacity: 0.5; }

    /* Vidéo placeholder */
    .video-placeholder {
      width: 100%;
      max-width: 320px;
      background: rgba(0,0,0,0.07);
      border-radius: 12px;
      height: 170px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .video-placeholder:hover { background: rgba(0,0,0,0.11); }

    .play-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--rose);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
    }

    .video-placeholder p {
      font-size: 0.76rem;
      color: var(--texte-doux);
      margin: 0;
    }

    /* INFOS PROJET */
    .projet-info {
      padding: 3rem 3rem 3rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .projet-detail.reverse .projet-info {
      padding: 3rem 3.5rem 3rem 3rem;
    }

    .projet-numero {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--rose-light);
      line-height: 1;
      margin-bottom: 0.5rem;
      font-style: italic;
    }

    .projet-categorie {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--vert-mid);
      margin-bottom: 0.75rem;
    }

    .projet-titre {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--vert);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .projet-description {
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--texte-doux);
      margin-bottom: 1.5rem;
    }

    .projet-features {
      list-style: none;
      margin-bottom: 1.5rem;
    }

    .projet-features li {
      font-size: 0.88rem;
      color: var(--texte-doux);
      padding: 0.3rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }

    .projet-features li::before {
      content: '✦';
      color: var(--rose);
      font-size: 0.6rem;
      margin-top: 0.3rem;
      flex-shrink: 0;
    }

    .projet-stack-detail {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .stack-tag {
      background: var(--creme);
      border: 1px solid var(--rose-light);
      color: var(--texte-doux);
      font-size: 0.75rem;
      padding: 0.28rem 0.75rem;
      border-radius: 100px;
    }


    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav {
        top: 0.8rem;
        padding: 0.55rem 0.55rem 0.55rem 1.2rem;
        gap: 1rem;
      }
      .nav-links { gap: 2px; }
      .nav-links a { font-size: 0.7rem; padding: 0.45rem 0.8rem; letter-spacing: 0.04em; }

      #hero { grid-template-columns: 1fr; padding: 7rem 2rem 3rem; text-align: center; }
      .hero-visual { display: none; }
      .hero-desc { max-width: 100%; }
      .hero-cta { justify-content: center; }

      section { padding: 4rem 2rem; }
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .projects-grid { grid-template-columns: 1fr; }

      footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }

      /* page projets */
      .projets-hero { padding: 8rem 2rem 3rem; }
      .projets-section { padding: 0 2rem 4rem; }
      .retour-btn { padding: 7rem 2rem 0; }

      .projet-detail,
      .projet-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .projet-detail.reverse .projet-info,
      .projet-info { padding: 2rem 1.5rem; }

      .projet-media { min-height: 280px; }
    }
     /* ── GALERIE SCREENSHOTS ── */
    .screens-galerie {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 340px;
    }
 
    .screen-main {
      width: 100%;
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.06);
    }
 
    .screen-bar {
      background: #f0f0f0;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
 
    .screen-dot { width: 10px; height: 10px; border-radius: 50%; }
    .screen-dot.rouge  { background: #ff5f57; }
    .screen-dot.jaune  { background: #ffbd2e; }
    .screen-dot.vert-d { background: #28c840; }
 
    .screen-main img {
      width: 100%;
      display: block;
      object-fit: cover;
      max-height: 200px;
    }
 
    /* Miniatures secondaires */
    .screen-thumbs {
      display: flex;
      gap: 8px;
    }
 
    .screen-thumb {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 3px 12px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
 
    .screen-thumb:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.14);
    }
 
    .screen-thumb img {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 80px;
    }
 
    /* placeholder quand pas d'image */
    .screen-placeholder {
      width: 100%;
      height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: 2px dashed rgba(205, 97, 132, 0.25);
      border-radius: 12px;
      background: rgba(255,255,255,0.5);
    }
 
    .screen-placeholder span { font-size: 2rem; opacity: 0.4; }
    .screen-placeholder p { font-size: 0.75rem; color: var(--texte-doux); opacity: 0.6; }