/* ═══════════════════════════════════════════════════════════════
   ORIA RETAIL & SERVICES — Feuille de style complète v3
   Palette : Orange #FF9C1C · Gris #CECCCC
   Responsive : mobile-first, breakpoints 480 / 768 / 1024px
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --c-orange:       #FF9C1C;
  --c-orange-deep:  #E8880A;
  --c-orange-light: #FFF3E0;
  --c-orange-soft:  #FFE8C0;
  --c-grey:         #CECCCC;
  --c-grey-dark:    #8A8888;
  --c-grey-light:   #F5F5F5;
  --c-bg:           #FAFAFA;
  --c-surface:      #FFFFFF;
  --c-surface-2:    #F8F8F8;
  --c-offset:       #F2F2F2;
  --c-border:       rgba(0,0,0,.08);
  --c-divider:      rgba(0,0,0,.06);
  --c-text:         #1A1A1A;
  --c-muted:        #555555;
  --c-faint:        #999999;
  --c-inv:          #FFFFFF;
  --c-teal:         #FF9C1C;
  --c-teal-hover:   #E8880A;
  --c-teal-light:   #FFF3E0;
  --c-gold:         #8A8888;
  --sh-sm:  0 1px 4px rgba(0,0,0,.06);
  --sh-md:  0 6px 24px rgba(0,0,0,.08);
  --sh-lg:  0 20px 60px rgba(0,0,0,.10);
  --sh-orange: 0 8px 32px rgba(255,156,28,.25);
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   18px;
  --r-pill: 999px;
  --ease:   cubic-bezier(.16,1,.3,1);
  --dur:    200ms;
  --font-d: 'DM Serif Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --nav-h:  68px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,::before,::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); -webkit-text-size-adjust: none; }
body { font-family: var(--font-b); font-size: 1rem; line-height: 1.65; color: var(--c-text); background: var(--c-bg); min-height: 100dvh; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 3px; border-radius: var(--r-sm); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap      { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3.5rem); }
.wrap-wide { max-width: 1400px; margin-inline: auto; padding-inline: clamp(1rem, 5vw, 3.5rem); }
.section   { padding-block: clamp(3rem, 7vw, 6rem); }

/* Grilles — mobile first, toujours 1 colonne par défaut */
.col-2 { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
.col-3 { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 2rem); }

@media (min-width: 768px) {
  .col-2 { grid-template-columns: 1fr 1fr; align-items: start; }
  .col-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ─── TYPOGRAPHIE ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: .4rem; height: .4rem; border-radius: 50%; background: var(--c-orange); flex-shrink: 0; }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.1; letter-spacing: -.01em; text-wrap: balance; }
.title-xl  { font-size: clamp(1.9rem, 4vw, 3.8rem); font-weight: 400; }
.title-lg  { font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 400; }
.title-md  { font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 400; }
.body-lg   { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.75; color: var(--c-muted); }
.body-sm   { font-size: .875rem; line-height: 1.65; color: var(--c-muted); }
.text-muted { color: var(--c-muted); }

/* ─── BOUTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 46px; padding: .7rem 1.5rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600; border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c-orange); color: #fff; box-shadow: var(--sh-orange); }
.btn-primary:hover { background: var(--c-orange-deep); }
.btn-outline  { border-color: var(--c-border); background: var(--c-surface); color: var(--c-text); }
.btn-outline:hover { background: var(--c-offset); }
.btn-ghost  { color: var(--c-orange); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; }
.btn-ghost::after { content: '→'; transition: transform var(--dur) var(--ease); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-inv    { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-inv:hover { background: rgba(255,255,255,.25); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h); background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-divider);
}
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; object-fit: contain; }
.logo-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--c-orange-light); display: flex; align-items: center; justify-content: center; color: var(--c-orange); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: .05rem; }
.logo-name    { font-family: var(--font-d); font-size: .95rem; font-weight: 400; color: var(--c-text); line-height: 1.1; }
.logo-tagline { font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--c-faint); }

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: .15rem; }
.nav-links a {
  padding: .4rem .85rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 500; color: var(--c-muted);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover, .nav-links a.active { color: var(--c-text); background: var(--c-offset); }
.nav-links a.active { font-weight: 600; color: var(--c-orange); }

@media (min-width: 768px) { .nav-links { display: flex; } }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.theme-btn { display: none; } /* thème fixe light */

/* Burger mobile */
.nav-burger {
  display: flex; width: 38px; height: 38px; border-radius: var(--r-md);
  border: 1px solid var(--c-border); align-items: center; justify-content: center;
  background: var(--c-surface); color: var(--c-muted);
}
.nav-burger:hover { background: var(--c-offset); }
@media (min-width: 768px) { .nav-burger { display: none; } }

