/* =========================================================
   Euro Discount — Villeurbanne
   Charte graphique : bleu royal / rouge vif / jaune accent
   ========================================================= */

:root {
  /* Easing modernes */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Couleurs */
  --blue-deep: #0b3fb5;
  --blue: #1e5bd8;
  --blue-light: #2d74e8;
  --blue-sky: #e8f0ff;
  --red: #e51e1e;
  --red-dark: #c40d0d;
  --yellow: #ffd200;
  --yellow-soft: #ffeb8c;
  --orange: #ff7a00;
  --white: #ffffff;
  --ink: #0f1a2e;
  --ink-soft: #364257;
  --muted: #6c7891;
  --line: #e3e8f1;
  --bg: #f6f8fc;

  /* Typo */
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(11, 63, 181, 0.08);
  --shadow: 0 12px 32px rgba(11, 63, 181, 0.14);
  --shadow-red: 0 8px 24px rgba(229, 30, 30, 0.35);
}

/* =========================================================
   Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.4em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.muted { color: var(--muted); }
.small { font-size: 0.875rem; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--red-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: var(--white); color: var(--blue-deep); }

.btn--large { padding: 16px 36px; font-size: 1.05rem; }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-light) 100%);
  color: var(--white);
  padding: 110px 0 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 210, 0, 0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(229, 30, 30, 0.22), transparent 45%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}
.hero__highlight {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-red);
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.95);
}
.hero__subtitle strong { color: var(--yellow); }

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__burst {
  position: relative;
  width: 280px;
  height: 280px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-red);
  clip-path: polygon(
    50% 0%, 60% 12%, 75% 5%, 78% 22%, 95% 22%,
    88% 38%, 100% 50%, 88% 62%, 95% 78%, 78% 78%,
    75% 95%, 60% 88%, 50% 100%, 40% 88%, 25% 95%,
    22% 78%, 5% 78%, 12% 62%, 0% 50%, 12% 38%,
    5% 22%, 22% 22%, 25% 5%, 40% 12%
  );
  animation: pulse 3.5s ease-in-out infinite;
}
.hero__burst-text { transform: rotate(8deg); }

@keyframes pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.05); }
}

/* Bandeau défilant */
.hero__strip {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
  padding: 14px 0;
  border-top: 4px solid var(--red);
}
.hero__strip-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-strip 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__strip-track span { flex-shrink: 0; }
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Sections génériques
   ========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}
.section--light { background: var(--bg); }
.section--blue {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white);
}
.section--yellow {
  background: var(--yellow);
  color: var(--ink);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(229, 30, 30, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0;
}
.section__header--light .section__title { color: var(--white); }
.section__header--light .section__lead { color: rgba(255,255,255,0.9); }
.section__header--light .section__eyebrow {
  color: var(--yellow);
  background: rgba(255, 210, 0, 0.18);
}

/* =========================================================
   Features (Pourquoi nous)
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

/* =========================================================
   Magasin — bento grid moderne
   ========================================================= */
.store-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
}

/* Photo principale — gauche, span 2 rangées */
.store-bento__photo {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.store-bento__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.store-bento__photo:hover img { transform: scale(1.05); }
.store-bento__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 63, 181, 0.5) 100%);
  pointer-events: none;
}

.store-bento__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(229, 30, 30, 0.55);
  transform: rotate(-4deg);
  text-align: center;
  z-index: 2;
  margin: 0;
}
.store-bento__badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.store-bento__badge span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Cartes info */
.store-bento__card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.store-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(11, 63, 181, 0.2);
}

.store-bento__card--accent {
  background: linear-gradient(135deg, var(--red) 0%, #ff5a5a 100%);
  color: var(--white);
}
.store-bento__card--accent::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
  pointer-events: none;
}

.store-bento__card--wide {
  grid-column: 2 / span 2;
}

.store-bento__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-sky);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: transform 0.35s var(--ease-bounce);
}
.store-bento__card:hover .store-bento__icon {
  transform: rotate(-8deg) scale(1.08);
}
.store-bento__card--accent .store-bento__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.store-bento__card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-family: var(--font-display);
}
.store-bento__card--accent h3 { color: var(--white); }
.store-bento__card p {
  margin: 0 0 6px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.store-bento__card--accent p { color: rgba(255,255,255,0.92); }
.store-bento__card--accent a { color: var(--yellow); }
.store-bento__card--accent .muted { color: rgba(255,255,255,0.7); }

.store-bento__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
  transition: gap 0.25s var(--ease);
}
.store-bento__link:hover { gap: 12px; color: var(--yellow); }
.store-bento__link svg { transition: transform 0.25s var(--ease); }

