/* =================================================================
   SOCLE COMMUN — Nuptia Logos vitrines
   Toutes les couleurs/polices passent par des tokens (--*) définis
   dans le site.css de chaque marque. Ce fichier est identique sur
   les 4 sites (structure, composants, responsive, accessibilité).
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: var(--display-weight, 600); letter-spacing: var(--display-tracking, -0.01em); color: var(--text-strong, var(--text)); }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--text-soft, var(--text)); }
strong { color: var(--text-strong, var(--text)); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-eyebrow, var(--font-body));
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-ink, var(--accent));
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.center::after { content: ""; width: 2rem; height: 1px; background: currentColor; opacity: .6; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text-soft); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-head { max-width: 60ch; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.stack > * + * { margin-top: 1.15rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (min-width: 640px){ .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px){ .cols-3 { grid-template-columns: repeat(3, 1fr); } .cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) and (max-width: 859px){ .cols-4 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .9em 1.7em; border-radius: var(--btn-radius, 999px);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform; text-align: center; cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--brand); color: var(--on-brand, #fff); box-shadow: 0 10px 30px -12px var(--brand-shadow, rgba(0,0,0,.4)); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px var(--brand-shadow, rgba(0,0,0,.5)); }
.btn-ghost { border: 1px solid var(--border-strong, var(--border)); color: var(--text-strong, var(--text)); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--on-accent, #1a1a1a); }
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.05rem; }

/* CTA — balayage de lumière au survol (conservé). L'emphase vient de l'INTENTION
   (survol / focus), plus d'une pulsation permanente à vide : sur une marque
   élégante, une respiration continue de tous les boutons lit « template ». */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%); transform: translateX(-135%); transition: transform .6s ease; }
.btn:hover::after { transform: translateX(135%); }
/* Halo d'emphase au focus clavier sur les boutons pleins (en plus de l'outline) */
.btn-primary:hover, .btn-accent:hover { box-shadow: 0 18px 42px -12px var(--brand-shadow, rgba(0,0,0,.55)); }

/* Respiration UNIQUE à l'apparition — réservée au CTA principal du hero
   (classe posée dans le markup). Deux cycles doux puis arrêt ; aucune boucle. */
/* Animée sur transform (propriété composée sur le GPU) et non sur box-shadow :
   Lighthouse signalait une « animation non composée ». */
@keyframes np-cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
/* UNE seule respiration douce, ~0.7 s après l'apparition, puis retour à l'ombre
   naturelle du bouton (pas de fill : on ne fige pas l'état final). */
