/* ===========================================================
   Laveries Marseille — Feuille de styles globale
   =========================================================== */

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-darker: #1e40af;
  --blue-light: #3b82f6;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --orange: #f59e0b;
  --orange-dark: #ea580c;
  --green: #22c55e;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 14px rgba(15, 23, 42, .08);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 20px 45px rgba(37, 99, 235, .18);

  --container: 1140px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --header-h: 70px;
}

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate-700);
  background: var(--slate-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 80px 0; }

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  text-align: center;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--slate-500);
  margin-top: 10px;
  margin-bottom: 48px;
  font-size: 1.02rem;
}

.text-blue { color: var(--blue); }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

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

.btn-outline {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}
.btn-outline:hover { background: rgba(255, 255, 255, .22); }

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

/* ----------------------- Header ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--blue);
}
.brand svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--slate-600);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-50); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 55%, var(--blue-darker) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .14), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, .10), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 84px 0 96px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.5px;
}
.hero .subtitle {
  margin-top: 16px;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, .92);
  font-weight: 300;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero stat cards (accueil) */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.hero-stat {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease;
}
.hero-stat:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .18); }
.hero-stat .icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
}
.hero-stat .icon svg { width: 30px; height: 30px; stroke: var(--white); }
.hero-stat h3 { color: var(--white); font-size: 1.1rem; }
.hero-stat p { color: rgba(255, 255, 255, .82); font-size: .92rem; margin-top: 4px; }

/* Hero photo strip */
.hero-photos {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 70px;
}
.hero-photos img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid rgba(255, 255, 255, .3);
  box-shadow: var(--shadow-md);
}

/* Sub-page hero (laverie) */
.hero--page .hero-inner { padding: 64px 0 70px; }
.hero-address {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
}
.hero-address svg { width: 20px; height: 20px; }
.hero-badges {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}
.hero-badge svg { width: 16px; height: 16px; }

/* ----------------------- Laveries cards (accueil) ----------------------- */
.section-light { background: var(--slate-100); }
.section-white { background: var(--white); }
.section-soft { background: var(--slate-200); }

.laveries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.laverie-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.laverie-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.laverie-card__head {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 22px 22px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.laverie-card__head h3 { color: var(--white); font-size: 1.25rem; }
.laverie-card__head .sub { font-size: .82rem; opacity: .85; margin-top: 2px; }
.laverie-card__hours {
  background: rgba(255, 255, 255, .16);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.laverie-card__hours svg { width: 16px; height: 16px; }
.laverie-card__photo { height: 170px; overflow: hidden; }
.laverie-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.laverie-card:hover .laverie-card__photo img { transform: scale(1.06); }
.laverie-card__body { padding: 20px 22px 8px; flex: 1; }
.spec-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--slate-50);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.spec-row .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 34px;
}
.spec-row .label { font-weight: 600; color: var(--navy); font-size: .95rem; }
.spec-row .detail { font-size: .82rem; color: var(--slate-500); }
.laverie-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px 22px 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--blue-50);
  padding: 6px 11px;
  border-radius: 999px;
}
.tag svg { width: 13px; height: 13px; }
.laverie-card__addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 22px;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-600);
  font-size: .88rem;
}
.laverie-card__addr svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--blue); }
.laverie-card__cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  transition: background .18s ease;
}
.laverie-card__cta:hover { background: var(--blue-dark); }

/* ----------------------- Services grid ----------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: var(--blue-50);
  border-radius: 50%;
}
.service-card .icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--slate-500); font-size: .92rem; }

/* ----------------------- Contact ----------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 22px;
  justify-content: center;
  margin-bottom: 50px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
}
.contact-card .icon {
  width: 52px; height: 52px;
  flex: none;
  display: grid; place-items: center;
  background: var(--blue-50);
  border-radius: 14px;
}
.contact-card .icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.contact-card > div:last-child { min-width: 0; }
.contact-card .label { font-size: .82rem; color: var(--slate-500); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.contact-card .value { font-size: 1.1rem; font-weight: 700; color: var(--blue); overflow-wrap: anywhere; word-break: break-word; }

.addr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addr-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}
.addr-card h4 { color: var(--blue); margin-bottom: 12px; }
.addr-card p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  color: var(--slate-600);
  font-size: .9rem;
  margin-top: 6px;
}
.addr-card p svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--blue); }

/* ----------------------- Laverie detail blocks ----------------------- */
.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.panel-blue {
  background: linear-gradient(135deg, var(--blue-50), #e8eeff);
  border: 1px solid var(--blue-100);
}
.panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.panel h2 svg { width: 26px; height: 26px; color: var(--blue); }
.panel .muted { color: var(--slate-500); font-size: .92rem; margin-bottom: 20px; }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.pay-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.pay-item .t { font-weight: 700; color: var(--navy); }
.pay-item .d { font-size: .86rem; color: var(--slate-500); margin-top: 4px; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.machine-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--slate-50);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 14px;
}
.machine-row .qty {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 34px;
  text-align: center;
}
.machine-row .info { flex: 1; }
.machine-row .info .name { font-weight: 700; color: var(--navy); }
.machine-row .info .cap { font-size: .82rem; color: var(--slate-500); }
.machine-row .price {
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 1.05rem;
  white-space: nowrap;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.product-row .qty { font-size: 1.5rem; font-weight: 800; color: var(--blue); min-width: 28px; text-align: center; }
.product-row .name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.product-row .desc { font-size: .8rem; color: var(--slate-500); }

/* ----------------------- Gallery ----------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.25), transparent 50%);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
}
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ----------------------- Carte abonné banner ----------------------- */
.card-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  box-shadow: 0 12px 30px rgba(234, 88, 12, .28);
}
.card-banner h2 {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
}
.card-banner h2 svg { width: 26px; height: 26px; }
.card-banner p { margin-top: 8px; font-size: 1.02rem; color: rgba(255,255,255,.95); }
.card-banner strong { font-weight: 800; }
.card-banner .btn { margin-top: 18px; }

