
  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  :root {
    --cream: #fdf8f5;
    --rose:  #e8c4b8;
    --blush: #d4978a;
    --deep:  #a05d52;
    --taupe: #7a5e58;
    --dark:  #2a1a17;
    --gold:  #c9a87a;
    --violet: #7b5ea7;
  }
  html, body { height:100%; overflow:hidden; background:var(--cream); font-family:'Jost',sans-serif; color:var(--dark); cursor:none; }
  #home { cursor: url("data:image/svg+xml,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 32 32%27><g transform=%27rotate(-45,16,16)%27><rect x=%2713%27 y=%272%27 width=%276%27 height=%2714%27 rx=%272%27 fill=%27%23c9a87a%27 stroke=%27%238b5e2a%27 stroke-width=%271%27/><polygon points=%2713,16 19,16 16,26%27 fill=%27%23d4b896%27/><line x1=%2716%27 y1=%2726%27 x2=%2716%27 y2=%2731%27 stroke=%27%235c3a18%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/><rect x=%2712%27 y=%278%27 width=%278%27 height=%273%27 rx=%271%27 fill=%27%238b5e2a%27 opacity=%27.5%27/></g></svg>") 4 28, crosshair; }

  /* CURSOR */
  #cur { display:none; }
  #cur-r { display:none; }

  /* PAGES */
  .page { position:fixed; inset:0; transition:opacity .6s ease, transform .6s ease; }
  #detail { opacity:0; pointer-events:none; transform:translateY(24px); }
  #detail.open { opacity:1; pointer-events:all; transform:translateY(0); }

  /* ── HOME ── */
  #home {
    display:flex; flex-direction:row; align-items:center; justify-content:center;
    gap:3.5rem;
    background: radial-gradient(ellipse at 30% 50%, #1e3320 0%, #162414 40%, #0f1a0f 70%, #1a2010 100%);
  }

  .home-logo {
    position:absolute;
    top:4%;
    left:50%;
    transform:translateX(-50%);
    text-align:center; white-space:nowrap;
    z-index:20;
    pointer-events:none;
  }
  .logo-name {
    font-family:'Ruthie',cursive;
    font-size:3rem; font-weight:800; letter-spacing:.08em;
    background: radial-gradient(ellipse at 30% 50%, #4a7a3a 0%, #2d4a1e 45%, #1e3320 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 6px rgba(20,40,15,.45));
    position:relative; z-index:10;
  }
  .logo-sub { display:none; }

  /* ── SIDE COLUMNS ── */
  .side-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
  }
  .side-city-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: .32em;
    text-transform: uppercase;
    /* Dégradé doré lumineux */
    background: linear-gradient(135deg, #f3dda7 0%, #e0bd7d 35%, #c9a87a 65%, #f0d69c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    filter: drop-shadow(0 0 18px rgba(224,189,125,.55))
            drop-shadow(0 0 42px rgba(201,168,122,.32));
    animation: cityGlow 4.5s ease-in-out infinite;
    white-space: nowrap;
  }
  @keyframes cityGlow {
    0%, 100% {
      filter: drop-shadow(0 0 16px rgba(224,189,125,.45))
              drop-shadow(0 0 38px rgba(201,168,122,.26));
    }
    50% {
      filter: drop-shadow(0 0 26px rgba(243,221,167,.75))
              drop-shadow(0 0 60px rgba(224,189,125,.45));
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .side-city-name { animation: none; }
  }
  .side-icon {
    width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
  }
  .side-left .side-icon { max-height: 300px; }
  .side-right .side-icon { max-height: 260px; }

  .hint-bar {
    position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
    display:flex; align-items:center; gap:.8rem;
    font-size:.65rem; letter-spacing:.22em; text-transform:uppercase; opacity:.85;
    background: linear-gradient(90deg, #1a2d1a, #2d4a1e, #1a2d1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space:nowrap;
  }
  .hint-bar::before, .hint-bar::after { content:''; display:block; width:28px; height:1px; background:#2d4a1e; }

  /* PORTRAIT CONTAINER */
  .portrait-wrap {
    position:relative;
    height: min(95vh, 860px);
    aspect-ratio: 3/4;
    user-select:none;
    overflow: visible;
  }

  .portrait-img {
    width:100%; height:100%; object-fit:cover; object-position:center top;
    border-radius:2px;
    filter: saturate(1.05) contrast(1.02);
    display:block;
  }

  /* Soft vignette overlay */
  .portrait-wrap::after {
    content:'';
    position:absolute; inset:0;
    background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(253,242,232,.35) 100%);
    pointer-events:none;
    border-radius:2px;
  }

  /* Watercolour wash frame */
  .portrait-frame {
    position:absolute; inset:-6px;
    border:1px solid rgba(196,144,126,.25);
    border-radius:2px;
    pointer-events:none;
  }
  .portrait-frame::before {
    content:'';
    position:absolute; inset:5px;
    border:1px solid rgba(196,144,126,.12);
    border-radius:1px;
  }

  /* ── HOTSPOTS ── */
  .zone {
    position:absolute;
    cursor:none;
    border-radius:50%;
    transition:all .35s ease;
  }
  .zone::before {
    content:'';
    position:absolute; inset:0;
    border-radius:50%;
    background:rgba(160,93,82,.0);
    transition:background .35s;
  }
  .zone:hover::before { background:rgba(160,93,82,.12); }

  /* Pulse ring on hover */
  .zone::after {
    content:'';
    position:absolute; top:50%; left:50%;
    width:10px; height:10px;
    border:1.5px solid var(--deep);
    border-radius:50%;
    transform:translate(-50%,-50%) scale(0);
    transition:transform .4s, opacity .4s;
    opacity:0;
  }
  .zone:hover::after { transform:translate(-50%,-50%) scale(1); opacity:.8; }

  /* individual zones — positioned as % of image */
  #z-scalp   { top:1%; left:20%; width:55%; height:12%; border-radius:50%; }
  #z-brows   { top:22%; left:55%; width:22%; height:5%; border-radius:30px; }
  #z-eyes    { top:25%; left:16%; width:30%; height:7%; border-radius:30px; }
  #z-lips    { top:44%; left:44%; width:20%; height:5%; border-radius:40px; }
  #z-sein    { top:77%; left:18%; width:54%; height:14%; border-radius:8px; }

  /* TOOLTIP */
  .tooltip {
    position:absolute;
    background:rgba(42,26,23,.82);
    backdrop-filter:blur(8px);
    color:white;
    padding:.55rem 1rem;
    font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
    white-space:nowrap;
    pointer-events:none;
    opacity:0;
    transform:translateY(6px);
    transition:opacity .3s, transform .3s;
    border-left:2px solid var(--blush);
  }
  .zone:hover ~ .tooltip-brows,
  #z-brows:hover ~ .tooltip-brows { opacity:1; transform:translateY(0); }

  /* simpler approach — JS driven tooltips */
  #tooltip {
    position:fixed;
    background:rgba(42,26,23,.84);
    backdrop-filter:blur(10px);
    color:white;
    padding:.6rem 1.1rem;
    font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
    white-space:nowrap;
    pointer-events:none;
    opacity:0;
    transition:opacity .25s;
    border-left:2px solid var(--blush);
    z-index:200;
  }
  #tooltip.show { opacity:1; }

  /* ── DETAIL PAGE ── */
  #detail {
    background:var(--cream);
    display:grid; grid-template-columns:1fr 1fr;
    overflow:hidden;
    cursor:auto;
  }
  /* Rétablit un curseur visible sur la page détail (eye-liner, lèvres, etc.) */
  #detail, #detail * { cursor:auto; }
  #detail a, #detail button, #detail .back-btn, #detail .d-cta,
  #detail [onclick], #detail .d-photo-slot { cursor:pointer; }
  #detail input, #detail textarea { cursor:text; }

  .d-visual {
    position:relative; overflow:hidden;
    min-height:100vh;
    display:flex; align-items:center; justify-content:center;
  }
  .d-visual-bg {
    position:absolute; inset:0;
    background:linear-gradient(160deg, var(--rose) 0%, #f5d8c8 50%, var(--gold) 100%);
  }
  .d-big-icon { font-size:7rem; opacity:.2; position:relative; z-index:1; animation:flt 5s ease-in-out infinite; }
  @keyframes flt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  .d-photos {
    position:absolute; bottom:2.5rem; left:0; right:0;
    display:flex; gap:1.1rem; justify-content:center; padding:0 2rem; z-index:2;
  }
  .d-photos.many {
    flex-wrap:wrap; gap:.7rem; bottom:1.5rem; padding:0 1.5rem;
  }
  .d-photos.many .d-photo-slot { width:112px; height:145px; }
  @media (max-width:768px){
    .d-photos.many .d-photo-slot { width:92px; height:120px; }
  }
  .d-photo-slot {
    width:140px; height:180px; border-radius:10px;
    box-shadow:0 8px 26px rgba(0,0,0,.16);
    background:rgba(255,255,255,.35);
    border:1px solid rgba(255,255,255,.55); backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center;
    font-size:1.6rem; opacity:.65; overflow:hidden;
  }
  .d-photo-slot.has-img { opacity:1; background:none; backdrop-filter:none; }
  .d-photo-slot img { width:100%; height:100%; object-fit:cover; display:block; }
  /* Libellé « Avant » / « Après » posé sur la vignette */
  .d-photo-slot { position:relative; }
  .d-photo-cap {
    position:absolute; left:0; right:0; bottom:0; z-index:2;
    padding:.4rem .5rem;
    font-size:.66rem; letter-spacing:.14em; text-transform:uppercase;
    text-align:center; color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  }
  @media (max-width:768px){ .d-photo-cap { font-size:.55rem; letter-spacing:.08em; } }

  /* ── PHOTO UNIQUE : occupe tout le cadre de gauche ── */
  .d-photos.solo {
    position:absolute; inset:0;
    padding:0; margin:0; gap:0; z-index:1;
    pointer-events:none;
  }
  .d-photos.solo .d-photo-slot {
    width:100%; height:100%;
    border:none; border-radius:0;
    background:none; backdrop-filter:none;
    box-shadow:none; opacity:1;
    cursor:default; pointer-events:none;
  }
  .d-photos.solo .d-photo-slot img {
    width:100%; height:100%; object-fit:cover; object-position:center top;
  }
  /* Sans vignettes, l'icône et le voile de fond n'ont plus lieu d'être */
  #detail.solo-photo .d-big-icon { display:none; }
  #detail.solo-photo .d-visual-bg { display:none; }

  /* ── EYE-LINER : photo unique en grand sur toute la colonne gauche ── */
  #detail.eyeliner .d-big-icon { display:none; }
  #detail.eyeliner .d-visual-bg { display:none; }
  #detail.eyeliner .d-photos {
    position:absolute; inset:0; bottom:0; left:0; right:0;
    padding:0; margin:0; gap:0; z-index:1;
  }
  #detail.eyeliner .d-photo-slot {
    width:100%; height:100%;
    border:none; border-radius:0;
    background:none; backdrop-filter:none;
    opacity:1;
  }
  #detail.eyeliner .d-photo-slot img {
    width:100%; height:100%; object-fit:cover; object-position:center;
  }
  /* On n'affiche que la première vignette (la photo de l'œil) */
  #detail.eyeliner .d-photo-slot:not(:first-child) { display:none; }

  /* Le titre est désormais en haut à gauche sur le visuel :
     on masque uniquement le doublon (tag + titre) dans la colonne texte.
     Le trait .d-line est conservé : c'est un séparateur décoratif,
     pas un doublon. */
  #detail .d-tag,
  #detail .d-title { display:none; }
  /* Sans titre au-dessus, le trait a besoin d'un peu d'air */
  #detail .d-line { margin-top:.5rem; }

  .d-content {
    padding:5rem 4rem;
    display:flex; flex-direction:column;
    /* Alignement en haut + défilement : si le contenu dépasse la hauteur
       de l'écran, rien n'est coupé. (Un centrage vertical tronquait le
       début du texte, inatteignable au scroll.) */
    justify-content:flex-start;
    height:100vh;
    overflow-y:auto;
  }

  .back-btn {
    display:inline-flex; align-items:center; gap:.6rem;
    font-size:.7rem; letter-spacing:.18em; text-transform:uppercase;
    color:var(--taupe); text-decoration:none; cursor:none;
    transition:color .3s;
    border:none;
    position:sticky; top:-5rem; z-index:20;
    margin:-5rem -4rem 3rem -4rem;
    padding:5rem 4rem 1.2rem 4rem;
    width:auto;
    background:var(--cream);
  }
  .back-btn:hover { color:var(--deep); }
  .back-btn::before { content:'←'; font-size:1.1rem; }

  .d-tag { font-size:.68rem; letter-spacing:.3em; text-transform:uppercase; color:var(--deep); margin-bottom:1.2rem; }
  .d-title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2rem,3.8vw,3.2rem); font-weight:300; line-height:1.1; color:var(--dark); margin-bottom:2rem;
  }
  .d-title em { font-style:italic; color:var(--deep); }
  .d-line { width:40px; height:1px; background:var(--blush); margin-bottom:2rem; }
  .d-desc { font-size:.88rem; line-height:1.95; color:var(--taupe); margin-bottom:2rem; }

  .d-steps { display:flex; flex-direction:column; gap:.9rem; margin-bottom:2.5rem; }
  .step {
    display:flex; gap:1rem; align-items:flex-start;
    padding:.9rem 1rem; background:rgba(232,196,184,.14);
    border-left:2px solid var(--blush);
  }
  .step-n { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--deep); font-weight:300; line-height:1; }
  .step-t { font-size:.82rem; line-height:1.75; color:var(--taupe); }
  .step-t strong { color:var(--dark); font-weight:500; display:block; margin-bottom:.15rem; }

  /* ── BLOC VIDÉO (fiche Ariane) ── */
  .d-video { display:none; margin:0 0 2.5rem; }
  #detail.has-video .d-video { display:block; }
  /* Vignette cliquable qui ouvre la vidéo sur YouTube */
  .d-video-grid {
    display:grid; grid-template-columns:repeat(2,1fr); gap:1rem;
  }
  .d-video-thumb {
    position:relative; display:block; width:100%; padding-bottom:150%;
    border-radius:14px; overflow:hidden; text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    background:#e9e2dd; cursor:pointer;
  }
  .d-video-thumb.is-soon { cursor:default; }
  .d-video-thumb img {
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; display:block;
    transition:transform .6s cubic-bezier(.2,.7,.3,1), filter .4s ease;
  }
  .d-video-thumb::after {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.35));
    transition:background .4s ease;
  }
  .d-video-thumb:hover img { transform:scale(1.04); }
  .d-video-thumb:hover::after { background:linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.45)); }
  .d-video-play {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:58px; height:58px; border-radius:50%; z-index:2;
    background:rgba(255,255,255,.92);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 24px rgba(0,0,0,.25);
    transition:transform .35s cubic-bezier(.2,.7,.3,1), background .3s ease;
  }
  .d-video-thumb:hover .d-video-play { transform:translate(-50%,-50%) scale(1.09); background:#fff; }
  .d-video-play svg { width:21px; height:21px; margin-left:3px; fill:var(--deep,#4a3b38); }
  .d-video-label {
    position:absolute; left:0; right:0; bottom:0; z-index:2;
    padding:.9rem 1rem; color:#fff;
    font-size:.82rem; line-height:1.35; letter-spacing:.03em;
  }
  @media (max-width:768px){
    .d-video-grid { gap:.7rem; }
    .d-video-play { width:46px; height:46px; }
    .d-video-play svg { width:17px; height:17px; }
    .d-video-label { font-size:.7rem; padding:.7rem .75rem; }
  }
  .d-video-title {
    display:flex; align-items:center; gap:.9rem;
    font-family:var(--serif,'Cormorant Garamond',serif);
    font-size:1.35rem; letter-spacing:.02em;
    margin-bottom:1.1rem; color:var(--deep,#4a3b38);
  }
  .d-video-title::after { content:''; flex:1; height:1px; background:var(--blush); opacity:.5; }
  .d-video-player video { width:100%; display:block; border-radius:4px; background:#000; }
  .d-video-missing { padding:2rem; text-align:center; font-size:.72rem; letter-spacing:.12em;
    text-transform:uppercase; color:var(--taupe); border:1px solid var(--rose); border-radius:4px; }

  /* ── MOBILE : les photos passent en flux normal sous le titre ──
     En absolu dans un panneau de 38vh, elles chevauchaient le titre
     et se faisaient couper par overflow:hidden. */
  @media (max-width: 768px) {
    .d-visual {
      min-height: auto !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      padding: 4.5rem 1rem 1.5rem !important;
      overflow: visible !important;
    }
    .d-photos {
      position: static !important;
      bottom: auto !important;
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: .6rem !important;
      padding: 1.5rem .4rem 0 !important;
    }
    .d-photo-slot,
    .d-photos.many .d-photo-slot {
      width: calc(50% - .35rem) !important;
      height: 165px !important;
    }
    #detail:has(.d-photos.many) .d-visual { min-height: auto !important; }
  }
  .d-video-frame {
    position:relative; width:100%; padding-bottom:56.25%;
    border-radius:14px; overflow:hidden;
    background:rgba(0,0,0,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.10);
  }
  .d-video-frame iframe {
    position:absolute; inset:0; width:100%; height:100%; border:0; display:block;
  }
  .d-video-note {
    margin-top:.7rem; font-size:.78rem; opacity:.6; line-height:1.5;
  }
  @media (max-width:768px){ .d-video-title { font-size:1.15rem; } }

  .d-prices { margin-bottom:2.5rem; }
  .d-prices-title {
    font-size:.62rem; letter-spacing:.3em; text-transform:uppercase;
    color:var(--deep); margin-bottom:1rem; display:flex; align-items:center; gap:.6rem;
  }
  .d-prices-title::after { content:''; flex:1; height:1px; background:var(--blush); opacity:.5; }
  .d-price-row {
    display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
    padding:.55rem 0; border-bottom:1px dotted rgba(122,94,88,.28);
    font-size:.82rem; color:var(--taupe);
  }
  .d-price-row:last-child { border-bottom:none; }
  .d-price-label { line-height:1.4; }
  .d-price-value { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:var(--deep); white-space:nowrap; font-weight:400; }
  .d-price-note { font-size:.66rem; color:var(--taupe); opacity:.75; margin-top:.9rem; font-style:italic; line-height:1.6; }

  .d-cta {
    display:inline-block; padding:.95rem 2.4rem;
    background:var(--deep); color:white;
    font-size:.74rem; letter-spacing:.2em; text-transform:uppercase;
    text-decoration:none; cursor:none; width:fit-content;
    transition:background .3s;
    border:none;
  }
  .d-cta:hover { background:var(--dark); }

  @media(max-width:720px){
    /* Une seule colonne : c'est le conteneur qui défile, pas les colonnes */
    #detail { grid-template-columns:1fr; overflow-y:auto; }
    .d-visual { min-height:40vh; }
    #detail.eyeliner .d-visual { min-height:52vh; }
    #detail.solo-photo .d-visual { min-height:56vh; }
    .d-content { padding:3rem 2rem; height:auto; overflow:visible; }
    .back-btn {
      top:0;
      margin:-3rem -2rem 2rem -2rem;
      padding:1.1rem 2rem 1.1rem 2rem;
    }
  }

  /* ── FLOATING LABELS ── */
  .zone-label {
    position:absolute;
    pointer-events:none;
    display:flex;
    align-items:center;
    gap:.5rem;
    z-index:10;
  }
  .zone-label .label-line {
    height:1px;
    background:#8b5e2a;
    opacity:.7;
    transition:opacity .3s, background .3s;
  }
  .zone-label .label-text {
    font-family:'Jost',sans-serif;
    font-size:.58rem;
    letter-spacing:.28em;
    text-transform:uppercase;
    background: radial-gradient(ellipse at 30% 40%, #c4954a 0%, #8b5e2a 50%, #5c3a18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity:.9;
    transition:opacity .3s;
    white-space:nowrap;
  }
  /* Label positions */
  #lbl-brows  { top:20%; right:4%; flex-direction:row-reverse; display:none; }
  #lbl-brows .label-line { width:28px; }
  #lbl-eyes   { top:25%; left:4%; }
  #lbl-eyes .label-line { width:22px; }
  #lbl-lips   { top:53%; left:4%; }
  #lbl-lips .label-line { width:22px; }
  #lbl-sein   { top:80%; right:4%; flex-direction:row-reverse; }
  #lbl-sein .label-line { width:28px; }

  /* hover: label s illumine — géré en JS */
  .zone-label.active .label-text { opacity:1; filter:brightness(1.3); }
  .zone-label.active .label-line  { opacity:1; background:var(--deep); }

  /* ── CERCLES PHOTOS D'ARIANE ── */
  .photo-circle {
    position:absolute;
    border-radius:50%;
    overflow:hidden;
    border:2px solid var(--gold);
    box-shadow:0 4px 18px rgba(0,0,0,.45), 0 0 0 4px rgba(253,242,232,.15);
    background:#1a2d1a;
    z-index:15;
    transition:transform .4s ease, box-shadow .4s ease;
    cursor:pointer;
  }
  .photo-circle:hover {
    transform:scale(1.06);
    box-shadow:0 6px 26px rgba(0,0,0,.55), 0 0 0 5px rgba(201,168,122,.35);
  }
  .photo-circle img {
    width:100%; height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }
  /* Placeholder quand pas encore de photo */
  .photo-circle.empty {
    display:flex; align-items:center; justify-content:center;
    color:var(--gold); font-size:1.6rem;
  }
  .photo-circle.empty::after { content:'📷'; }

  /* ── COLONNES DE CERCLES : gauche & droite de la page ── */
  .circle-col {
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1.1rem;
    z-index:40;
  }
  .circle-col-left  { left:1.6rem; }
  .circle-col-right { right:1.6rem; }

  /* Les cercles dans les colonnes sont en flux (pas absolus) */
  .circle-col .photo-circle { position:relative; }

  /* Tailles décroissantes : de la plus grande à la plus petite */
  .circle-col .photo-circle:nth-child(1) { width:132px; height:132px; }
  .circle-col .photo-circle:nth-child(2) { width:108px; height:108px; }
  .circle-col .photo-circle:nth-child(3) { width:88px;  height:88px;  }

  /* ── SMILE SVG OVERLAY ── */
  #smile-svg {
    position:absolute;
    top:0; left:0; width:100%; height:100%;
    pointer-events:none;
    overflow:visible;
    z-index:5;
  }
  #smile-path {
    fill:none;
    stroke:var(--gold);
    stroke-width:2.5;
    stroke-linecap:round;
    opacity:0;
    stroke-dasharray:120;
    stroke-dashoffset:120;
    transition:opacity .2s;
    filter:drop-shadow(0 0 4px rgba(201,168,122,.55));
  }
  #smile-svg.active #smile-path {
    opacity:1;
    animation:drawSmile .55s cubic-bezier(.4,0,.2,1) forwards;
  }
  @keyframes drawSmile {
    0%   { stroke-dashoffset:120; }
    100% { stroke-dashoffset:0; }
  }

  /* small sparkles near lips on hover */
  .sparkle {
    position:absolute;
    width:4px; height:4px;
    background:var(--gold);
    border-radius:50%;
    pointer-events:none;
    opacity:0;
    z-index:6;
    transition:opacity .2s;
  }
  .sparkle.active { animation:sparkPop .5s ease forwards; }
  #sp1 { top:56%; left:42%; animation-delay:.1s !important; }
  #sp2 { top:55%; left:58%; animation-delay:.2s !important; }
  #sp3 { top:60%; left:50%; animation-delay:.3s !important; }
  @keyframes sparkPop {
    0%   { opacity:0; transform:scale(0); }
    50%  { opacity:.9; transform:scale(1.4); }
    100% { opacity:0; transform:scale(0.8) translateY(-6px); }
  }

  /* ── WINK SVG OVERLAY ── */
  #wink-svg {
    position:absolute;
    top:0; left:0; width:100%; height:100%;
    pointer-events:none;
    overflow:visible;
    z-index:5;
  }

  /* Left eye wink — ellipse that closes */
  .wink-eye {
    fill: none;
    stroke: var(--deep);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity .2s;
    filter: drop-shadow(0 0 3px rgba(160,93,82,.4));
  }
  .wink-lash {
    fill: none;
    stroke: var(--deep);
    stroke-width: 1.5;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity .2s;
  }
  .wink-line {
    fill: none;
    stroke: var(--deep);
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: opacity .2s;
  }

  #wink-svg.active .wink-eye  { opacity: 1; }
  #wink-svg.active .wink-lash { opacity: 1; }
  #wink-svg.active .wink-line {
    opacity: 1;
    animation: drawWinkLine .3s ease forwards;
  }
  #wink-svg.active .eye-open  {
    animation: winkBlink .6s ease .15s forwards;
  }

  @keyframes drawWinkLine {
    0%   { stroke-dashoffset: 40; }
    100% { stroke-dashoffset: 0; }
  }

  @keyframes winkBlink {
    0%   { transform: scaleY(1);   transform-origin: center; }
    30%  { transform: scaleY(0.05); transform-origin: center; }
    60%  { transform: scaleY(1);   transform-origin: center; }
    80%  { transform: scaleY(0.05); transform-origin: center; }
    100% { transform: scaleY(1);   transform-origin: center; }
  }

  .eye-group {
    transform-box: fill-box;
    transform-origin: center;
  }

  /* ── EYELID SVG ANIMATION ── */
  #eyelid-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 6;
  }

  .lid-shape {
    opacity: 0;
  }
  .lid-lash {
    opacity: 0;
    stroke: #3a1a10;
    stroke-width: 1;
    stroke-linecap: round;
    fill: none;
  }

  .lid-shape.winking {
    opacity: 1;
    animation: lidClose .75s cubic-bezier(.4,0,.2,1) forwards;
  }
  .lid-lash.winking {
    opacity: 1;
    animation: lashAppear .75s ease forwards;
  }

  @keyframes lidClose {
    0%   { clip-path: inset(0 0 100% 0); opacity:1; }
    30%  { clip-path: inset(0 0 0% 0);   opacity:1; }
    55%  { clip-path: inset(0 0 0% 0);   opacity:1; }
    85%  { clip-path: inset(0 0 100% 0); opacity:1; }
    100% { clip-path: inset(0 0 100% 0); opacity:0; }
  }

  @keyframes lashAppear {
    0%,85% { opacity:1; }
    100%   { opacity:0; }
  }

  /* ── IRIS SPARKLE ── */
  .iris-sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 7;
    opacity: 0;
    font-size: 1rem;
    transform: scale(0) rotate(0deg);
    transition: opacity .2s;
  }
  /* Position on her eyes - left eye */
  #iris-left {
    top: 30%;
    left: 44%;
    color: #c9a87a;
    text-shadow: 0 0 6px rgba(201,168,122,.9);
  }
  /* Right eye */
  #iris-right {
    top: 30%;
    left: 65%;
    color: #c9a87a;
    text-shadow: 0 0 6px rgba(201,168,122,.9);
  }
  .iris-sparkle.sparkling {
    animation: irisGlow .8s ease forwards;
  }
  @keyframes irisGlow {
    0%   { opacity:0; transform: scale(0) rotate(0deg); }
    30%  { opacity:1; transform: scale(1.3) rotate(15deg); }
    60%  { opacity:.8; transform: scale(1) rotate(-10deg); }
    80%  { opacity:1; transform: scale(1.2) rotate(5deg); }
    100% { opacity:0; transform: scale(0) rotate(0deg); }
  }

  /* ── LIPS SHIMMER ── */
  /* Shimmer dots */
  .lip-shimmer {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 6;
    font-size: .7rem;
    color: #fff8e0;
    text-shadow:
      0 0 4px #ffd700,
      0 0 10px #ffd700,
      0 0 20px rgba(255,215,0,.8),
      0 0 30px rgba(255,200,0,.5);
  }
  #lsh1 { top: 43%; left: 50%; }
  #lsh2 { top: 42%; left: 56%; }
  #lsh3 { top: 43%; left: 62%; }
  #lsh4 { top: 42%; left: 68%; }
  #lsh5 { top: 44%; left: 54%; }
  #lsh6 { top: 43%; left: 60%; }
  .lip-shimmer.glowing {
    animation: shimmerPulse 1.2s ease forwards;
  }
  #lsh2.glowing { animation-delay: .15s; }
  #lsh3.glowing { animation-delay: .3s; }
  #lsh4.glowing { animation-delay: .45s; }
  #lsh5.glowing { animation-delay: .2s; }
  #lsh6.glowing { animation-delay: .35s; }
  @keyframes shimmerPulse {
    0%   { opacity:0; transform: scale(0) rotate(0deg); }
    25%  { opacity:1; transform: scale(1.3) rotate(15deg); }
    60%  { opacity:.9; transform: scale(1) rotate(-10deg); }
    80%  { opacity:1; transform: scale(1.2) rotate(5deg); }
    100% { opacity:0; transform: scale(0) rotate(20deg); }
  }

  /* ── GRAIN DE BEAUTÉ ── */
  #beauty-mark {
    position: absolute;
    top: 43%;
    left: 58%;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #5a3527, #34150a);
    opacity: .72;
    box-shadow: 0 0 2px rgba(0,0,0,.28);
    cursor: none;
    z-index: 20;
    transition: transform .3s ease, opacity .3s ease;
  }
  #beauty-mark::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px; right: -16px; bottom: -16px;
    border-radius: 50%;
  }
  #beauty-mark:hover {
    transform: scale(1.5);
    opacity: .9;
  }

  /* ── SEIN HEART ── */
  #sein-heart {
    position: absolute;
    top: 74%;
    left: 35%;
    pointer-events: none;
    opacity: 0;
    z-index: 8;
    font-size: 1rem;
    color: #e8a0b0;
    text-shadow: 0 0 8px rgba(232,100,130,.6), 0 0 16px rgba(232,100,130,.3);
  }
  #sein-heart.flying {
    animation: heartRise 1.2s cubic-bezier(.2,0,.3,1) forwards;
  }
  @keyframes heartRise {
    0%   { opacity:0; transform: scale(0) translateY(0); }
    20%  { opacity:1; transform: scale(1.1) translateY(-5px); }
    70%  { opacity:.8; transform: scale(1) translateY(-30px); }
    100% { opacity:0; transform: scale(.7) translateY(-55px); }
  }

  /* Octobre rose ribbon */
  #octobre-rose {
    position: absolute;
    top: 78%;
    left: 22%;
    pointer-events: none;
    opacity: 0;
    z-index: 8;
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    color: #ff1a6e;
    text-shadow: 0 0 10px #ff1a6e, 0 0 20px rgba(255,26,110,.7), 0 0 40px rgba(255,26,110,.4);
    transition: opacity .4s;
  }
  #z-sein:hover ~ #octobre-rose { opacity: 1; }

  /* ── CITY LABELS ── */
  .city-label {
    font-family: 'Jost', sans-serif;
    font-size: .58rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    background: radial-gradient(ellipse at 30% 40%, #c4954a 0%, #8b5e2a 50%, #5c3a18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .85;
    display: flex;
    align-items: center;
    gap: .4rem;
  }
  /* Les noms de villes sont maintenant les grands titres dorés.
     On neutralise les anciennes pastilles et on garde un curseur visible. */
  #city-paris, #city-palma {
    cursor: pointer;
    margin: 0;
  }
  #city-paris::before, #city-palma::after { content: none; }

  /* ── MAP POPUPS ── */
  .map-popup {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }
  .map-popup.visible {
    opacity: 1;
    pointer-events: all;
  }
  #map-paris {
    left: 0;
    bottom: 3.5rem;
    top: auto;
    transform: none;
    width: 9rem;
  }
  #map-palma {
    right: 0;
    bottom: 3.5rem;
    top: auto;
    transform: none;
    width: 9rem;
  }
  .map-popup .map-frame {
    width: 100%;
    height: 7rem;
    border: 2px solid #8b5e2a;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
  }
  .map-popup .map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(.8) contrast(1.1);
  }
  .map-popup .map-address {
    font-family: 'Jost', sans-serif;
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c4954a;
    text-align: center;
    line-height: 1.6;
  }
  .map-popup .map-clinic {
    font-family: 'Jost', sans-serif;
    font-size: .55rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #e8c88a;
    text-align: center;
    font-weight: 600;
  }
  .city-label { cursor: none; transition: opacity .3s; }
  .city-label:hover { opacity: 1; }

  /* ── MAP EXPAND ── */
  .mini-map {
    width: 38px; height: 38px;
    position: relative;
    cursor: pointer !important;
    border: 1.5px solid #8b5e2a;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    cursor: none;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    flex-shrink: 0;
  }
  .mini-map.expanded {
    width: 220px;
    height: 160px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    z-index: 20;
  }
  .mini-map iframe {
    width: 100%; height: 100%;
    border: none;
    filter: saturate(.7) contrast(1.1) brightness(.85);
    pointer-events: none;
  }
  .mini-map.expanded iframe {
    pointer-events: all;
    filter: saturate(.9) contrast(1.05) brightness(.9);
  }

  .mini-map .map-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15,26,15,.92);
    backdrop-filter: blur(8px);
    border: 1px solid #8b5e2a;
    border-radius: 4px;
    padding: .4rem .7rem;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
    font-size: .48rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c4954a;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 30;
  }
  .mini-map .map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #8b5e2a;
  }
  .mini-map .map-tooltip.show { opacity: 1; }

  /* ── CONTACT BUTTON ── */
  #btn-contact {
    position: fixed;
    bottom: 5rem;
    right: .3rem;
    z-index: 100;
    background: linear-gradient(135deg, #1e3320, #2d4a1e);
    border: 1px solid #8b5e2a;
    color: #c4954a;
    font-family: 'Jost', sans-serif;
    font-size: .48rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: .45rem .9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
  }
  #btn-contact:hover {
    background: linear-gradient(135deg, #2d4a1e, #3a6b35);
    box-shadow: 0 6px 24px rgba(0,0,0,.4);
    color: #e8c88a;
  }

  /* ── BOUTON MAQUETTE / PROCÉDÉ ── */
  #btn-procede {
    position: fixed;
    bottom: 8rem;
    right: .3rem;
    z-index: 100;
    background: linear-gradient(135deg, #1e3320, #2d4a1e);
    border: 1px solid #8b5e2a;
    color: #c4954a;
    font-family: 'Jost', sans-serif;
    font-size: .48rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: .45rem .9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
  }
  #btn-procede:hover {
    background: linear-gradient(135deg, #2d4a1e, #3a6b35);
    box-shadow: 0 6px 24px rgba(0,0,0,.4);
    color: #e8c88a;
  }

  /* ── OVERLAY PROCÉDÉ / MAQUETTE ── */
  #procede-overlay {
    position: fixed; inset: 0;
    background: rgba(10,18,10,.9);
    backdrop-filter: blur(12px);
    z-index: 210;
    display: flex; align-items: flex-start; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .4s ease;
    overflow-y: auto;
    padding: 3rem 1rem;
  }
  #procede-overlay.open { opacity: 1; pointer-events: all; }
  #procede-card {
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: 4px;
    width: min(760px, 94vw);
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    padding: 3.2rem clamp(1.4rem,4vw,3.4rem);
    margin: auto;
  }
  #btn-close-procede {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none;
    font-size: 1.8rem; line-height: 1; color: var(--taupe);
    cursor: pointer; transition: color .3s;
  }
  #btn-close-procede:hover { color: var(--deep); }
  .proc-tag { font-size:.64rem; letter-spacing:.34em; text-transform:uppercase; color:var(--deep); margin-bottom:1rem; }
  .proc-title {
    font-family:'Cormorant Garamond',serif; font-weight:300;
    font-size:clamp(1.9rem,4.4vw,2.8rem); line-height:1.12; color:var(--dark); margin-bottom:.4rem;
  }
  .proc-title em { font-style:italic; color:var(--deep); }
  .proc-sub { font-size:.8rem; letter-spacing:.06em; color:var(--taupe); margin-bottom:1.8rem; }
  .proc-line { width:44px; height:1px; background:var(--blush); margin:0 0 2rem; }
  .proc-card p { font-size:.86rem; line-height:1.95; color:var(--taupe); margin-bottom:1.1rem; }
  .proc-h {
    font-family:'Cormorant Garamond',serif; font-weight:400; font-style:italic;
    font-size:1.35rem; color:var(--deep); margin:2.2rem 0 .9rem;
  }
  .proc-list { list-style:none; margin:0 0 1.1rem; padding:0; }
  .proc-list li {
    font-size:.84rem; line-height:1.7; color:var(--taupe);
    padding:.35rem 0 .35rem 1.3rem; position:relative;
  }
  .proc-list li::before {
    content:'✦'; position:absolute; left:0; color:var(--gold); font-size:.7rem; top:.55rem;
  }
  .proc-quote {
    font-family:'Cormorant Garamond',serif; font-style:italic;
    font-size:1.1rem; line-height:1.6; color:var(--deep);
    border-left:2px solid var(--blush); padding:.4rem 0 .4rem 1.2rem; margin:1.6rem 0;
  }
  /* Grille tarifaire */
  .proc-price-row {
    display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
    padding:.6rem 0; border-bottom:1px dotted rgba(122,94,88,.3);
    font-size:.84rem; color:var(--taupe);
  }
  .proc-price-row:last-child { border-bottom:none; }
  .proc-price-val { font-family:'Cormorant Garamond',serif; font-size:1.08rem; color:var(--deep); white-space:nowrap; }
  .proc-contact {
    margin-top:2.4rem; padding-top:1.8rem; border-top:1px solid var(--blush);
    text-align:center; font-size:.8rem; line-height:1.9; color:var(--taupe);
  }
  .proc-contact strong { color:var(--dark); font-weight:500; letter-spacing:.04em; }

  /* ── CONTACT OVERLAY ── */
  #contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,18,10,.88);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  #contact-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  #contact-form {
    background: linear-gradient(160deg, #1e3320, #0f1a0f);
    border: 1px solid #8b5e2a;
    border-radius: 4px;
    padding: 2.5rem;
    width: min(480px, 90vw);
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
  }
  #contact-form h2 {
    font-family: 'Ruthie', cursive;
    font-size: 2rem;
    background: radial-gradient(ellipse at 30% 50%, #b89fd4 0%, #7b5ea7 45%, #4a2d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .3rem;
  }
  #contact-form .form-sub {
    font-family: 'Jost', sans-serif;
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #8b5e2a;
    margin-bottom: 1.8rem;
  }
  #contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1rem;
  }
  #contact-form label {
    font-family: 'Jost', sans-serif;
    font-size: .52rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #8b5e2a;
  }
  #contact-form input,
  #contact-form textarea,
  #contact-form select {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(139,94,42,.4);
    border-radius: 2px;
    padding: .6rem .8rem;
    color: #c4954a;
    font-family: 'Jost', sans-serif;
    font-size: .7rem;
    outline: none;
    transition: border-color .3s;
    cursor: text;
  }
  #contact-form input:focus,
  #contact-form textarea:focus {
    border-color: #8b5e2a;
  }
  #contact-form textarea {
    resize: none;
    height: 80px;
  }
  /* Photo upload */
  #photo-upload-area {
    border: 1.5px dashed rgba(139,94,42,.5);
    border-radius: 4px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .3s, background .3s;
    margin-bottom: 1.2rem;
    position: relative;
  }
  #photo-upload-area:hover {
    border-color: #8b5e2a;
    background: rgba(139,94,42,.05);
  }
  #photo-upload-area input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0;
  }
  #photo-upload-area .upload-icon {
    font-size: 1.5rem;
    margin-bottom: .4rem;
    display: block;
  }
  #photo-upload-area .upload-text {
    font-family: 'Jost', sans-serif;
    font-size: .52rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8b5e2a;
  }
  #photo-preview {
    display: none;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #8b5e2a;
    margin: .5rem auto 0;
  }
  #contact-form .form-note {
    font-family:'Jost',sans-serif; font-size:.62rem; line-height:1.7;
    color:#c9b89a; border:1px solid rgba(139,94,42,.45);
    border-radius:3px; padding:.85rem 1rem; margin-bottom:1.2rem;
  }
  #btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #1e3320, #2d4a1e);
    border: 1px solid #8b5e2a;
    color: #c4954a;
    font-family: 'Jost', sans-serif;
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    padding: .9rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
  }
  #btn-submit:hover {
    background: linear-gradient(135deg, #2d4a1e, #3a6b35);
    color: #e8c88a;
  }
  #btn-close-contact {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #8b5e2a;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color .3s;
    padding: .4rem .7rem;
    z-index: 5;
  }
  #btn-close-contact:hover { color: #c4954a; }

  /* ── Curseur visible dans les fenêtres (contact, procédé) ──
     Le body masque le curseur pour l'effet "stylo" sur l'accueil ;
     on le rétablit dans les fenêtres pour pouvoir les fermer facilement. */
  #contact-overlay, #contact-overlay *,
  #procede-overlay, #procede-overlay * { cursor: auto; }
  #contact-overlay button, #contact-overlay a, #contact-overlay select,
  #contact-overlay [onclick], #btn-close-contact,
  #procede-overlay button, #procede-overlay a,
  #procede-overlay [onclick], #btn-close-procede { cursor: pointer; }
  #contact-overlay input, #contact-overlay textarea { cursor: text; }

  /* ══════════════════════════════════════════
     RESPONSIVE
     ══════════════════════════════════════════ */

  /* ── TABLETTE / PAYSAGE ÉTROIT (≤ 1024px) ── */
  @media (max-width: 1024px) {
    #home { gap: 1.5rem; }
    .side-city-name { font-size: 2.3rem; }
    .side-icon { width: 70px; }
    .side-left .side-icon { max-height: 200px; }
    .side-right .side-icon { max-height: 180px; }
    .portrait-wrap { height: min(88vh, 720px); }
    .logo-name { font-size: 2.4rem; }
  }

  /* ── MOBILE (≤ 768px) ─────────────────────── */
  @media (max-width: 768px) {

    /* Réactive un curseur natif : le hover n'existe pas au tactile */
    html, body, #home, .zone, .city-label, .back-btn,
    .d-cta, #beauty-mark, .mini-map, #btn-procede,
    #procede-overlay, #procede-card, #btn-close-procede { cursor: auto !important; }
    #home { cursor: auto !important; }

    /* Masque le curseur custom desktop */
    #cur, #cur-r { display: none !important; }

    /* Home : empilement vertical Paris → portrait → Palma */
    #home {
      flex-direction: column !important;
      justify-content: flex-start !important;
      gap: 0 !important;
      padding: 4.5rem 0 5.5rem !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch;
    }
    html, body { overflow: auto !important; }

    /* L'accueil défile dans le flux ; le détail se superpose en plein écran */
    #home { position: relative !important; min-height: 100vh; }

    /* Détail fermé : complètement retiré (invisible + non cliquable + hors flux) */
    #detail {
      position: fixed !important;
      inset: 0 !important;
      display: none !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch;
    }
    /* Détail ouvert : au premier plan, plein écran, une seule colonne */
    #detail.open {
      display: grid !important;
      grid-template-columns: 1fr !important;
      grid-template-rows: auto 1fr !important;
      z-index: 300 !important;
    }

    /* Titre Ariane */
    .home-logo { top: 1.2rem !important; }
    .logo-name { font-size: 1.9rem !important; }

    /* Cercles photos : plus petits et rapprochés du portrait sur mobile */

    /* Colonnes de cercles : réduites et collées aux bords sur mobile */
    .circle-col { gap: .5rem !important; }
    .circle-col-left  { left: .3rem !important; }
    .circle-col-right { right: .3rem !important; }
    .circle-col .photo-circle:nth-child(1) { width: 56px !important; height: 56px !important; }
    .circle-col .photo-circle:nth-child(2) { width: 46px !important; height: 46px !important; }
    .circle-col .photo-circle:nth-child(3) { width: 38px !important; height: 38px !important; }

    /* Colonnes latérales : deviennent des barres horizontales compactes */
    .side-col {
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      gap: .6rem !important;
      padding: 0 !important;
      width: 100%;
      flex-wrap: wrap;
    }
    .side-col > div { flex-direction: row !important; align-items: center !important; }
    .side-city-name { font-size: 1.9rem !important; }

    /* Cache les grandes illustrations (Tour Eiffel / palmier) sur mobile */
    .side-icon { display: none !important; }

    /* Portrait : centré, dimensionné à la largeur d'écran */
    .portrait-wrap {
      height: auto !important;
      width: min(92vw, 420px) !important;
      aspect-ratio: 3 / 4 !important;
      margin: .6rem auto !important;
      flex: 0 0 auto;
    }

    /* Labels flottants un peu plus discrets */
    .zone-label .label-text { font-size: .5rem !important; }
    #lbl-brows, #lbl-sein { right: 2% !important; }
    #lbl-eyes, #lbl-lips { left: 2% !important; }

    /* Zones : cible tactile agrandie pour faciliter le tap */
    .zone::after {
      width: 14px; height: 14px;
      opacity: .5; transform: translate(-50%,-50%) scale(1);
    }

    /* Hint bar */
    .hint-bar {
      position: static !important;
      transform: none !important;
      margin: .8rem auto 0 !important;
      bottom: auto !important;
      font-size: .55rem !important;
    }

    /* Bouton contact */
    #btn-contact {
      bottom: 1rem !important;
      right: 1rem !important;
      font-size: .5rem !important;
      padding: .5rem .9rem !important;
    }

    /* Mini-cartes */
    .mini-map { width: 34px !important; height: 34px !important; }
    .mini-map.expanded { width: min(80vw, 240px) !important; height: 150px !important; }
    .city-label { font-size: .5rem !important; }

    /* Popups de carte : centrés et lisibles */
    .map-popup { position: fixed !important; left: 50% !important;
      bottom: 5.5rem !important; top: auto !important;
      transform: translateX(-50%) !important; width: min(80vw, 260px) !important; }
    #map-paris, #map-palma { left: 50% !important; right: auto !important; width: min(80vw, 260px) !important; }

    /* Page détail : une seule colonne, scrollable */
    .d-visual { min-height: 38vh !important; }
    /* En une seule colonne, la hauteur fixe ne s'applique plus :
       le contenu s'étire et c'est la page entière qui défile. */
    .d-content { padding: 2.5rem 1.5rem 3.5rem !important; height: auto !important; overflow: visible !important; }
    .d-big-icon { font-size: 5rem !important; }
    .d-photo-slot { width: 96px !important; height: 122px !important; }
    /* Galerie à plusieurs photos (ex. sourcils) : le cadre visuel est agrandi
       et les vignettes légèrement réduites pour que la première rangée reste
       sous le bouton "Retour à l'accueil" fixé en haut de l'écran. */
    .d-photos.many .d-photo-slot { width: 84px !important; height: 104px !important; }
    .d-photos.many { bottom: 1rem !important; }
    #detail:has(.d-photos.many) .d-visual { min-height: 50vh !important; }
    /* Photo unique : reste plein cadre sur mobile */
    .d-photos.solo .d-photo-slot { width: 100% !important; height: 100% !important; }
    /* Eye-liner : la photo garde sa pleine largeur/hauteur */
    #detail.eyeliner .d-visual { min-height: 52vh !important; }
    #detail.solo-photo .d-visual { min-height: 56vh !important; }
    #detail.eyeliner .d-photo-slot { width: 100% !important; height: 100% !important; }

    /* Bouton "Retour au portrait" : bien visible et facile à toucher */
    .back-btn {
      position: sticky !important;
      top: 0 !important;
      margin: -2.5rem -1.5rem 1.5rem -1.5rem !important;
      padding: 1rem 1.5rem !important;
      font-size: .8rem !important;
      z-index: 20 !important;
      background: var(--cream) !important;
      width: auto !important;
    }

    /* Formulaire contact */
    #contact-form { padding: 1.5rem !important; width: 92vw !important;
      max-height: 88vh; overflow-y: auto; }
    #contact-form .form-row { grid-template-columns: 1fr !important; gap: .6rem !important; }
    #contact-form h2 { font-size: 1.5rem !important; }

    #tooltip { font-size: .6rem !important; padding: .4rem .8rem !important; }
    .iris-sparkle { font-size: .5rem !important; }
  }

  /* ── PETIT MOBILE (≤ 420px) ───────────────── */
  @media (max-width: 420px) {
    .logo-name { font-size: 1.55rem !important; }
    .side-city-name { font-size: 1.5rem !important; }
    .portrait-wrap { width: 94vw !important; }
    .step { padding: .7rem .8rem !important; }
    #btn-contact { font-size: .45rem !important; padding: .45rem .75rem !important; }
  }

  /* ── APPAREILS TACTILES (sans hover réel) ── */
  @media (hover: none) and (pointer: coarse) {
    html, body, #home { cursor: auto !important; }
    #cur, #cur-r { display: none !important; }
    /* Rend les labels visibles en permanence puisqu'il n'y a pas de survol */
    .zone-label .label-text { opacity: .9 !important; }
    #lbl-brows { display: flex !important; }
  }

  /* ══ PAGE LÈVRES (fusionnée) ══ */
  /* Même gabarit que les autres fiches : visuel fixe à gauche,
     contenu défilant à droite. */
  #levres,
  #eyeliner {
    opacity:0; pointer-events:none;
    background:var(--cream); color:var(--dark);
    display:grid; grid-template-columns:1fr 1fr;
    overflow:hidden;
    cursor:auto;
  }
  #levres.open,
  #eyeliner.open { opacity:1; pointer-events:all; }
  #levres,
  #eyeliner,
  #levres *,
  #eyeliner * { cursor:auto; }
  #levres a,
  #eyeliner a,
  #levres button,
  #eyeliner button,
  #levres [onclick],
  #eyeliner [onclick] { cursor:pointer; }

  /* Colonne gauche : toutes les photos empilées, défilement propre */
  #levres .l-visual,
  #eyeliner .l-visual {
    position:relative;
    height:100vh; overflow-y:auto; overflow-x:hidden;
    background:linear-gradient(160deg,var(--rose) 0%,#f5d8c8 50%,var(--gold) 100%);
    scrollbar-width:thin;
  }
  #levres .l-visual::-webkit-scrollbar,
  #eyeliner .l-visual::-webkit-scrollbar { width:6px; }
  #levres .l-visual::-webkit-scrollbar-thumb,
  #eyeliner .l-visual::-webkit-scrollbar-thumb { background:rgba(122,94,88,.35); border-radius:3px; }
  #levres .l-shot,
  #eyeliner .l-shot { position:relative; display:block; }
  #levres .l-shot img,
  #eyeliner .l-shot img { width:100%; height:auto; display:block; }
  #levres .l-shot-cap,
  #eyeliner .l-shot-cap {
    position:absolute; left:0; right:0; bottom:0;
    padding:2.4rem 1.4rem .9rem;
    font-family:'Jost',sans-serif;
    font-size:.6rem; letter-spacing:.28em; text-transform:uppercase;
    color:#fdf8f5;
    background:linear-gradient(to top, rgba(42,26,23,.7), transparent);
    pointer-events:none;
  }

  /* Titre en haut à gauche, cohérent avec les autres fiches */
  #levres .l-visual-title,
  #eyeliner .l-visual-title {
    position:sticky; top:0; left:0; right:0;
    z-index:6;
    padding:5.5rem 2.5rem 4rem;
    text-align:left;
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(42,26,23,.72) 0%, rgba(42,26,23,.38) 55%, transparent 100%);
  }
  #levres .l-visual-tag,
  #eyeliner .l-visual-tag {
    font-family:'Jost',sans-serif;
    font-size:.62rem; letter-spacing:.34em; text-transform:uppercase;
    color:var(--gold); margin-bottom:.5rem;
  }
  #levres .l-visual-name,
  #eyeliner .l-visual-name {
    font-family:'Cormorant Garamond',serif; font-weight:300;
    font-size:clamp(1.6rem,2.6vw,2.5rem); line-height:1.15;
    color:#fdf8f5; text-shadow:0 2px 14px rgba(0,0,0,.4);
  }
  #levres .l-visual-name em,
  #eyeliner .l-visual-name em { font-style:italic; color:var(--rose); display:block; }
  #levres .l-visual-rule,
  #eyeliner .l-visual-rule { width:44px; height:1px; background:var(--gold); margin:.9rem 0 0; opacity:.85; }

  /* Colonne droite : le contenu riche, défilant */
  #levres .l-content,
  #eyeliner .l-content { height:100vh; overflow-y:auto; }

  #levres img,
  #eyeliner img { display:block; max-width:100%; }
  #levres a,
  #eyeliner a { color:inherit; text-decoration:none; }

  /* Intro en haut de la colonne texte (remplace l'ancien hero) */
  #levres .l-intro,
  #eyeliner .l-intro { padding:clamp(2.5rem,5vw,4rem) clamp(1.5rem,5vw,4.5rem) 0; }
  #levres .eyebrow,
  #eyeliner .eyebrow { font-size:.68rem; letter-spacing:.35em; text-transform:uppercase; color:var(--deep); margin-bottom:1.2rem; }
  #levres .lede,
  #eyeliner .lede { font-size:.95rem; color:var(--taupe); line-height:1.9; max-width:44ch; }
  #levres .rule,
  #eyeliner .rule { width:46px; height:1px; background:var(--blush); margin:1.8rem 0; }

  #levres section,
  #eyeliner section { padding:clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,5vw,4.5rem); }
  #levres .sec-title,
  #eyeliner .sec-title { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:400; font-size:clamp(1.5rem,3.5vw,2.1rem); color:var(--deep); margin-bottom:.4rem; text-align:center; }
  #levres .sec-sub,
  #eyeliner .sec-sub { text-align:center; font-size:.8rem; letter-spacing:.05em; color:var(--taupe); margin-bottom:2.5rem; }

  #levres .prose,
  #eyeliner .prose { max-width:720px; margin:0 auto; }
  #levres .prose p,
  #eyeliner .prose p { font-size:.92rem; color:var(--taupe); line-height:1.9; margin-bottom:1.1rem; }
  #levres .prose strong,
  #eyeliner .prose strong { color:var(--dark); font-weight:500; }

  #levres .prices,
  #eyeliner .prices { max-width:620px; margin:0 auto; }
  #levres .price-row,
  #eyeliner .price-row { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:.75rem 0; border-bottom:1px dotted rgba(122,94,88,.3); font-size:.9rem; color:var(--taupe); }
  #levres .price-row:last-child,
  #eyeliner .price-row:last-child { border-bottom:none; }
  #levres .price-val,
  #eyeliner .price-val { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--deep); white-space:nowrap; }
  #levres .price-note,
  #eyeliner .price-note { font-size:.72rem; font-style:italic; color:var(--taupe); opacity:.8; margin-top:1.2rem; text-align:center; }

  #levres .cta,
  #eyeliner .cta { display:inline-block; margin-top:1.5rem; padding:1rem 2.6rem; background:var(--deep); color:#fff; font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; border-radius:2px; transition:background .3s; }
  #levres .cta:hover,
  #eyeliner .cta:hover { background:var(--dark); }

  #levres footer,
  #eyeliner footer { text-align:center; padding:2rem; font-size:.75rem; color:var(--taupe); border-top:1px solid rgba(212,151,138,.3); line-height:1.9; }
  #levres footer strong,
  #eyeliner footer strong { color:var(--dark); }

  @media (max-width:760px) {
    /* Sur mobile : une seule colonne, visuel puis contenu */
    #levres,
  #eyeliner { grid-template-columns:1fr; overflow-y:auto; }
    #levres .l-visual,
  #eyeliner .l-visual { height:auto; max-height:none; overflow:visible; }
    #levres .l-content,
  #eyeliner .l-content { height:auto; overflow:visible; }
    #levres .l-visual-title,
  #eyeliner .l-visual-title { padding:4.2rem 1.3rem 2.6rem; }
    #levres .l-visual-name,
  #eyeliner .l-visual-name { font-size:1.45rem; }
  }
  /* ══════════════════════════════════════════════════════════
     PAGE SOURCILS
     Ajouté le 28/07/2026. Même gabarit que la fiche Lèvres :
     visuel fixe à gauche, contenu défilant à droite.
     ══════════════════════════════════════════════════════════ */
  #sourcils {
    opacity:0; pointer-events:none;
    background:var(--cream); color:var(--dark);
    display:grid; grid-template-columns:1fr 1fr;
    overflow:hidden;
    cursor:auto;
  }
  #sourcils.open { opacity:1; pointer-events:all; }
  #sourcils, #sourcils * { cursor:auto; }
  #sourcils a, #sourcils button, #sourcils [onclick] { cursor:pointer; }

  /* Colonne gauche : toutes les photos empilées, défilement propre */
  #sourcils .l-visual {
    position:relative;
    height:100vh; overflow-y:auto; overflow-x:hidden;
    background:linear-gradient(160deg,var(--rose) 0%,#f5d8c8 50%,var(--gold) 100%);
    scrollbar-width:thin;
  }
  #sourcils .l-visual::-webkit-scrollbar { width:6px; }
  #sourcils .l-visual::-webkit-scrollbar-thumb { background:rgba(122,94,88,.35); border-radius:3px; }
  #sourcils .l-shot { position:relative; display:block; }
  #sourcils .l-shot img { width:100%; height:auto; display:block; }
  #sourcils .l-shot-cap {
    position:absolute; left:0; right:0; bottom:0;
    padding:2.4rem 1.4rem .9rem;
    font-family:'Jost',sans-serif;
    font-size:.6rem; letter-spacing:.28em; text-transform:uppercase;
    color:#fdf8f5;
    background:linear-gradient(to top, rgba(42,26,23,.7), transparent);
    pointer-events:none;
  }

  /* Titre en haut à gauche, cohérent avec les autres fiches */
  #sourcils .l-visual-title {
    position:sticky; top:0; left:0; right:0;
    z-index:6;
    padding:5.5rem 2.5rem 4rem;
    text-align:left;
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(42,26,23,.72) 0%, rgba(42,26,23,.38) 55%, transparent 100%);
  }
  #sourcils .l-visual-tag {
    font-family:'Jost',sans-serif;
    font-size:.62rem; letter-spacing:.34em; text-transform:uppercase;
    color:var(--gold); margin-bottom:.5rem;
  }
  #sourcils .l-visual-name {
    font-family:'Cormorant Garamond',serif; font-weight:300;
    font-size:clamp(1.6rem,2.6vw,2.5rem); line-height:1.15;
    color:#fdf8f5; text-shadow:0 2px 14px rgba(0,0,0,.4);
  }
  #sourcils .l-visual-name em { font-style:italic; color:var(--rose); display:block; }
  #sourcils .l-visual-rule { width:44px; height:1px; background:var(--gold); margin:.9rem 0 0; opacity:.85; }

  /* Colonne droite : le contenu riche, défilant */
  #sourcils .l-content { height:100vh; overflow-y:auto; }

  #sourcils img { display:block; max-width:100%; }
  #sourcils a { color:inherit; text-decoration:none; }

  /* Intro en haut de la colonne texte (remplace l'ancien hero) */
  #sourcils .l-intro { padding:clamp(2.5rem,5vw,4rem) clamp(1.5rem,5vw,4.5rem) 0; }
  #sourcils .eyebrow { font-size:.68rem; letter-spacing:.35em; text-transform:uppercase; color:var(--deep); margin-bottom:1.2rem; }
  #sourcils .lede { font-size:.95rem; color:var(--taupe); line-height:1.9; max-width:44ch; }
  #sourcils .rule { width:46px; height:1px; background:var(--blush); margin:1.8rem 0; }

  #sourcils section { padding:clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,5vw,4.5rem); }
  #sourcils .sec-title { font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:400; font-size:clamp(1.5rem,3.5vw,2.1rem); color:var(--deep); margin-bottom:.4rem; text-align:center; }
  #sourcils .sec-sub { text-align:center; font-size:.8rem; letter-spacing:.05em; color:var(--taupe); margin-bottom:2.5rem; }

  #sourcils .prose { max-width:720px; margin:0 auto; }
  #sourcils .prose p { font-size:.92rem; color:var(--taupe); line-height:1.9; margin-bottom:1.1rem; }
  #sourcils .prose strong { color:var(--dark); font-weight:500; }

  #sourcils .prices { max-width:620px; margin:0 auto; }
  #sourcils .price-row { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:.75rem 0; border-bottom:1px dotted rgba(122,94,88,.3); font-size:.9rem; color:var(--taupe); }
  #sourcils .price-row:last-child { border-bottom:none; }
  #sourcils .price-val { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--deep); white-space:nowrap; }
  #sourcils .price-note { font-size:.72rem; font-style:italic; color:var(--taupe); opacity:.8; margin-top:1.2rem; text-align:center; }

  #sourcils .cta { display:inline-block; margin-top:1.5rem; padding:1rem 2.6rem; background:var(--deep); color:#fff; font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; border-radius:2px; transition:background .3s; }
  #sourcils .cta:hover { background:var(--dark); }

  #sourcils footer { text-align:center; padding:2rem; font-size:.75rem; color:var(--taupe); border-top:1px solid rgba(212,151,138,.3); line-height:1.9; }
  #sourcils footer strong { color:var(--dark); }

  @media (max-width:760px) {
    /* Sur mobile : une seule colonne, visuel puis contenu */
    #sourcils { grid-template-columns:1fr; overflow-y:auto; }
    #sourcils .l-visual { height:auto; max-height:none; overflow:visible; }
    #sourcils .l-content { height:auto; overflow:visible; }
    #sourcils .l-visual-title { padding:4.2rem 1.3rem 2.6rem; }
    #sourcils .l-visual-name { font-size:1.45rem; }
  }

  /* ── Paire de photos côte à côte (deux travaux différents) ── */
  #sourcils .l-pair { display:grid; grid-template-columns:1fr 1fr; align-items:start; }
  #sourcils .l-pair .l-shot img {
    width:100%; aspect-ratio:4 / 5;
    object-fit:contain; object-position:center; display:block;
  }
  #sourcils .l-pair .l-shot-cap { font-size:.55rem; padding:2rem 1rem .8rem; }

  /* ── Déroulé du soin, en quatre étapes ── */
  #sourcils .steps { max-width:720px; margin:0 auto; }
  #sourcils .step {
    display:flex; gap:1.2rem; align-items:flex-start;
    padding:1.1rem 0; border-bottom:1px dotted rgba(122,94,88,.25);
  }
  #sourcils .step:last-child { border-bottom:none; }
  #sourcils .step-n {
    font-family:'Cormorant Garamond',serif;
    font-size:1.35rem; color:var(--rose); line-height:1; min-width:2.2rem;
  }
  #sourcils .step-t {
    font-size:.8rem; letter-spacing:.12em; text-transform:uppercase;
    color:var(--dark); margin-bottom:.35rem;
  }
  #sourcils .step-d { font-size:.9rem; color:var(--taupe); line-height:1.85; }

  @media (prefers-reduced-motion:reduce) { .frame img { transition:none; } .frame:hover img { transform:none; } }


  /* ══ BOUTON RETOUR FLOTTANT — toujours visible sur toutes les fiches ══ */
  .home-btn {
    position:fixed;
    top:1.2rem; left:1.2rem;
    z-index:99999;
    display:none;
    align-items:center; gap:.55rem;
    padding:.85rem 1.6rem;
    background:rgba(42,26,23,.95);
    color:#fdf8f5;
    font-family:'Jost',sans-serif;
    font-size:.75rem; letter-spacing:.16em; text-transform:uppercase;
    border:1px solid var(--gold);
    border-radius:40px;
    cursor:pointer !important;
    backdrop-filter:blur(6px);
    box-shadow:0 4px 22px rgba(0,0,0,.45);
    transition:background .3s, transform .3s;
  }
  .home-btn, .home-btn * { cursor:pointer !important; }
  .home-btn::before { content:'←'; font-size:1rem; }
  .home-btn:hover { background:var(--deep); transform:translateX(-2px); }
  /* Visible dès qu'une fiche est ouverte */
  body.subpage .home-btn { display:inline-flex; }
  @media (max-width:760px) {
    .home-btn { top:.7rem; left:.7rem; padding:.65rem 1.1rem; font-size:.68rem; }
  }


  /* ══ Masque l'accueil (et son titre) derrière les fiches ══ */
  body.subpage #home { visibility:hidden !important; }

  /* ══ TITRE SUR LE VISUEL DE CHAQUE FICHE ══ */
  .d-visual-title {
    position:absolute;
    left:0; right:0; top:0;
    z-index:6;
    padding:5.5rem 2.5rem 4rem;
    text-align:left;
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(42,26,23,.72) 0%, rgba(42,26,23,.38) 55%, transparent 100%);
  }
  .d-visual-tag {
    font-family:'Jost',sans-serif;
    font-size:.62rem; letter-spacing:.34em; text-transform:uppercase;
    color:var(--gold);
    margin-bottom:.5rem;
  }
  .d-visual-name {
    font-family:'Cormorant Garamond',serif;
    font-weight:300;
    font-size:clamp(1.6rem,2.6vw,2.5rem);
    line-height:1.15;
    color:#fdf8f5;
    text-shadow:0 2px 14px rgba(0,0,0,.4);
  }
  .d-visual-name em { font-style:italic; color:var(--rose); display:block; }
  .d-visual-rule { width:44px; height:1px; background:var(--gold); margin:.9rem 0 0; opacity:.85; }
  @media (max-width:760px) {
    .d-visual-title { padding:4.2rem 1.3rem 2.6rem; }
    .d-visual-name { font-size:1.45rem; }
  }