.btn.cta-pulse-once { animation: np-cta-pulse 3s ease-in-out .7s 1; }
.btn.cta-pulse-once:hover { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .btn::after { display: none; }
  .btn.cta-pulse-once { animation: none; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row.center { justify-content: center; }

.textlink { color: var(--accent-ink, var(--accent)); font-weight: 600; display: inline-flex; align-items: center; gap: .4em; transition: gap .25s ease, color .2s ease; }
.textlink:hover { gap: .7em; }
.textlink::after { content: "→"; transition: transform .25s ease; }

/* ---------- En-tête / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg, color-mix(in srgb, var(--bg) 82%, transparent));
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 8px 30px -22px rgba(0,0,0,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--nav-h, 76px); }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--text-strong, var(--text)); letter-spacing: -.01em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-soft); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: .96rem; font-weight: 500; color: var(--text-soft); position: relative; padding: .25rem 0; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .28s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text-strong, var(--text)); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: none; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: .6rem; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-strong, var(--text)); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 980px){
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* Drawer mobile */
.mobile-menu {
  position: fixed; inset: var(--nav-h, 76px) 0 auto 0; z-index: 49;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.5rem clamp(1.25rem, 5vw, 2rem) 2rem;
  display: grid; gap: .35rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.nav-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { padding: .85rem .25rem; font-size: 1.15rem; font-family: var(--font-display); border-bottom: 1px solid var(--border); color: var(--text-strong, var(--text)); }
.mobile-menu .btn { margin-top: 1rem; }
@media (min-width: 980px){ .mobile-menu { display: none !important; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; }
.hero-inner { position: relative; z-index: 2; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem); }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { max-width: 56ch; }

/* ---------- Cartes ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--card-radius, 18px); padding: clamp(1.5rem, 2.5vw, 2.1rem);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px var(--brand-shadow, rgba(0,0,0,.45)); border-color: var(--border-strong, var(--border)); }
.card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft, color-mix(in srgb, var(--accent) 16%, transparent)); color: var(--accent-ink, var(--accent)); margin-bottom: 1.1rem; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; }

.feature-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent-ink, var(--accent)); line-height: 1; opacity: .8; }

/* Steps */
.step { position: relative; padding-left: 0; }
.step .step-k { font-family: var(--font-display); font-size: 1rem; letter-spacing: .2em; color: var(--accent-ink, var(--accent)); text-transform: uppercase; }

/* ---------- Bandeau / CTA ---------- */
.cta-band { background: var(--cta-bg, var(--brand)); color: var(--on-brand, #fff); border-radius: var(--card-radius, 22px); padding: clamp(2.4rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2, .cta-band p { color: inherit; }
.cta-band p { opacity: .9; max-width: 50ch; margin-inline: auto; }

/* ---------- Stats ---------- */
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--text-strong, var(--text)); line-height: 1; }
.stat span { font-size: .9rem; color: var(--text-soft); letter-spacing: .04em; }

/* ---------- Annuaire embed ---------- */
.embed-shell { border: 1px solid var(--border); border-radius: var(--card-radius, 20px); overflow: hidden; background: var(--surface); box-shadow: 0 30px 70px -45px var(--brand-shadow, rgba(0,0,0,.5)); }
.embed-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.1rem; border-bottom: 1px solid var(--border); background: var(--surface-2, var(--surface)); font-size: .85rem; color: var(--text-soft); }
.embed-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: .5rem; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.embed-frame { width: 100%; height: clamp(620px, 84vh, 1000px); border: 0; background: var(--bg); }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq summary { display: flex; justify-content: space-between; gap: 1rem; align-items: center; cursor: pointer; font-family: var(--font-display); font-size: 1.15rem; color: var(--text-strong, var(--text)); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent-ink, var(--accent)); transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .9rem; }

/* ---------- Formulaire ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: var(--text-strong, var(--text)); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--text-soft); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--footer-bg, var(--surface-2, var(--surface))); border-top: 1px solid var(--border); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer-col h3, .footer-col h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 1rem; }
.footer-col a { display: block; padding: .3rem 0; color: var(--text-soft); transition: color .2s ease; }
.footer-col a:hover { color: var(--accent-ink, var(--accent)); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: var(--text-soft); }
.footer-bottom a { color: var(--text-soft); }
.footer-bottom a:hover { color: var(--accent-ink, var(--accent)); }

/* ---------- Animations de révélation ----------
   Courbe et durée pilotées par des tokens (--ease-out-soft, --reveal-dur,
   --reveal-shift) définis dans le site.css de marque ; les fallbacks gardent le
   comportement d'origine pour les sites qui ne les définissent pas. */
.reveal { opacity: 0; transform: translateY(var(--reveal-shift, 24px));
  transition: opacity var(--reveal-dur, .7s) var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)),
              transform var(--reveal-dur, .7s) var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger 80 ms/cran. d5/d6 servent au helper data-stagger (listes longues). */
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; } .reveal.d6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }

/* Glyphes : entrée douce synchronisée à la révélation du parent (one-shot, sobre).
   L'icône grandit depuis .72 pendant que sa carte/son bloc se révèle ; le filet
   de l'ornement liturgique se dessine du centre. Rien ne boucle. */
.reveal .ico, .reveal .icon, .reveal .ann-feature__ico {
  transition: transform var(--reveal-dur, .7s) var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)); }
.reveal:not(.is-visible) .ico, .reveal:not(.is-visible) .icon, .reveal:not(.is-visible) .ann-feature__ico { transform: scale(.72); }
.ornament::before, .ornament::after { transform-origin: center;
  transition: transform var(--reveal-dur, .7s) var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)); }
.reveal:not(.is-visible) .ornament::before, .reveal:not(.is-visible) .ornament::after { transform: scaleX(.15); }
@media (prefers-reduced-motion: reduce){
  .reveal:not(.is-visible) .ico, .reveal:not(.is-visible) .icon, .reveal:not(.is-visible) .ann-feature__ico,
  .reveal:not(.is-visible) .ornament::before, .reveal:not(.is-visible) .ornament::after { transform: none; }
}

/* ---------- Divers ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: var(--on-brand, #fff); padding: .7rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }
.muted { color: var(--text-soft); }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.pill { display: inline-flex; align-items: center; gap: .5em; padding: .4em .9em; border-radius: 999px; background: var(--accent-soft, color-mix(in srgb, var(--accent) 14%, transparent)); color: var(--accent-ink, var(--accent)); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.check-list li { position: relative; padding: .35rem 0 .35rem 1.65rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: calc(.35rem + .12em); color: var(--accent-ink, var(--accent)); font-weight: 700; }

/* ---------- Icône générique (hors carte) ---------- */
.ico { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; font-size: 1.4rem; background: var(--accent-soft, color-mix(in srgb, var(--accent) 16%, transparent)); color: var(--accent-ink, var(--accent)); margin-bottom: 1.1rem; }