/* ----------------------- Map ----------------------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ----------------------- Why choose (slva) ----------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--slate-500); font-size: .92rem; }

/* ----------------------- Other laveries ----------------------- */
.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.other-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.other-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.other-card h3 { color: var(--blue); font-size: 1.2rem; }
.other-card p { color: var(--slate-500); font-size: .9rem; margin-top: 4px; }
.other-card .arrow {
  width: 42px; height: 42px;
  flex: none;
  background: var(--blue-50);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  transition: background .2s ease, color .2s ease;
}
.other-card:hover .arrow { background: var(--blue); color: var(--white); }

/* ----------------------- Footer ----------------------- */
.site-footer {
  background: var(--navy);
  color: var(--slate-400);
  padding: 50px 0 36px;
  text-align: center;
}
.site-footer .brand-foot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.site-footer .brand-foot svg { width: 24px; height: 24px; }
.site-footer .copy { font-size: .92rem; color: var(--slate-200); }
.site-footer .links {
  margin-top: 10px;
  font-size: .9rem;
}
.site-footer .links a { color: var(--slate-400); transition: color .15s ease; }
.site-footer .links a:hover { color: var(--blue-light); }
.site-footer .sep { color: var(--slate-600); margin: 0 8px; }

/* ----------------------- Reveal animation ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ----------------------- Responsive ----------------------- */
@media (max-width: 960px) {
  .laveries-grid,
  .services-grid,
  .detail-grid,
  .why-grid,
  .addr-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 12px 18px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 14px; }

  .section { padding: 56px 0; }
  .laveries-grid,
  .services-grid,
  .detail-grid,
  .why-grid,
  .addr-grid,
  .other-grid,
  .contact-cards,
  .hero-stats { grid-template-columns: 1fr; }
  .contact-cards { max-width: 420px; margin-inline: auto; }
  .hero-photos { grid-auto-columns: minmax(140px, 1fr); }
  .panel { padding: 22px; }
  .card-banner { padding: 22px; }
}

@media (max-width: 440px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===========================================================
   Bandeau d'annonces (Fermeture exceptionnelle, etc.)
   =========================================================== */
.announcement-bar { position: sticky; top: var(--header-h); z-index: 45; }
.announcement {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.announcement__icon { flex: none; display: grid; place-items: center; }
.announcement__icon svg { width: 20px; height: 20px; }
.announcement__text { margin: 0; max-width: var(--container); margin-inline: auto; width: 100%; }
.announcement--warning { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.announcement--closure { background: linear-gradient(135deg, #dc2626, #991b1b); }
.announcement--info    { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.announcement--promo   { background: linear-gradient(135deg, #16a34a, #15803d); }

/* ===========================================================
   Sélecteur de langue (Tutos)
   =========================================================== */
.lang-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.lang-btn:hover { background: rgba(255, 255, 255, .26); transform: translateY(-2px); }
.lang-btn.active { background: var(--white); color: var(--blue-dark); }
.lang-btn .flag { font-size: 1.1rem; line-height: 1; }

/* ===========================================================
   Tutos — grille de vidéos
   =========================================================== */
.tuto-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--slate-600);
  font-size: 1.05rem;
}
.tuto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.tuto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tuto-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tuto-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1220;
}
.tuto-video iframe,
.tuto-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tuto-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
  background: linear-gradient(135deg, #1e293b, #0f172a);
  text-align: center;
  padding: 16px;
}
.tuto-video__placeholder svg { width: 46px; height: 46px; opacity: .85; }
.tuto-video__placeholder span { font-size: .9rem; }
.tuto-card__body { padding: 20px 22px 24px; flex: 1; }
.tuto-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue-dark);
  background: var(--blue-50);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.tuto-card__title { font-size: 1.15rem; margin-bottom: 8px; }
.tuto-card__desc { color: var(--slate-500); font-size: .94rem; }

/* Support RTL (arabe) sur la page Tutos */
[dir="rtl"] .tuto-card__body { text-align: right; }
[dir="rtl"] .tuto-intro { direction: rtl; }

/* ===========================================================
   Conciergerie — pros
   =========================================================== */
.conc-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--slate-600);
  font-size: 1.08rem;
}
.conc-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.conc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  transition: transform .2s ease, box-shadow .2s ease;
}
.conc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.conc-card .icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: var(--blue-50);
  border-radius: 50%;
}
.conc-card .icon svg { width: 30px; height: 30px; stroke: var(--blue); }
.conc-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.conc-card p { color: var(--slate-500); font-size: .94rem; }