/* Horaires en grille à 2 colonnes */
.hours-grid {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.hours-grid li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hours-grid li.closed strong { color: var(--red); }
.hours-grid strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

/* Map — pleine largeur dans la grille bento */
.store-bento__map {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.store-bento__map iframe {
  display: block;
  border: 0;
  width: 100%;
}

/* =========================================================
   Groupe
   ========================================================= */
.groupe {
  text-align: center;
}
.groupe p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.groupe p strong { color: var(--blue-deep); }
.groupe .btn { margin-top: 16px; }

/* =========================================================
   Réseaux sociaux
   ========================================================= */
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-card:hover {
  transform: translateY(-8px);
  color: var(--white);
}

.social-card--facebook {
  background: linear-gradient(140deg, #1877F2 0%, #0d5ecf 100%);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.45);
}
.social-card--facebook:hover {
  box-shadow: 0 28px 64px rgba(24, 119, 242, 0.6);
}

.social-card--tiktok {
  background: linear-gradient(140deg, #111 0%, #2a2a2a 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.social-card--tiktok:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.6);
}

/* Halo coloré en arrière-plan */
.social-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.social-card--facebook .social-card__glow { background: radial-gradient(circle, #fff, transparent 70%); }
.social-card--tiktok  .social-card__glow { background: radial-gradient(circle, #69C9D0, transparent 70%); }
.social-card:hover .social-card__glow { opacity: 0.35; transform: scale(1.2); }

.social-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-bounce);
}
.social-card:hover .social-card__icon { transform: scale(1.1) rotate(-4deg); }

.social-card__network {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
  margin-bottom: 4px;
}
.social-card__title {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 8px;
}
.social-card__body p {
  margin: 0;
  font-size: 0.97rem;
  opacity: 0.88;
  line-height: 1.55;
}

.social-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  background: rgba(255,255,255,0.15);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  align-self: flex-start;
  transition: background 0.25s var(--ease), gap 0.25s var(--ease);
}
.social-card:hover .social-card__cta {
  background: rgba(255,255,255,0.25);
  gap: 14px;
}

@media (max-width: 640px) {
  .social-cards { grid-template-columns: 1fr; }
}

/* =========================================================
   Presse
   ========================================================= */
.press-card {
  display: block;
  perspective: 1100px;
  text-decoration: none;
  color: var(--ink);
}
.press-card__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--red);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.press-card:hover .press-card__inner {
  box-shadow: 0 28px 72px rgba(0,0,0,0.18);
}
.press-card__source {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.press-card__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.le-progres-logo {
  background: #0072BC;
  padding: 10px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 114, 188, 0.25);
}
.le-progres-logo span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
}
.press-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.press-card__meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.press-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__block h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 6px;
}
.contact__block a { font-weight: 600; }
.contact__block p { margin: 0; color: var(--ink-soft); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  line-height: 0;
}
.ghl-form {
  width: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  width: 160px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.footer__col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer__col p, .footer__col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.footer__col a:hover { color: var(--yellow); }
.socials--light {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.socials--light a {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: inline-block;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.socials--light a:hover {
  background: transparent;
  color: var(--yellow);
  transform: none;
}
.footer__group { margin-top: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom p { margin: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 60px; }
  .hero__visual { order: -1; margin-top: 8px; }
  .hero__burst { width: 200px; height: 200px; font-size: 1.7rem; }
  .hero__logo { margin: 0 auto 24px; }
  .hero__cta-group { justify-content: center; }

  .store-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .store-bento__photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
  .store-bento__card--wide { grid-column: 1 / -1; }

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

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

@media (max-width: 720px) {
  .section { padding: 72px 0; }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-top: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .hero { padding-top: 48px; }
  .hero__title { font-size: 2.2rem; }
  .hero__logo { width: 130px; }
  .hero__burst { width: 170px; height: 170px; font-size: 1.4rem; }

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

  .store-bento { grid-template-columns: 1fr; }
  .store-bento__photo { min-height: 260px; }
  .store-bento__card--wide { grid-column: auto; }
  .hours-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn--large { padding: 14px 26px; font-size: 0.98rem; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }
}

/* =========================================================
   Scroll progress bar
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(229, 30, 30, 0.5);
}

/* =========================================================
   Reveal-on-scroll animations
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(3) { transition-delay: 0.24s; }
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(4) { transition-delay: 0.36s; }
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(5) { transition-delay: 0.48s; }
[data-reveal-stagger] > [data-reveal].is-visible:nth-child(6) { transition-delay: 0.6s; }

/* =========================================================
   Touches modernes (boutons magnétiques, feature hover plus doux)
   ========================================================= */
.btn { transition: transform 0.25s var(--ease-bounce), box-shadow 0.3s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease); }

.feature {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.feature:hover .feature__icon {
  transform: rotate(-6deg) scale(1.08);
}
.feature__icon {
  transition: transform 0.35s var(--ease-bounce);
}

.socials a { transition: transform 0.25s var(--ease-bounce), background 0.25s var(--ease); }
.socials a:hover { transform: translateY(-3px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
