@import url('tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Visual Placeholders ── */
.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));
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.accent-gold { color: var(--color-accent); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { padding-block: 4rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}
.btn-primary:hover { background: #2d2d31; }

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-accent {
  background: var(--color-secondary);
  color: #fff;
}
.btn-accent:hover { background: #c91a40; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 12%, var(--color-bg));
  box-shadow: 0 1px 8px rgb(0 0 0 / 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo-link img { height: 40px; width: auto; }

.nav-main ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-main a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-main a:hover,
.nav-main a[aria-current="page"] {
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-bg));
  color: var(--color-secondary);
}

.nav-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 65px;
  background: var(--color-bg);
  z-index: 90;
  padding: 2rem 1.25rem;
  border-top: 3px solid var(--color-secondary);
}
.mobile-nav.is-open { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav a {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 10%, var(--color-bg));
}
.mobile-nav a:hover { color: var(--color-secondary); }
.mobile-nav .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  padding-block: 4rem;
  background: color-mix(in srgb, var(--color-primary) 3%, var(--color-bg));
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero-text { order: 1; }
.hero-visual { order: 2; }

.hero h1 { margin-bottom: 1.25rem; }
.hero-tagline {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--color-text) 75%, var(--color-bg));
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Features / Cards ── */
.features {
  background: var(--color-bg);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: color-mix(in srgb, var(--color-primary) 3%, var(--color-bg));
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: color-mix(in srgb, var(--color-text) 80%, var(--color-bg)); font-size: 0.95rem; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-secondary) 12%, var(--color-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* ── Section label ── */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: color-mix(in srgb, var(--color-text) 70%, var(--color-bg));
  max-width: 52ch;
  margin-inline: auto;
}

/* ── Products / Services section ── */
.products-section { background: color-mix(in srgb, var(--color-primary) 3%, var(--color-bg)); }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.06);
}
.product-card-body { padding: 1.5rem; }
.product-card h3 { margin-bottom: 0.25rem; }
.product-card .card-desc {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--color-text) 70%, var(--color-bg));
  margin-bottom: 1rem;
}
.product-card ul {
  list-style: none;
  padding: 0;
}
.product-card ul li {
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 8%, var(--color-bg));
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.product-card ul li::before { content: "•"; color: var(--color-secondary); flex-shrink: 0; }
.product-card ul li:last-child { border-bottom: none; }

/* ── CTA Band ── */
.cta-band {
  background: var(--color-primary);
  color: var(--color-bg);
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-bg); margin-bottom: 1rem; }
.cta-band p { color: color-mix(in srgb, var(--color-bg) 80%, var(--color-primary)); margin-bottom: 2rem; max-width: 52ch; margin-inline: auto; }
.cta-band .btn-accent { font-size: 1rem; padding: 0.875rem 2rem; }
.cta-band .btn-ghost {
  background: transparent;
  color: var(--color-bg);
  border: 2px solid color-mix(in srgb, var(--color-bg) 40%, var(--color-primary));
}
.cta-band .btn-ghost:hover {
  border-color: var(--color-bg);
  background: color-mix(in srgb, var(--color-bg) 10%, var(--color-primary));
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── Gold bar accent ── */
.gold-bar { height: 4px; background: var(--color-accent); }

/* ── About ── */
.about-section { background: var(--color-bg); }
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: color-mix(in srgb, var(--color-text) 85%, var(--color-bg)); }
.about-text p + p { margin-top: 1rem; }

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.values-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Contact ── */
.contact-section { background: color-mix(in srgb, var(--color-primary) 3%, var(--color-bg)); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info h3 { margin-bottom: 1.25rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-secondary) 12%, var(--color-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.info-content strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-secondary); margin-bottom: 0.2rem; }
.info-content a:hover { color: var(--color-secondary); }

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Contact Form ── */
.contact-form-section { background: var(--color-bg); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 20%, var(--color-bg));
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-legal {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--color-text) 55%, var(--color-bg));
  line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-primary);
  color: color-mix(in srgb, var(--color-bg) 80%, var(--color-primary));
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.75; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.footer-col ul a:hover { opacity: 1; }
.footer-col address { font-style: normal; font-size: 0.9rem; opacity: 0.75; line-height: 1.8; }
.footer-col address a { opacity: 1; }
.footer-col address a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-bg) 15%, var(--color-primary));
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: color-mix(in srgb, var(--color-primary) 5%, var(--color-bg));
  padding-block: 3.5rem;
  border-bottom: 3px solid var(--color-secondary);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: color-mix(in srgb, var(--color-text) 70%, var(--color-bg)); max-width: 60ch; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mentions légales ── */
.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 3rem;
}
.legal-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.legal-content p, .legal-content address { margin-bottom: 1rem; }