.conc-target {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.conc-target li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--navy);
}
.conc-target li svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

.conc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.conc-step {
  text-align: center;
  position: relative;
}
.conc-step .num {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
}
.conc-step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.conc-step p { color: var(--slate-500); font-size: .9rem; }

.conc-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.conc-cta h2 { color: var(--white); font-size: 1.7rem; }
.conc-cta p { color: rgba(255, 255, 255, .92); margin: 12px auto 26px; max-width: 560px; }
.conc-cta .btn-primary { color: var(--blue-dark); }

/* ===========================================================
   Abonnement — carte & inscription
   =========================================================== */
.container--narrow { max-width: 720px; }

.card-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
.card-banner h2 {
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.card-banner h2 svg { width: 30px; height: 30px; flex: none; }
.card-banner p { color: rgba(255, 255, 255, .94); }
.card-banner strong { color: var(--white); }

.sub-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.sub-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.sub-method:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.sub-method svg { width: 30px; height: 30px; flex: none; color: var(--blue); }
.sub-method span { font-size: .94rem; color: var(--slate-600); }
.sub-method strong { color: var(--navy); font-size: 1.02rem; }
.sub-method--wa svg { color: #25d366; }

.sub-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.sub-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sub-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.sub-form__full { grid-column: 1 / -1; }
.sub-form input,
.sub-form select,
.sub-form textarea {
  font-family: inherit;
  font-size: .96rem;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--navy);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sub-form input:focus,
.sub-form select:focus,
.sub-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-50);
  background: var(--white);
}
.sub-form textarea { resize: vertical; }
.sub-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.sub-form__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.sub-form__msg { font-weight: 600; font-size: .92rem; margin: 0; }
.sub-form__msg.is-ok { color: #16a34a; }
.sub-form__msg.is-err { color: #dc2626; }

/* ===========================================================
   Améliorations mobiles (priorité smartphone)
   =========================================================== */

/* Le menu mobile défile si beaucoup de liens, et reste accessible */
@media (max-width: 760px) {
  .nav-links {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  .nav-links a:active { background: var(--blue-50); }
  body.nav-open { overflow: hidden; }

  .announcement-bar { position: static; }
  .announcement { padding: 11px 18px; font-size: .9rem; align-items: flex-start; }

  .lang-switch { gap: 6px; }
  .lang-btn { padding: 8px 13px; font-size: .85rem; }

  .conc-advantages,
  .conc-steps { grid-template-columns: 1fr; }
  .tuto-grid { grid-template-columns: 1fr; }
  .sub-form__grid { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .hero-inner { padding: 60px 0 70px; }
  .hero--page .hero-inner { padding: 48px 0 56px; }
  .hero-badges { gap: 8px; }
  .hero-badge { padding: 8px 14px; font-size: .82rem; }

  .machine-row { gap: 12px; padding: 14px; }
  .machine-row .price { font-size: .95rem; }
  .section-title { font-size: 1.55rem; }
}

@media (max-width: 480px) {
  :root { --header-h: 62px; }
  .brand { font-size: 1.02rem; }
  .brand svg { width: 22px; height: 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .conc-target { grid-template-columns: 1fr; }
  .conc-cta { padding: 34px 22px; }
  .conc-cta h2 { font-size: 1.4rem; }
  .map-wrap iframe { height: 300px; }
}

/* Confort tactile : cibles d'au moins 44px sur petits écrans */
@media (hover: none) and (pointer: coarse) {
  .btn { padding: 14px 24px; }
  .laverie-card__cta { padding: 16px; }
  .lightbox__btn { width: 56px; height: 56px; }
}