/* ---------- Audiences (3 publics) ---------- */
.audience-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
@media (min-width: 860px){ .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--card-radius, 18px); padding: clamp(1.5rem, 2.5vw, 2.1rem); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.audience-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px var(--brand-shadow, rgba(0,0,0,.45)); border-color: var(--border-strong, var(--border)); }
.audience-card h3 { margin-bottom: .55rem; }
.audience-card p { font-size: .98rem; flex: 1; }
.audience-card .textlink { margin-top: 1.3rem; }

/* ---------- Témoignages ---------- */
.tmt-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 760px){ .tmt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px){ .tmt-grid { grid-template-columns: repeat(3, 1fr); } }
.tmt-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--card-radius, 18px); padding: clamp(1.4rem, 2.4vw, 1.9rem); transition: transform .3s ease, box-shadow .3s ease; }
.tmt-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px var(--brand-shadow, rgba(0,0,0,.4)); }
.tmt-card .quote { font-size: 1.02rem; line-height: 1.6; color: var(--text); margin: .9rem 0 1.3rem; flex: 1; }
.tmt-foot { display: flex; align-items: center; gap: .8rem; margin-top: auto; border-top: 1px solid var(--border); padding-top: 1rem; }
.tmt-avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; background: var(--accent-soft, color-mix(in srgb, var(--accent) 16%, transparent)); color: var(--accent-ink, var(--accent)); }
.tmt-id { display: grid; }
.tmt-name { font-weight: 600; color: var(--text-strong, var(--text)); font-size: .95rem; }
.tmt-meta { font-size: .82rem; color: var(--text-soft); }
.tmt-badge { display: inline-flex; align-items: center; gap: .35em; font-size: .72rem; font-weight: 700; letter-spacing: .02em; color: var(--accent-ink, var(--accent)); background: var(--accent-soft, color-mix(in srgb, var(--accent) 16%, transparent)); padding: .25em .6em; border-radius: 999px; margin-left: auto; align-self: flex-start; }

/* ---------- Étoiles (affichage) ---------- */
.stars { display: inline-flex; gap: .12em; color: var(--accent); font-size: 1rem; line-height: 1; letter-spacing: .04em; }
.stars[aria-label] { color: var(--accent); }

/* ---------- Notation par étoiles (saisie) ---------- */
.star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .12em; }
.star-input input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.star-input label { font-size: 1.9rem; line-height: 1; color: var(--border-strong, var(--border)); cursor: pointer; transition: color .15s ease, transform .15s ease; }
.star-input label::before { content: "\2605"; }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: var(--accent); }
.star-input label:hover { transform: scale(1.12); }
.star-input input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- État de soumission (formulaire avis) ---------- */
.form-success { display: none; text-align: center; padding: clamp(2rem, 4vw, 3rem); border: 1px solid var(--border); border-radius: var(--card-radius, 18px); background: var(--surface); }
.form-success .ico { margin-inline: auto; background: var(--success-bg, color-mix(in srgb, var(--accent) 16%, transparent)); }
.is-sent .form { display: none; }
.is-sent .form-success { display: block; animation: np-success-in .6s var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)) both; }
@keyframes np-success-in { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .is-sent .form-success { animation: none; } }

/* ---------- Médias photo (cadre + zoom doux au survol) ---------- */
.media { position: relative; overflow: hidden; border-radius: var(--card-radius, 18px); border: 1px solid var(--border); background: var(--surface-2); box-shadow: 0 30px 60px -38px var(--brand-shadow, rgba(0,0,0,.4)); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease-out-soft, cubic-bezier(.2,.7,.2,1)); }
.media.hoverable:hover img { transform: scale(1.05); }
.ratio-45 { aspect-ratio: 4 / 5; } .ratio-11 { aspect-ratio: 1 / 1; }
.ratio-43 { aspect-ratio: 4 / 3; } .ratio-169 { aspect-ratio: 16 / 9; } .ratio-75 { aspect-ratio: 7 / 5; }

/* ---------- Capture produit (cadre navigateur + repli si image absente) ---------- */
.shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 40px 80px -45px var(--brand-shadow, rgba(0,0,0,.45)); }
.shot-bar { display: flex; gap: .4rem; padding: .7rem .9rem; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); display: block; }
.shot img { width: 100%; display: block; }
.shot .shot-canvas { aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 1.2rem; text-align: center; color: var(--text-soft); font-size: .92rem; line-height: 1.4;
  background: repeating-linear-gradient(45deg, var(--surface) 0 12px, var(--surface-2) 12px 24px); }

/* ---------- Parallaxe (légère) ---------- */
[data-parallax] { will-change: transform; }
@media (prefers-reduced-motion: reduce) { [data-parallax] { transform: none !important; } }
