/* Template H: Vitrine Bijou — Fanta's Mania Les Abymes */
@import url('tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ——— TYPOGRAPHY ——— */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--color-secondary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }

/* ——— LAYOUT ——— */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 4rem 0; }

/* ——— NAV ——— */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.nav-logo img, .nav-logo svg { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.nav-logo-text span { color: var(--color-secondary); }

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-secondary); }

.nav-cta {
  display: none;
  background: var(--color-secondary);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-accent); color: #fff !important; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* mobile menu open */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--color-primary);
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  z-index: 99;
}
.nav-mobile-open .nav-links a { font-size: 1.1rem; }
.nav-mobile-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
}

/* ——— HERO ——— */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color-secondary) 25%, transparent) 0%,
    transparent 55%,
    color-mix(in srgb, var(--color-accent) 15%, transparent) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
.hero-label {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-secondary);
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 1.75rem;
}
.hero-desc { color: rgba(255,255,255,0.7); max-width: 520px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--color-secondary); color: #fff; }
.btn-primary:hover { background: var(--color-accent); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-dark { background: var(--color-primary); color: #fff; }
.btn-dark:hover { background: var(--color-secondary); color: #fff; }

.hero-visual {
  display: none;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: center;
  }
  .hero-visual {
    display: block;
  }
}

/* ——— ATOUTS ——— */
.atouts-grid {
  display: grid;
  gap: 1.5rem;
}
.atout-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--color-secondary);
}
.atout-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.atout-card h3 { color: var(--color-primary); }
.atout-card p { color: #555; margin-bottom: 0; }

@media (min-width: 640px) { .atouts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .atouts-grid { grid-template-columns: repeat(3, 1fr); } }

/* ——— COLLECTIONS SECTION ——— */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.section-header { margin-bottom: 2.5rem; }

.collections-grid {
  display: grid;
  gap: 1.5rem;
}
.collection-card {
  background: var(--color-bg);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
}
.collection-card:hover {
  box-shadow: 0 6px 28px rgba(225,29,72,0.12);
  transform: translateY(-3px);
}
.collection-card-body { padding: 1.25rem; }
.collection-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.collection-card h3 { font-size: 1.1rem; }
.collection-card p { font-size: 0.9rem; color: #666; margin-bottom: 0.75rem; }
.collection-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.collection-card ul li {
  font-size: 0.78rem;
  background: color-mix(in srgb, var(--color-secondary) 10%, var(--color-bg));
  color: var(--color-accent);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}

@media (min-width: 640px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }

/* ——— ABOUT ——— */
.about-section { background: var(--color-primary); color: #fff; }
.about-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.about-section h2 { color: #fff; }
.about-section .section-label { color: var(--color-secondary); }
.about-text p { color: rgba(255,255,255,0.8); }
.about-highlight {
  background: color-mix(in srgb, var(--color-secondary) 15%, transparent);
  border-left: 4px solid var(--color-secondary);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 6px 6px 0;
}
.about-highlight p {
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0;
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1fr; }
}

/* ——— CTA BAND ——— */
.cta-band {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.7); }

/* ——— CONTACT ——— */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: color-mix(in srgb, var(--color-secondary) 12%, var(--color-bg));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text { font-size: 0.92rem; color: #555; line-height: 1.5; }
.contact-detail-text strong { color: var(--color-primary); }

.contact-form { }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary) 15%, transparent);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 0.5rem; }

.form-rgpd {
  font-size: 0.78rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.5;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap iframe { height: 380px; }
}

