/* ============================================================
   TROPICAL DREAM — style.css
   Mobile-first | Playfair Display + Source Sans 3
   ============================================================ */

/* ---- Custom properties (design tokens) ---- */
:root {
  --color-primary: #0C6E84;
  --color-primary-dark: #095C6E;
  --color-secondary: #FBBF24;
  --color-accent: #D97706;
  --color-bg: #FFFFFF;
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-surface: #F9FAFB;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-card: 0 2px 12px rgba(12, 110, 132, 0.10);
  --shadow-hover: 0 8px 24px rgba(12, 110, 132, 0.18);

  --spacing-section: 3rem;
  --max-width: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1rem;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}
section { padding: var(--spacing-section) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

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

/* ---- Visual Placeholders (WEB-715) ---- */
.visual-placeholder {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  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));
}

/* Charte graphique — specific gradients */
.visual-placeholder--hero {
  background: linear-gradient(135deg, #0C6E84 0%, #0891B2 50%, #06B6D4 100%);
}
.visual-placeholder--hebergement {
  background: linear-gradient(135deg, #065F46 0%, #059669 60%, #FBBF24 100%);
}
.visual-placeholder--vehicules {
  background: linear-gradient(135deg, #1E3A5F 0%, #0C6E84 60%, #D97706 100%);
}
.visual-placeholder--bienetre {
  background: linear-gradient(135deg, #0E7490 0%, #A7F3D0 60%, #FDE68A 100%);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.4;
  text-decoration: none;
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.btn-secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-accent {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
}
.btn-accent:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- Cards ---- */
.card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--color-secondary);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.card__body { padding: 1.5rem; }
.card__title {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.card__text { color: var(--color-text-muted); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  text-decoration: none;
}
.site-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.main-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.main-nav.is-open { display: block; }
.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--color-surface);
  color: var(--color-primary);
}
.nav-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}
.nav-cta a {
  display: inline-block;
  background: var(--color-primary) !important;
  color: #fff !important;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem !important;
  font-weight: 700;
  text-decoration: none;
}
.nav-cta a:hover { background: var(--color-primary-dark) !important; }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: block;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .main-nav a { padding: 0.4rem 0.65rem; font-size: 0.88rem; }
  .nav-cta { margin: 0; padding: 0; border: none; }
  .nav-cta a { margin-left: 0.5rem; padding: 0.45rem 1rem !important; }
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #0C6E84 0%, #0891B2 50%, #06B6D4 100%);
  color: #fff;
  padding: 3rem 0;
}
.hero__inner { display: grid; gap: 2rem; }
.hero__content { order: 2; }
.hero__visual { order: 1; }

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero__sub { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }
.hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.hero__perk {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero .cta-group .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.hero .cta-group .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.hero__visual .visual-placeholder {
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.hero__ratings {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero { padding: 4.5rem 0; }
  .hero__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero__content { order: 1; }
  .hero__visual { order: 2; }
}
@media (min-width: 1024px) { .hero { padding: 5.5rem 0; } }

/* ---- Rating badges ---- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}
.rating-badge:hover { background: rgba(255, 255, 255, 0.25); color: #fff; }
.rating-badge .stars { color: var(--color-secondary); }

.rating-badge--light {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.rating-badge--light:hover { border-color: var(--color-primary); color: var(--color-text); }
.rating-badge--light .stars { color: var(--color-secondary); }

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--color-secondary) 20%, var(--color-bg));
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ---- Background variants ---- */
.bg-surface { background: var(--color-surface); }
.bg-primary-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0891B2 100%);
  color: #fff;
}
.bg-primary-gradient h2,
.bg-primary-gradient h3,
.bg-primary-gradient p,
.bg-primary-gradient .section-tag { color: #fff; }
.bg-primary-gradient .section-tag { background: rgba(255,255,255,0.15); }

/* ---- Service cards ---- */
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* ---- Two-column content ---- */
.content-2col {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .content-2col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .content-2col--reverse .content-2col__visual { order: -1; } }

/* ---- Features list ---- */
.features-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.features-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.features-list .fi {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0C6E84 0%, #0891B2 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; }
@media (min-width: 768px) { .page-hero { padding: 4rem 0; } }

/* ---- Reviews ---- */
.reviews-summary {
  text-align: center;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
}
.reviews-summary__score {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}
.reviews-summary__stars { font-size: 1.75rem; color: var(--color-secondary); margin: 0.25rem 0; }
.reviews-summary__count { color: var(--color-text-muted); font-size: 0.9rem; }
.reviews-platforms {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}
.platform-badge:hover { border-color: var(--color-primary); color: var(--color-primary); }
.platform-badge .score { color: var(--color-primary); }

.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}
.review-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.review-card__author { font-weight: 700; font-size: 0.95rem; }
.review-card__date { color: var(--color-text-muted); font-size: 0.78rem; }
.review-card__stars { color: var(--color-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.review-card__text { font-size: 0.93rem; font-style: italic; line-height: 1.6; }
.review-attribution {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.review-attribution a { color: var(--color-text-muted); }

/* ---- Form ---- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(12, 110, 132, 0.15);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-notice { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 0.75rem; }

/* ---- Map ---- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-wrapper iframe { display: block; width: 100%; height: 300px; border: 0; }
@media (min-width: 768px) { .map-wrapper iframe { height: 400px; } }

/* ---- Contact info ---- */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info__icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--color-primary); margin-top: 2px; }
.contact-info__label { font-weight: 700; font-size: 0.8rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.1rem; }
.contact-info__value { color: var(--color-text); }
.contact-info__value a { color: var(--color-primary); font-weight: 700; }

/* ---- Footer ---- */
.site-footer {
  background: #0C3D4A;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}
.site-footer h3, .site-footer h4 { color: #fff; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { font-size: 0.88rem; margin-top: 0.5rem; margin-bottom: 1rem; opacity: 0.8; }
.footer-brand .site-logo { color: #fff; }
.footer-brand .site-logo span { color: rgba(255, 255, 255, 0.55); }
.footer-links h4 { margin-bottom: 0.75rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.88rem; transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: var(--color-secondary); }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.footer-tel:hover { background: var(--color-primary-dark); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: rgba(255, 255, 255, 0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--color-secondary); }

/* ---- Cookies banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 1rem 1.25rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.83rem; flex: 1; min-width: 200px; margin: 0; }
.cookie-banner a { color: var(--color-secondary); }
.cookie-banner.is-hidden { display: none; }

/* ============================================================
   ANIMATIONS — WEB-1221 (AnimationDesigner pass, 2026-05-29)
   ============================================================ */

/* Killswitch a11y — WCAG 2.3.1 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Focus-visible ring (accessible, sans contrainte motion) */
:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {

  /* 1. Hero entry — fade-up au chargement */
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero__content { animation: heroFadeUp 0.7s ease both; }
  .hero__visual  { animation: heroFadeUp 0.7s 0.2s ease both; }

  /* 2. Gradient glide sur les visual-placeholder */
  @keyframes placeholderGlide {
    from { background-position: 0% 40%; }
    to   { background-position: 100% 60%; }
  }
  .visual-placeholder {
    background-size: 200% 200%;
    animation: placeholderGlide 10s ease-in-out infinite alternate;
  }
  /* Rétablir background-size après override shorthand des variantes */
  .visual-placeholder--hero,
  .visual-placeholder--hebergement,
  .visual-placeholder--vehicules,
  .visual-placeholder--bienetre,
  .visual-placeholder[data-tone="secondary"],
  .visual-placeholder[data-tone="accent"],
  .visual-placeholder[data-tone="muted"] {
    background-size: 200% 200%;
  }

  /* 3. Scroll reveal (IO ajoute .is-revealed puis .is-visible) */
  .is-revealed {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .is-revealed.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger pour grilles de 3 */
  .grid-3 .card.is-revealed:nth-child(2),
  .reviews-grid .review-card.is-revealed:nth-child(2) { transition-delay: 0.12s; }
  .grid-3 .card.is-revealed:nth-child(3),
  .reviews-grid .review-card.is-revealed:nth-child(3) { transition-delay: 0.24s; }

  /* 4. Service card hover — placeholder scale dans overflow:hidden */
  .service-card .visual-placeholder {
    transition: transform 0.35s ease;
    will-change: transform;
  }
  .service-card:hover .visual-placeholder {
    transform: scale(1.04);
  }

  /* 5. CTA banner — halo doux sur btn-accent */
  @keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.45); }
    55%       { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  }
  .bg-primary-gradient .btn-accent {
    animation: ctaGlow 2.8s ease-in-out infinite;
  }

  /* 6. Focus-visible — offset glide */
  :focus-visible {
    transition: outline-offset 0.15s ease;
  }

}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
