  /* ====================== HERO ====================== */
  .hero {
    background: var(--turquoise);
    padding: 100px 60px 0;
    position: relative; overflow: hidden;
    min-height: 720px;
    isolation: isolate;
  }
  /* Photo de fond — façade extérieure avec logo MALLEY LUMIÈRES + végétation */
  .hero::before {
    content: "";
    position: absolute;
    /* étirement vertical pour éviter qu'on voie un bord lors du parallax */
    top: -60px; bottom: -60px; left: 0; right: 0;
    background-image: url("../photos/centre/dsc2043-1600.jpg");
    background-size: cover;
    background-position: center center;
    z-index: -2;
    opacity: 0.92;
    filter: saturate(1.05);
    /* Parallax : le JS met à jour la variable --hero-bg-y sur .hero au scroll */
    transform: translate3d(0, var(--hero-bg-y, 0px), 0);
    will-change: transform;
  }
  /* Wash anthracite/turquoise — préserve identité charte + lisibilité texte blanc */
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(54, 61, 67, 0.78) 0%, rgba(54, 61, 67, 0.40) 50%, rgba(116, 197, 196, 0.55) 100%);
    z-index: -1;
  }
  /* Mobile — photo 800w pour éviter download lourd */
  @media (max-width: 980px) {
    .hero::before {
      background-image: url("../photos/centre/dsc2043-800.jpg");
    }
  }
  .hero-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
    padding-bottom: 80px;
  }
  .hero-text { position: relative; z-index: 3; color: var(--white); }
  .hero .eyebrow {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px; letter-spacing: 6px; font-weight: 700; margin-bottom: 28px; text-transform: uppercase;
  }
  .hero h1 {
    font-family: 'Lato', sans-serif; font-weight: 900;
    font-size: 100px; line-height: 0.95; letter-spacing: -3px;
    margin-bottom: 8px;
  }
  .hero h1 .line2 { display: block; font-size: 100px; }
  .hero h1 .serif { font-size: 1.0em; color: var(--yellow); letter-spacing: 0; }
  .hero .tagline {
    font-family: 'DM Serif Display', serif; font-style: italic;
    font-size: 38px; color: var(--yellow); margin: 24px 0 32px; line-height: 1.1;
  }
  .hero .body { color: var(--white); font-size: 18px; max-width: 480px; margin-bottom: 40px; opacity: 0.95; line-height: 1.6; }
  .cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .cta { display: inline-block; padding: 16px 30px; border-radius: 100px; font-weight: 700; text-decoration: none; font-size: 15px; transition: all 0.25s; cursor: pointer; }
  .cta-primary { background: var(--white); color: var(--ink); }
  .cta-primary:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
  .cta-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
  .cta-secondary:hover { background: var(--white); color: var(--ink); }

  /* Luciole */
  .luciole-stage {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-height: 480px; z-index: 2;
  }
  .luciole-halo {
    position: absolute; width: 480px; height: 380px;
    background: radial-gradient(ellipse, rgba(253, 246, 183, 0.55) 0%, transparent 65%);
    pointer-events: none; filter: blur(8px);
  }
  .luciole {
    width: 280px; height: auto; z-index: 2;
    display: block; object-fit: contain;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
  }

  /* Étincelles autour de la luciole (V0 — en attente visuel graphiste Roxane) */
  .luciole-sparkles {
    position: absolute; inset: 0; pointer-events: none; z-index: 3;
  }
  .luciole-sparkle {
    position: absolute; width: 10px; height: 10px;
    background: radial-gradient(circle, var(--yellow) 0%, rgba(253, 246, 183, 0.6) 40%, transparent 75%);
    border-radius: 50%;
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(253, 246, 183, 0.6));
    animation: sparkle 3.2s ease-in-out infinite;
  }
  /* 14 étincelles disséminées tout autour de la luciole — couleurs charte alternées */
  .luciole-sparkle:nth-child(1)  { top: 12%;  left: 18%; width: 14px; height: 14px; animation-delay: 0s;   }
  .luciole-sparkle:nth-child(2)  { top: 26%;  left: 78%; width: 9px;  height: 9px;  animation-delay: 0.4s; }
  .luciole-sparkle:nth-child(3)  { top: 58%;  left: 10%; width: 12px; height: 12px; animation-delay: 0.8s; }
  .luciole-sparkle:nth-child(4)  { top: 70%;  left: 72%; width: 11px; height: 11px; background: radial-gradient(circle, var(--cyan) 0%, rgba(234, 246, 254, 0.5) 40%, transparent 75%); animation-delay: 1.2s; }
  .luciole-sparkle:nth-child(5)  { top: 44%;  left: 88%; width: 7px;  height: 7px;  animation-delay: 1.6s; }
  .luciole-sparkle:nth-child(6)  { top: 8%;   left: 56%; width: 9px;  height: 9px;  background: radial-gradient(circle, var(--turquoise) 0%, rgba(116, 197, 196, 0.5) 40%, transparent 75%); animation-delay: 2.0s; }
  .luciole-sparkle:nth-child(7)  { top: 36%;  left: 6%;  width: 8px;  height: 8px;  animation-delay: 0.2s; }
  .luciole-sparkle:nth-child(8)  { top: 84%;  left: 32%; width: 10px; height: 10px; animation-delay: 0.6s; }
  .luciole-sparkle:nth-child(9)  { top: 22%;  left: 42%; width: 7px;  height: 7px;  background: radial-gradient(circle, var(--cyan) 0%, rgba(234, 246, 254, 0.5) 40%, transparent 75%); animation-delay: 1.0s; }
  .luciole-sparkle:nth-child(10) { top: 52%;  left: 38%; width: 6px;  height: 6px;  animation-delay: 1.4s; }
  .luciole-sparkle:nth-child(11) { top: 88%;  left: 60%; width: 8px;  height: 8px;  background: radial-gradient(circle, var(--turquoise) 0%, rgba(116, 197, 196, 0.5) 40%, transparent 75%); animation-delay: 1.8s; }
  .luciole-sparkle:nth-child(12) { top: 4%;   left: 84%; width: 11px; height: 11px; animation-delay: 2.2s; }
  .luciole-sparkle:nth-child(13) { top: 64%;  left: 92%; width: 8px;  height: 8px;  animation-delay: 0.5s; }
  .luciole-sparkle:nth-child(14) { top: 38%;  left: 64%; width: 6px;  height: 6px;  background: radial-gradient(circle, var(--cyan) 0%, rgba(234, 246, 254, 0.5) 40%, transparent 75%); animation-delay: 1.5s; }

  @keyframes sparkle {
    0%, 100%  { opacity: 0;    transform: scale(0.3); }
    30%, 70%  { opacity: 1;    transform: scale(1.15); }
  }

  /* Mobile/tablette : étincelles plus nombreuses & plus vives (zoom moins propre) */
  @media (max-width: 980px) {
    .luciole-sparkle {
      animation-duration: 2.6s;
      filter: drop-shadow(0 0 6px rgba(253, 246, 183, 0.85));
    }
    /* Boost taille global de 40% pour compenser viewport réduit */
    .luciole-sparkle:nth-child(1)  { width: 18px; height: 18px; }
    .luciole-sparkle:nth-child(2)  { width: 12px; height: 12px; }
    .luciole-sparkle:nth-child(3)  { width: 16px; height: 16px; }
    .luciole-sparkle:nth-child(4)  { width: 14px; height: 14px; }
    .luciole-sparkle:nth-child(5)  { width: 10px; height: 10px; }
    .luciole-sparkle:nth-child(6)  { width: 12px; height: 12px; }
    .luciole-sparkle:nth-child(7)  { width: 11px; height: 11px; }
    .luciole-sparkle:nth-child(8)  { width: 13px; height: 13px; }
    .luciole-sparkle:nth-child(9)  { width: 10px; height: 10px; }
    .luciole-sparkle:nth-child(10) { width: 9px;  height: 9px;  }
    .luciole-sparkle:nth-child(11) { width: 11px; height: 11px; }
    .luciole-sparkle:nth-child(12) { width: 14px; height: 14px; }
    .luciole-sparkle:nth-child(13) { width: 11px; height: 11px; }
    .luciole-sparkle:nth-child(14) { width: 9px;  height: 9px;  }
  }

  @media (prefers-reduced-motion: reduce) {
    .luciole-sparkle, .luciole { animation: none; }
  }

  /* Pattern barres animé en bas du hero */
  .bars-pattern {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; align-items: flex-end; justify-content: center;
    gap: 10px; padding: 0 60px; height: 100px; z-index: 1;
  }
  .bars-pattern .bar {
    width: 20px; background: var(--white); border-radius: 4px 4px 0 0;
    transform-origin: bottom; opacity: 0;
    animation: revealBar 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .bars-pattern .bar.alt-y { background: var(--yellow); }
  .bars-pattern .bar.alt-c { background: var(--cyan); }
  .bars-pattern .bar.alt-l { background: rgba(255, 255, 255, 0.55); }
  .bars-pattern .bar.alt-g { background: rgba(54, 61, 67, 0.18); }
  @keyframes revealBar {
    from { opacity: 0; transform: scaleY(0); }
    to { opacity: 1; transform: scaleY(1); }
  }
  .bars-pattern .bar.live { animation: wave 4s ease-in-out infinite; animation-delay: var(--d, 0s); }
  @keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(var(--peak, 1.15)); }
  }

  /* ====================== STATS ====================== */
  .stats { padding: 100px 60px; background: var(--white); text-align: center; }
  .stats-row { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
  .stat-num { font-size: 88px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -3px; }
  .stat-num .serif { font-size: 0.8em; color: var(--turquoise); margin-left: 4px; }
  .stat-label { font-size: 13px; color: #6a6a6a; margin-top: 12px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; }

  /* ====================== SECTIONS ====================== */
  .section { padding: 110px 60px; position: relative; overflow: hidden; }
  .section-pastel-y { background: var(--yellow-soft); }
  .section-pastel-c { background: var(--cyan); }
  .section-pastel-t { background: var(--turquoise); color: var(--white); }
  .section-grey { background: var(--grey-light); }
  .section-eyebrow { font-size: 13px; letter-spacing: 5px; color: var(--ink); font-weight: 700; margin-bottom: 16px; text-transform: uppercase; opacity: 0.8; }
  .section-pastel-t .section-eyebrow { color: var(--white); opacity: 0.85; }
  .section-title { font-size: 64px; font-weight: 900; color: var(--ink); letter-spacing: -2.5px; line-height: 1; margin-bottom: 16px; }
  .section-pastel-t .section-title { color: var(--white); }
  .section-title .serif { color: var(--turquoise); font-size: 1em; }
  .section-pastel-t .section-title .serif { color: var(--yellow); }
  .section-sub { font-size: 19px; color: var(--ink); opacity: 0.8; margin-bottom: 56px; max-width: 600px; }
  .section-pastel-t .section-sub { color: var(--white); opacity: 0.9; }

  /* Background bars decoration on pastel sections */
  .bg-bars {
    position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    display: flex; gap: 10px; align-items: flex-end; height: 240px; opacity: 0.4; pointer-events: none;
  }
  .bg-bars span { display: block; width: 14px; border-radius: 4px 4px 0 0; }
  .bg-bars span:nth-child(1) { height: 70%; background: var(--turquoise); }
  .bg-bars span:nth-child(2) { height: 100%; background: var(--white); }
  .bg-bars span:nth-child(3) { height: 50%; background: var(--yellow); opacity: 0.7; }
  .bg-bars span:nth-child(4) { height: 85%; background: var(--cyan); }
  .bg-bars span:nth-child(5) { height: 60%; background: var(--turquoise); opacity: 0.6; }

  /* ====================== CAROUSEL ENSEIGNES (auto-rotation + flèches) ====================== */
  .carousel-wrap {
    position: relative;
    margin: 0 -60px;
    padding: 8px 0;
  }
  .carousel-track {
    display: flex; gap: 24px; padding: 0 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
            mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  .car-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--ink);
    color: var(--ink); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: all 0.25s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 22px; font-weight: 900;
  }
  .car-arrow:hover {
    background: var(--ink); color: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  }
  .car-arrow-left { left: 12px; }
  .car-arrow-right { right: 12px; }
  .car-arrow:active { transform: translateY(-50%) scale(0.95); }
  .ens-card {
    background: var(--white); border-radius: 18px; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    flex: 0 0 300px;
    text-decoration: none; color: inherit;
    display: block;
  }
  .ens-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  .ens-photo {
    aspect-ratio: 4 / 3;
    background: var(--grey-light);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .ens-photo svg, .ens-photo .brand-logo {
    width: 70%; max-width: 200px; height: auto;
    position: relative; z-index: 2;
  }
  .brand-logo {
    font-family: 'Lato', sans-serif; font-weight: 900;
    font-size: 56px; letter-spacing: -2px;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .ens-photo.brand-migros { background: #FF6600; }
  .ens-photo.brand-denner { background: #E2231A; }
  .ens-photo.brand-poste  { background: #FFCC00; }
  .ens-photo.brand-pathe  { background: #000000; }
  .ens-photo.brand-fitness { background: #1A1A1A; }
  .ens-photo.brand-visilab { background: #009639; }
  .ens-photo.brand-amavita { background: #FFFFFF; border-bottom: 1px solid var(--grey-light); }
  .ens-photo.brand-resto  { background: #6B4226; }

  /* Variante photo devanture (vraie photo de l'enseigne uploadee en back-office) */
  .ens-photo--devanture {
    background: var(--ink);
    position: relative;
    isolation: isolate;
  }
  .ens-photo--devanture::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--ens-bg);
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
  }
  .ens-photo--devanture::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .ens-card--has-photo:hover .ens-photo--devanture::before { transform: scale(1.06); }
  .ens-photo__logo-badge {
    position: absolute;
    bottom: 12px; left: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 6px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: inline-flex; align-items: center;
    max-width: 60%;
  }
  .ens-photo__logo-badge img {
    height: 28px; width: auto; max-width: 100%;
    object-fit: contain; display: block;
  }
  .brand-migros .brand-logo { color: #FFFFFF; }
  .brand-denner .brand-logo { color: #FFFFFF; }
  .brand-poste .brand-logo  { color: #000000; }
  .brand-pathe .brand-logo  { color: #FFFFFF; }
  .brand-fitness .brand-logo { color: #FFD700; }
  .brand-visilab .brand-logo { color: #FFFFFF; }
  .brand-amavita .brand-logo { color: #E2231A; }
  .brand-resto .brand-logo  { color: #FFFFFF; }
  .ens-body { padding: 24px 24px 26px; }
  .ens-cat { font-size: 11px; color: #6a6a6a; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; }
  .ens-name { font-size: 22px; font-weight: 800; color: var(--ink); margin: 8px 0 12px; }
  .ens-hours { font-size: 13px; color: var(--grey); line-height: 1.5; }
  .ens-arrow {
    margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--turquoise);
  }
  .ens-card:hover .ens-arrow { gap: 10px; }
  .carousel-cta { text-align: center; margin-top: 48px; }
  .link-arrow { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--turquoise); padding-bottom: 4px; }
  .carousel-hint {
    text-align: center; margin-top: 24px; font-size: 12px;
    color: var(--ink); opacity: 0.5; letter-spacing: 2px;
  }

  /* ====================== SEARCH ====================== */
  .search-block { text-align: center; }
  .search-wrap {
    max-width: 720px; margin: 0 auto;
    background: var(--white); border-radius: 100px; padding: 6px 6px 6px 32px;
    display: flex; align-items: center; box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  }
  .search-wrap input {
    flex: 1; border: none; font-size: 17px; padding: 18px 0; outline: none;
    font-family: inherit; background: transparent; color: var(--ink);
  }
  .search-wrap input::placeholder { color: var(--grey); }
  .search-wrap button {
    background: var(--ink); color: var(--white); border: none;
    padding: 16px 32px; border-radius: 100px; font-weight: 700;
    cursor: pointer; font-family: inherit; font-size: 15px;
  }
  .search-wrap button:hover { background: var(--turquoise); }
  .filter-pills {
    display: flex; justify-content: center; gap: 10px; margin-top: 36px; flex-wrap: wrap;
  }
  .pill {
    padding: 11px 20px; border: 2px solid rgba(54, 61, 67, 0.12);
    border-radius: 100px; color: var(--ink); font-weight: 600; font-size: 14px;
    cursor: pointer; transition: all 0.2s; background: var(--white);
  }
  .pill:hover { border-color: var(--turquoise); color: var(--turquoise); }
  .pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

  /* ====================== SECTION VOTRE CENTRE ====================== */
  .features-row {
    display: grid; grid-template-columns: repeat(4, minmax(140px, 220px));
    gap: 24px; justify-content: center;
    max-width: 1120px; margin: 0 auto;
  }
  .feature-item {
    background: var(--white); border-radius: 16px; padding: 28px 16px;
    text-align: center; transition: transform 0.25s;
  }
  .feature-item:hover { transform: translateY(-4px); }
  .feature-icon { font-size: 36px; margin-bottom: 12px; display: block; }
  .feature-label { font-size: 13px; font-weight: 700; color: var(--ink); }
  .feature-value { font-size: 11px; color: var(--grey); margin-top: 4px; letter-spacing: 1px; }

  /* ====================== SECTION ACTUALITÉS ====================== */
  .news-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px;
  }
  .news-card {
    display: flex; flex-direction: column;
    background: var(--white); border: 1px solid var(--grey-light);
    border-radius: 16px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    cursor: pointer;
  }
  .news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
  .news-card-featured { grid-row: span 1; }
  /* Aspect ratio via padding-top (fonctionne partout, même iOS Safari < 15) */
  .news-photo {
    position: relative; width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: var(--grey-light);
    overflow: hidden;
  }
  .news-card-featured .news-photo {
    padding-top: 68.75%; /* 16:11 */
  }
  .news-photo > img,
  .news-photo > .news-emoji {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .news-photo > .news-emoji {
    display: flex; align-items: center; justify-content: center;
  }
  .news-emoji { font-size: 96px; }
  .news-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
  .news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
  .news-cat {
    font-size: 10px; letter-spacing: 3px; font-weight: 900;
    padding: 5px 10px 5px 14px; border-radius: 4px;
    color: var(--ink); position: relative;
  }
  /* Style bulle pour la catégorie (petit pointeur à gauche) */
  .news-cat::before {
    content: ""; position: absolute; left: -6px; top: 30%;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 6px solid var(--turquoise);
  }
  .news-cat-evenements              { background: var(--yellow); }
  .news-cat-evenements::before      { border-right-color: var(--yellow); }
  .news-cat-enseignes-actu          { background: var(--cyan); }
  .news-cat-enseignes-actu::before  { border-right-color: var(--cyan); }
  .news-cat-informations-pratiques  { background: var(--turquoise); color: var(--white); }
  .news-cat-informations-pratiques::before  { border-right-color: var(--turquoise); }
  .news-cat-vie-de-quartier         { background: #e07a75; color: var(--white); }
  .news-cat-vie-de-quartier::before { border-right-color: #e07a75; }
  .news-date { font-size: 12px; color: var(--grey); letter-spacing: 1px; font-weight: 600; }
  .news-title {
    font-size: 22px; font-weight: 800; color: var(--ink);
    line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.5px;
  }
  .news-card-featured .news-title { font-size: 28px; }
  .news-title .serif { color: var(--turquoise); }
  .news-excerpt { font-size: 14px; color: var(--ink); opacity: 0.7; line-height: 1.55; margin-bottom: 14px; flex: 1; }
  .news-link {
    font-size: 13px; font-weight: 700; color: var(--turquoise);
    margin-top: auto;
  }
  .news-card:hover .news-link { color: var(--ink); }

  /* ====================== FEED INSTAGRAM (footer) ====================== */
  .ig-section {
    background: var(--grey-light); padding: 60px 60px 0;
  }
  .ig-header {
    max-width: 1320px; margin: 0 auto 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  }
  .ig-header h3 {
    font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -1px;
  }
  .ig-header h3 .serif { color: var(--turquoise); }
  .ig-header .ig-handle {
    color: var(--ink); opacity: 0.6; font-size: 14px; font-weight: 700;
    letter-spacing: 1px; text-decoration: none;
  }
  .ig-header .ig-handle:hover { color: var(--turquoise); opacity: 1; }
  .ig-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  }
  .ig-thumb {
    aspect-ratio: 1; border-radius: 8px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.3s;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 32px;
  }
  .ig-thumb:hover { transform: scale(0.97); }
  .ig-thumb::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(54,61,67,0); transition: background 0.3s;
  }
  .ig-thumb:hover::after { background: rgba(54,61,67,0.4); }
  .ig-thumb.ig-1 { background: linear-gradient(135deg, #fdf6b7, #74c5c4); }
  .ig-thumb.ig-2 { background: linear-gradient(135deg, #74c5c4, #363d43); }
  .ig-thumb.ig-3 { background: linear-gradient(135deg, #eaf6fe, #fdf6b7); }
  .ig-thumb.ig-4 { background: linear-gradient(135deg, #363d43, #74c5c4); }
  .ig-thumb.ig-5 { background: linear-gradient(135deg, #fdf6b7, #e07a75); }
  .ig-thumb.ig-6 { background: linear-gradient(135deg, #74c5c4, #eaf6fe); }

  /* ====================== FOOTER ====================== */
  .footer {
    background: var(--ink); color: var(--white);
    padding: 70px 60px 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    max-width: 1320px; margin: 0 auto 40px;
  }
  .footer-col h4 { font-size: 13px; letter-spacing: 4px; margin-bottom: 16px; color: rgba(255,255,255,0.6); font-weight: 700; }
  .footer-col a, .footer-col p { color: var(--white); text-decoration: none; display: block; padding: 4px 0; font-size: 14px; opacity: 0.85; }
  .footer-col a:hover { color: var(--turquoise); }
  .footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    text-align: center; font-size: 12px; opacity: 0.5; max-width: 1320px; margin: 0 auto;
  }

  /* Demo banner */
  .demo-banner {
    background: var(--ink); color: var(--yellow); padding: 10px;
    text-align: center; font-size: 12px; letter-spacing: 2px; font-weight: 700;
  }

/* ============================================================
   ====================== RESPONSIVE MOBILE ===================
   Breakpoints : 1100px (tablette) · 768px (mobile) · 480px (small)
   ============================================================ */

/* ----- Tablette (< 1100px) ----- */
@media (max-width: 1100px) {
    .hero { padding: 80px 32px 0; min-height: 600px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 60px; }
    .hero h1 { font-size: 72px; }
    .hero h1.line2 { font-size: 72px; }
    .hero .tagline { font-size: 28px; }
    .luciole-stage { min-height: 320px; }
    .luciole { width: 220px; }
    .luciole-halo { width: 340px; height: 280px; }

    .section { padding: 70px 32px; }
    .section-title { font-size: 38px; }
    .stats-row { gap: 32px; }
    .stat-num { font-size: 56px; }

    .news-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .news-card-featured { grid-column: span 2; }

    .features-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ----- Tablette → Mobile (< 980px) — empilage des cards news/offres car la nav passe en hamburger ici ----- */
@media (max-width: 980px) {
    .news-grid { grid-template-columns: 1fr; gap: 18px; }
    .news-card-featured { grid-column: span 1; }
    .news-card-featured .news-photo { padding-top: 56.25%; } /* 16:9 en mobile */
    .offres-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ----- Mobile (< 768px) ----- */
@media (max-width: 768px) {
    /* HERO */
    .hero { padding: 60px 20px 0; min-height: auto; }
    .hero h1 { font-size: 56px; letter-spacing: -2px; }
    .hero h1.line2 { font-size: 56px; }
    .hero .eyebrow { font-size: 11px; letter-spacing: 4px; margin-bottom: 18px; }
    .hero .tagline { font-size: 22px; margin: 16px 0 20px; }
    .hero .body { font-size: 16px; margin-bottom: 28px; }
    .cta-group { flex-direction: column; gap: 10px; }
    .cta { width: 100%; text-align: center; padding: 14px 24px; font-size: 14px; }
    .luciole-stage { min-height: 260px; margin-top: 24px; }
    .luciole { width: 180px; }
    .luciole-halo { width: 260px; height: 220px; }

    /* STATS — labels resserrés (letter-spacing réduit pour ne pas déborder) */
    .stats { padding: 50px 20px; }
    .stats-row { grid-template-columns: 1fr; gap: 28px; max-width: none; text-align: center; }
    .stat-num { font-size: 64px; }
    .stat-label { font-size: 11px; letter-spacing: 2px; line-height: 1.3; }

    /* SECTIONS */
    .section { padding: 56px 18px; }
    .section-eyebrow { font-size: 10px; letter-spacing: 3px; line-height: 1.3; }
    .section-title { font-size: 32px; letter-spacing: -1px; margin-bottom: 12px; }
    .section-title .serif { font-size: 1.0em; }
    .section-sub { font-size: 15px; margin-bottom: 36px; padding: 0 4px; }

    /* CAROUSEL — laissé scrollable horizontal, cards plus petites */
    .carousel-wrap { padding: 0 0 20px; }
    .ens-card { flex: 0 0 240px; }
    .car-arrow { display: none; }   /* flèches inutiles en touch */

    /* SEARCH */
    .search-wrap { flex-direction: column; gap: 12px; }
    .search-wrap input { width: 100%; }
    .filter-pills { gap: 8px; }
    .pill { font-size: 12px; padding: 8px 14px; }

    /* NEWS / À LA UNE — 1 colonne, photos vraiment 16/9, titres lisibles */
    .news-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .news-card { width: 100%; }
    .news-card-featured { grid-column: span 1 !important; grid-row: span 1; }
    .news-photo,
    .news-card-featured .news-photo {
        position: relative; width: 100%;
        padding-top: 56.25%; /* force 16:9 partout en mobile (iOS Safari friendly) */
        height: auto;
    }
    .news-photo > img {
        position: absolute; top: 0; left: 0;
        width: 100% !important; height: 100% !important;
        object-fit: cover; display: block;
    }
    .news-card-featured .news-title { font-size: 22px; line-height: 1.2; }
    .news-title { font-size: 20px; line-height: 1.25; }
    .news-body { padding: 20px 18px 24px; }
    .news-excerpt { font-size: 14.5px; line-height: 1.5; }

    /* OFFRES */
    .offres-grid { grid-template-columns: 1fr; gap: 18px; }

    /* FEATURES — 6 col → 2 col (Parking, Bornes EV, Tram, WIFI, Surface, Boutiques) */
    .features-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feature-item { padding: 20px 10px; min-width: 0; }
    .feature-icon { font-size: 28px; margin-bottom: 8px; }
    .feature-icon .icon-svg { width: 36px; height: 36px; }
    .feature-label { font-size: 12px; letter-spacing: 0.5px; word-wrap: break-word; }
    .feature-value { font-size: 10px; letter-spacing: 1px; margin-top: 4px; }

    /* NEWSLETTER turquoise (section pastel-t) */
    .section-pastel-t { padding: 56px 24px; }

    /* INSTAGRAM */
    .ig-section { padding: 40px 24px; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .ig-header { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .ig-header h3 { font-size: 22px; }
}

/* ----- Small mobile (< 480px) ----- */
@media (max-width: 480px) {
    .hero h1, .hero h1.line2 { font-size: 44px; }
    .hero .tagline { font-size: 19px; }
    .section-title { font-size: 26px; }
    .section { padding: 48px 18px; }
    .stat-num { font-size: 52px; }

    /* Features 2 col → 1 col en très petit */
    .features-row { grid-template-columns: repeat(2, 1fr); }

    /* IG en 2 col */
    .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