/* ——— ABOUT PAGE ——— */
.about-hero { background: var(--color-primary); color: #fff; padding: 4rem 0; }
.about-hero h1 { color: #fff; }
.about-hero p { color: rgba(255,255,255,0.75); max-width: 600px; }

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid color-mix(in srgb, var(--color-secondary) 30%, var(--color-bg));
  margin: 2rem 0;
}
.timeline-item { margin-bottom: 2rem; position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1.05rem; }
.timeline-item p { color: #666; margin: 0.25rem 0 0; font-size: 0.9rem; }

/* ——— COLLECTIONS PAGE ——— */
.collections-hero { background: var(--color-primary); color: #fff; padding: 4rem 0; }
.collections-hero h1 { color: #fff; }
.collections-hero p { color: rgba(255,255,255,0.75); }

.collections-full {
  display: grid;
  gap: 2rem;
}
.collection-full-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}
.collection-full-body { padding: 1.5rem; }
.collection-full-body h3 { color: var(--color-primary); }
.collection-full-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  color: #555;
  font-size: 0.92rem;
}
.collection-full-body ul li { margin-bottom: 0.3rem; }

@media (min-width: 768px) { .collections-full { grid-template-columns: repeat(2, 1fr); } }

/* ——— FOOTER ——— */
footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  gap: 2rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-text span { color: var(--color-secondary); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.4rem; }
.footer-links ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-links ul a:hover { color: var(--color-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--color-secondary); }

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ——— VISUAL PLACEHOLDER ——— */
.visual-placeholder {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-primary) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-primary) 10%, var(--color-bg)) 55%,
      color-mix(in srgb, var(--color-secondary) 18%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-aspect="4:3"]  { aspect-ratio: 4 / 3; }
.visual-placeholder[data-aspect="1:1"]  { aspect-ratio: 1 / 1; }
.visual-placeholder[data-aspect="3:4"]  { aspect-ratio: 3 / 4; }
.visual-placeholder[data-aspect="21:9"] { aspect-ratio: 21 / 9; }

.visual-placeholder[data-tone="secondary"] {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-secondary) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-secondary) 10%, var(--color-bg)) 55%,
      color-mix(in srgb, var(--color-primary) 16%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-tone="accent"] {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-accent, var(--color-primary)) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-primary) 12%, var(--color-bg)) 60%,
      color-mix(in srgb, var(--color-secondary) 16%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-tone="muted"] {
  background: color-mix(in srgb, var(--color-text) 8%, var(--color-bg));
}

/* hero placeholder in dark context */
.hero .visual-placeholder {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-secondary) 30%, #18181B) 0%,
      color-mix(in srgb, var(--color-accent) 20%, #18181B) 60%,
      color-mix(in srgb, var(--color-secondary) 10%, #18181B) 100%
    );
}