/* ── Tablet ── */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-footer { flex-direction: row; align-items: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-main { display: block; }
  .nav-cta { display: flex; }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .hero-text { flex: 1; order: 1; }
  .hero-visual { flex: 1; order: 2; }

  .about-inner { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .about-text { flex: 1; }
  .about-visual { flex: 1; }

  .contact-grid { grid-template-columns: 1fr 1fr; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

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

/* ═══════════════════════════════════════════════════════════
   Animation pass — WEB-5666
   Boutique élégante afro-caribéenne : gestes discrets, or/rose,
   micro-interactions qui soutiennent la grammaire éditoriale.
   Tout est encapsulé sous prefers-reduced-motion: no-preference.
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {

  /* — Reveal : easing plus soyeux + stagger sur les grilles — */
  .reveal {
    transition:
      opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
  }
  .features-grid .feature-card.reveal,
  .products-grid .product-card.reveal,
  .about-inner .about-visual.reveal {
    transition-delay: 0s;
  }
  .features-grid .feature-card.reveal:nth-child(2),
  .products-grid .product-card.reveal:nth-child(2) { transition-delay: 90ms; }
  .features-grid .feature-card.reveal:nth-child(3),
  .products-grid .product-card.reveal:nth-child(3) { transition-delay: 180ms; }
  .products-grid .product-card.reveal:nth-child(4)  { transition-delay: 270ms; }

  /* — Boutons : lift subtil + reflet doré balayé — */
  .btn {
    position: relative;
    overflow: hidden;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
      box-shadow 0.25s ease;
  }
  .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 20%,
      color-mix(in srgb, var(--color-accent, #fff) 55%, transparent) 50%,
      transparent 80%
    );
    transform: translateX(-120%);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0;
  }
  .btn:hover::after,
  .btn:focus-visible::after {
    transform: translateX(120%);
    opacity: 1;
  }
  .btn:hover,
  .btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -10px color-mix(in srgb, var(--color-primary) 55%, transparent);
  }
  .btn:active { transform: translateY(0); box-shadow: none; }

  /* — Nav : underline or qui glisse — */
  .nav-main a {
    position: relative;
  }
  .nav-main a::after {
    content: "";
    position: absolute;
    left: 0.875rem;
    right: 0.875rem;
    bottom: 4px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav-main a:hover::after,
  .nav-main a:focus-visible::after,
  .nav-main a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  /* — Cartes : lift + halo secondaire — */
  .feature-card,
  .product-card,
  .info-item {
    transition:
      transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--color-accent);
    box-shadow: 0 14px 30px -18px color-mix(in srgb, var(--color-primary) 45%, transparent);
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px -18px color-mix(in srgb, var(--color-primary) 40%, transparent);
  }
  .feature-icon,
  .info-icon {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                background 0.3s ease;
  }
  .feature-card:hover .feature-icon,
  .info-item:hover .info-icon {
    transform: rotate(-6deg) scale(1.08);
    background: color-mix(in srgb, var(--color-secondary) 22%, var(--color-bg));
  }

  /* — Visual placeholders : dégradé qui respire + reflet au hover — */
  .visual-placeholder {
    position: relative;
    overflow: hidden;
    background-size: 180% 180%;
    background-position: 0% 0%;
    animation: afk-visual-drift 22s ease-in-out infinite alternate;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .visual-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      115deg,
      transparent 35%,
      color-mix(in srgb, var(--color-accent, #fff) 30%, transparent) 50%,
      transparent 65%
    );
    transform: translateX(-110%);
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
  }
  .hero-visual:hover .visual-placeholder::before,
  .about-visual:hover .visual-placeholder::before,
  .product-card:hover .visual-placeholder::before {
    transform: translateX(110%);
  }
  .hero-visual:hover .visual-placeholder,
  .about-visual:hover .visual-placeholder {
    transform: scale(1.015);
  }
  @keyframes afk-visual-drift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }

  /* — Barre or : légère pulsation lumineuse — */
  .gold-bar {
    background: linear-gradient(
      90deg,
      var(--color-accent) 0%,
      color-mix(in srgb, var(--color-accent) 60%, #fff 40%) 50%,
      var(--color-accent) 100%
    );
    background-size: 200% 100%;
    animation: afk-gold-shimmer 6s ease-in-out infinite;
  }
  @keyframes afk-gold-shimmer {
    0%, 100% { background-position: 0% 0%; }
    50%      { background-position: 100% 0%; }
  }

  /* — Values list : coche qui vibre à l'apparition — */
  .values-list li {
    opacity: 0;
    transform: translateX(-8px);
    animation: afk-value-in 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }
  .about-text.is-visible .values-list li:nth-child(1) { animation-delay: 0.15s; }
  .about-text.is-visible .values-list li:nth-child(2) { animation-delay: 0.28s; }
  .about-text.is-visible .values-list li:nth-child(3) { animation-delay: 0.41s; }
  .values-list li:not(:where(.about-text.is-visible .values-list li)) {
    opacity: 1; transform: none; animation: none;
  }
  @keyframes afk-value-in {
    to { opacity: 1; transform: translateX(0); }
  }

  /* — CTA band : rappel or au survol des ghost/accent — */
  .cta-band .btn-ghost:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }

  /* — Liens footer : underline discret — */
  .footer-col ul a,
  .footer-col address a {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease, opacity 0.2s ease;
  }
  .footer-col ul a:hover,
  .footer-col address a:hover {
    background-size: 100% 1px;
  }

  /* — Logo : soupçon d'inclinaison au survol — */
  .logo-link img,
  .footer-brand .footer-logo {
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .logo-link:hover img { transform: scale(1.03); }
}

/* Filet de sécurité global : coupe toute animation/transition
   quand l'utilisateur a demandé "reduce" au niveau OS. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus-visible élégant sur tous les interactifs — reste actif
   même sous prefers-reduced-motion (a11y > motion) */
.btn:focus-visible,
.nav-main a:focus-visible,
.mobile-nav a:focus-visible,
.footer-col a:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