/* Mobile nav dropdown */
.nav-mobile {
  display: none; flex-direction: column;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: var(--c-surface); border-bottom: 1px solid var(--c-divider);
  padding: 1rem 1.25rem 1.5rem; gap: .2rem; box-shadow: var(--sh-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: .65rem 1rem; border-radius: var(--r-md);
  font-size: .95rem; font-weight: 500; color: var(--c-muted);
  transition: background var(--dur), color var(--dur);
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--c-orange-light); color: var(--c-orange); font-weight: 600; }

/* ─── BANDEAU B2B ────────────────────────────────────────── */
.platform-banner {
  background: var(--c-text); color: rgba(255,255,255,.8);
  padding: .6rem 1rem; text-align: center;
  font-size: .8rem; font-weight: 500; letter-spacing: .02em;
}
.platform-banner a { color: var(--c-orange); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero { background: var(--c-surface); border-bottom: 1px solid var(--c-divider); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem,5vw,6rem); } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-orange); background: var(--c-orange-light);
  padding: .4rem .9rem; border-radius: var(--r-pill); width: fit-content;
  border: 1px solid rgba(255,156,28,.2); margin-bottom: .5rem;
}
.hero-kicker::before { content: ''; width: .35rem; height: .35rem; border-radius: 50%; background: var(--c-orange); }
.hero-title { font-size: clamp(2rem, 5vw, 4.8rem); font-family: var(--font-d); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.25rem; }
.hero-title em { font-style: italic; color: var(--c-orange); }
.hero-desc { color: var(--c-muted); line-height: 1.75; margin-bottom: 1rem; font-size: clamp(.95rem, 1.5vw, 1.1rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--c-divider); }
.proof-item { display: flex; align-items: center; gap: .45rem; font-size: .78rem; font-weight: 600; color: var(--c-faint); }
.proof-dot { width: .35rem; height: .35rem; border-radius: 50%; background: var(--c-orange); flex-shrink: 0; }

/* Badge sur photo hero */
.hero-card-side {
  background: linear-gradient(135deg, var(--c-orange-light), var(--c-grey-light));
  border: 1px solid rgba(255,156,28,.15); border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem; margin-top: 1rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.badge-list { display: flex; flex-direction: column; gap: .5rem; }
.badge-row { display: flex; align-items: center; gap: .6rem; font-size: .84rem; font-weight: 500; color: var(--c-muted); }
.badge-check { width: 18px; height: 18px; border-radius: 50%; background: var(--c-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }



/* ─── CARTES SERVICE ─────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(255,156,28,.2); }
.service-card.featured { background: var(--c-orange); color: #fff; border-color: transparent; box-shadow: var(--sh-orange); }
.service-card.featured .body-sm { color: rgba(255,255,255,.82); }
.service-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.service-icon-default  { background: var(--c-orange-light); color: var(--c-orange); }
.service-icon-featured { background: rgba(255,255,255,.2); color: #fff; }

/* ─── BANDES ─────────────────────────────────────────────── */
.band { border-radius: var(--r-xl); padding: clamp(1.75rem, 4vw, 3rem); border: 1px solid var(--c-border); }
.band-neutral   { background: var(--c-surface); }
.band-teal      { background: var(--c-orange); color: #fff; border-color: transparent; box-shadow: var(--sh-orange); }
.band-teal .text-muted { color: rgba(255,255,255,.75); }
.band-teal .eyebrow    { color: rgba(255,255,255,.7); }
.band-teal .eyebrow::before { background: rgba(255,255,255,.7); }
.band-editorial { background: linear-gradient(135deg, var(--c-orange-light), var(--c-grey-light)); border-color: rgba(255,156,28,.1); }

/* ─── PROCESS TIMELINE ───────────────────────────────────── */
.process-list { display: grid; gap: 0; }
.process-item {
  display: grid; grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem; position: relative; padding-bottom: 2rem;
}
.process-item:last-child { padding-bottom: 0; }
.process-item::before {
  content: ''; position: absolute;
  left: 1.15rem; top: 2.75rem; bottom: 0;
  width: 2px; background: var(--c-grey-light); border: 1px dashed var(--c-grey);
}
.process-item:last-child::before { display: none; }
.process-num {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--c-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 5px rgba(255,156,28,.12);
}
.process-body { padding-top: .25rem; }
.process-body h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 400; margin-bottom: .4rem; color: var(--c-text); }

/* ─── CHIPS ──────────────────────────────────────────────── */
.chip-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip { padding: .32rem .8rem; border-radius: var(--r-pill); font-size: .78rem; font-weight: 600; background: var(--c-orange-soft); color: var(--c-orange-deep); border: 1px solid rgba(255,156,28,.2); }

/* ─── PRECISION GRID ─────────────────────────────────────── */
.prec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.prec-item { background: var(--c-surface-2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 1.25rem; }
.prec-label { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--c-orange); margin-bottom: .5rem; }

/* ─── PULLQUOTE ──────────────────────────────────────────── */
.pullquote {
  font-family: var(--font-d); font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-style: italic; line-height: 1.5; color: var(--c-text);
  padding-left: 1.5rem; border-left: 3px solid var(--c-orange);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-row { display: grid; gap: .35rem; padding: .8rem 0; border-bottom: 1px solid var(--c-divider); }
.contact-row:last-child { border-bottom: none; }
.contact-row dt { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-faint); }
.contact-row dd { font-size: .95rem; color: var(--c-text); }
.contact-row dd a { color: var(--c-orange); font-weight: 600; }

/* ─── PLATEFORME B2B ─────────────────────────────────────── */
.platform-card {
  background: var(--c-text); color: #fff;
  border-radius: var(--r-xl); padding: clamp(2rem, 4vw, 3.5rem);
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,156,28,.08); pointer-events: none;
}
.platform-card-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 1.75rem; position: relative; z-index: 1;
}
@media (min-width: 640px) {
  .platform-card-inner { grid-template-columns: 1fr auto; align-items: center; }
}
.platform-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,156,28,.15); color: var(--c-orange);
  padding: .32rem .85rem; border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(255,156,28,.25); margin-bottom: 1.25rem;
}
.platform-btns { display: flex; flex-direction: column; gap: .85rem; align-items: flex-start; }