/* ——— UTILS ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— MENTIONS LÉGALES ——— */
.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 { margin-bottom: 2rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.legal-section p, .legal-section ul { font-size: 0.92rem; color: #555; }
.legal-section ul { padding-left: 1.25rem; }

/* ——— MOTION PASS (WEB-8058) ———
   Toutes les animations décoratives sont opt-in via @media (prefers-reduced-motion: no-preference).
   Elles complètent — sans remplacer — le fade-in `.js-reveal` déjà posé par main.js. */
@media (prefers-reduced-motion: no-preference) {

  /* Hero entrance : label → titre → tagline → desc → actions → visuel */
  @keyframes fm-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes fm-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes fm-sheen {
    0%   { background-position: -180% 0; }
    60%  { background-position: 180% 0; }
    100% { background-position: 180% 0; }
  }
  @keyframes fm-pulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, #fff 45%, transparent); }
    50%      { box-shadow: 0 0 0 10px color-mix(in srgb, #fff 0%, transparent); }
  }

  .hero-content > * {
    opacity: 0;
    animation: fm-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .hero-content > .hero-label   { animation-delay: 0.05s; }
  .hero-content > h1            { animation-delay: 0.18s; }
  .hero-content > .hero-tagline { animation-delay: 0.34s; }
  .hero-content > .hero-desc    { animation-delay: 0.46s; }
  .hero-content > .hero-actions { animation-delay: 0.58s; }
  .hero-visual {
    opacity: 0;
    animation: fm-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s both;
  }

  /* Titre : accent en italique glisse dans une teinte accent doré/rose */
  .hero h1 em {
    background: linear-gradient(90deg,
      var(--color-secondary) 0%,
      color-mix(in srgb, var(--color-secondary) 55%, #fff) 50%,
      var(--color-secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fm-sheen 6s ease-in-out infinite;
  }

  /* Nav : soulignement animé au survol */
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  /* Boutons : lift subtil au hover */
  .btn { will-change: transform; }
  .btn-primary:hover,
  .btn-dark:hover { transform: translateY(-2px); }
  .btn-outline:hover { transform: translateY(-1px); }

  /* CTA band : halo respirant sur le bouton principal */
  .cta-band .btn-outline { animation: fm-pulse 3.2s ease-in-out infinite; }
  .cta-band .btn-outline:hover { animation-play-state: paused; }

  /* Atouts : reveal séquencé (main.js pose .js-reveal.visible) */
  .atout-card.js-reveal { transition-duration: 0.6s; }
  .atouts-grid .atout-card:nth-child(1).js-reveal { transition-delay: 0s; }
  .atouts-grid .atout-card:nth-child(2).js-reveal { transition-delay: 0.09s; }
  .atouts-grid .atout-card:nth-child(3).js-reveal { transition-delay: 0.18s; }
  .atout-card { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
  .atout-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .atout-icon { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); display: inline-block; }
  .atout-card:hover .atout-icon { transform: scale(1.15) rotate(-6deg); }

  /* Collections grid : reveal séquencé + hover lift renforcé */
  .collection-card.js-reveal { transition-duration: 0.55s; }
  .collections-grid .collection-card:nth-child(1).js-reveal { transition-delay: 0s; }
  .collections-grid .collection-card:nth-child(2).js-reveal { transition-delay: 0.08s; }
  .collections-grid .collection-card:nth-child(3).js-reveal { transition-delay: 0.16s; }
  .collections-grid .collection-card:nth-child(4).js-reveal { transition-delay: 0.24s; }

  /* Timeline (a-propos) : révélation en cascade */
  .timeline-item.js-reveal { transition-duration: 0.55s; }
  .timeline-item:nth-child(1).js-reveal { transition-delay: 0s; }
  .timeline-item:nth-child(2).js-reveal { transition-delay: 0.1s; }
  .timeline-item:nth-child(3).js-reveal { transition-delay: 0.2s; }
  .timeline-item:nth-child(4).js-reveal { transition-delay: 0.3s; }
  .timeline-item::before { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .timeline-item:hover::before { transform: scale(1.35); }

  /* Placeholders : dégradé qui glisse doucement (sans casser aspect-ratio) */
  .visual-placeholder {
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: fm-drift 14s ease-in-out infinite alternate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  @keyframes fm-drift {
    from { background-position: 0% 0%; }
    to   { background-position: 100% 100%; }
  }
  .collection-card:hover .visual-placeholder,
  .collection-full-card:hover .visual-placeholder {
    transform: scale(1.02);
  }

  /* Highlight citation dans about : légère respiration de la barre */
  .about-highlight { transition: transform 0.3s ease; }
  .about-highlight:hover { transform: translateX(3px); }

  /* Focus visible : halo élégant, cohérent charte fuchsia */
  a:focus-visible,
  button:focus-visible,
  .btn:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary) 55%, transparent),
                0 0 0 5px color-mix(in srgb, var(--color-secondary) 20%, transparent);
    border-radius: 4px;
    transition: box-shadow 0.2s ease;
  }
}

/* Reduced motion : neutralise tout, garantit contenu accessible statique */
@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .hero-visual { opacity: 1 !important; animation: none !important; }
  .hero h1 em { color: var(--color-secondary); background: none; -webkit-background-clip: initial; background-clip: initial; }
  .visual-placeholder { animation: none !important; }
}