/* ─── SECTION ALT ────────────────────────────────────────── */
.section-alt { background: var(--c-surface); }

/* ─── ENSEIGNES ──────────────────────────────────────────── */
.enseigne-strip {
  padding-block: 1.5rem;
  border-top: 1px solid var(--c-divider); border-bottom: 1px solid var(--c-divider);
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 2rem;
}
.enseigne-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-faint); flex-shrink: 0; padding-right: .9rem; border-right: 1px solid var(--c-divider);
}

/* ─── APPROCHE ───────────────────────────────────────────── */
.approach-list { display: grid; gap: 0; }
.approach-item {
  display: grid; grid-template-columns: 2.8rem 1fr;
  gap: 1.1rem; padding-block: 1.5rem;
  border-bottom: 1px solid var(--c-divider); align-items: start;
}
.approach-item:last-child { border-bottom: none; }
.approach-step { font-family: var(--font-d); font-size: 1.35rem; color: var(--c-orange); font-weight: 400; line-height: 1; padding-top: .15rem; }
.approach-body h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 400; margin-bottom: .35rem; color: var(--c-text); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { padding-block: 3rem; border-top: 2px solid var(--c-orange); background: var(--c-text); }
.footer, .footer a { color: rgba(255,255,255,.7); }
.footer .logo-name { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,.4); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--dur); }
.footer-nav a:hover { color: var(--c-orange); }
.footer-section-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .9rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .82rem; }
.legal-links { display: flex; gap: 1.25rem; }
.legal-links a { font-size: .78rem; color: rgba(255,255,255,.3); }
.legal-links a:hover { color: rgba(255,255,255,.65); }

/* ─── REVEALS ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-fast { opacity: 0; transition: opacity .5s var(--ease); }
.reveal-fast.in { opacity: 1; }

/* ─── UTILITAIRES MOBILE ─────────────────────────────────── */
@media (max-width: 599px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .prec-grid { grid-template-columns: 1fr; }
  .band-teal.col-2 { grid-template-columns: 1fr; }
  .platform-card-inner { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .reveal-fast { opacity: 1; transform: none; }
}

/* ─── PHOTOS : conteneurs en position relative, images en absolute ─── */
/* Garantit que object-fit:cover fonctionne sans déformation */

.hero-photo {
  position: relative;
  height: clamp(300px, 48vw, 560px);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,20,20,.4) 100%);
  pointer-events: none; z-index: 1;
}
.hero-photo-badges {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 2;
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.hero-photo-badge {
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: var(--r-pill); padding: .35rem .85rem;
  font-size: .75rem; font-weight: 700; color: var(--c-text);
}
.hero-photo-badge span { color: var(--c-orange); }

.split-photo {
  position: relative;
  height: clamp(280px, 42vw, 520px);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.photo-band img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-band-overlay {
  position: absolute; inset: 0;
  background: rgba(20,20,20,.68);
  z-index: 1;
}
.photo-band-content {
  position: relative; z-index: 2;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.service-card-photo {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: .5rem;
  flex-shrink: 0;
}
.service-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.service-card:hover .service-card-photo img { transform: scale(1.04); }

.family-card-photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.family-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.band:hover .family-card-photo img { transform: scale(1.03); }

/* Photo inline (dans un div avec hauteur fixe explicite) */
.inline-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.inline-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
