/* === CARD RISOGRAPH (LAY-3) === */
.c-riso {
  background: var(--bg);
  border: 1.5px solid var(--text);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .22s ease, box-shadow .22s ease;
}
.c-riso:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--accent);
}

/* === SERVICES GRID-3 === */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.svc-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc-card-icon svg { width: 22px; height: 22px; }
.svc-card-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.svc-card-text {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* === GALERIE GRID (LAY-3) + LIGHTBOX === */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gal-grid a {
  display: block;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
}
.gal-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gal-grid a:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  border: 0;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  transition: background .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.28); }

/* === AVIS CARDS (LAY-3) === */
.avis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.avis-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.avis-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.avis-stars svg {
  width: 16px;
  height: 16px;
  color: #f5a623;
  fill: #f5a623;
}
.avis-text {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
}
.avis-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.avis-name {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
}
.avis-date {
  font-size: .78rem;
  color: var(--text-mute);
}
.avis-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--text-mute);
  margin-top: 10px;
}
.avis-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* === STATS STRIP === */
.stats-strip {
  background: var(--accent);
  color: var(--on-accent);
  padding: clamp(36px, 5vw, 60px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 12px 8px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
}

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--text);
}
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq-chevron svg { width: 14px; height: 14px; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-body p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* === HERO RATING BADGE === */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.88);
  border-radius: 40px;
  padding: 7px 14px 7px 10px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  margin-bottom: 14px;
}
.hero-rating-stars {
  display: flex;
  gap: 2px;
}
.hero-rating-stars svg { width: 14px; height: 14px; fill: #f5a623; color: #f5a623; }
.hero-rating-badge strong {
  font-family: var(--ff-ui);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
}
.hero-rating-badge span {
  font-size: .83rem;
  color: var(--text-2);
}

/* === ZONE CARTE === */
.zone-map-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.zone-map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === HORAIRES TABLE === */
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.horaires-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.horaires-table td:first-child {
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
}
.horaires-table tr.today td {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
}
.horaires-table tr:last-child td { border-bottom: 0; }

/* === OPEN BADGE === */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.open-badge.is-open { background: color-mix(in srgb, #4CAF50 14%, var(--bg)); color: #2e7d32; }
.open-badge.is-closed { background: color-mix(in srgb, #e53935 12%, var(--bg)); color: #c62828; }
.open-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* === MODAL MENTIONS LÉGALES === */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease;
}
.modal-box {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  color: var(--text);
}
.modal-box h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-right: 40px;
}
.modal-box p, .modal-box li {
  font-size: .88rem;
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.65;
}

/* === A PROPOS GRID === */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.apropos-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.apropos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apropos-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.apropos-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.5;
}
.apropos-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.apropos-check-icon svg { width: 12px; height: 12px; }

/* === CONTACT GRID === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.contact-cta-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.contact-cta-box .btn {
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
}
.contact-info {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--border);
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.5;
}
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-row strong {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .c-riso, .c-riso:hover { transition: none; transform: none; }
  .gal-grid a:hover img { transform: none; }
  .lightbox, .lightbox.is-open { transition: none; }
  .faq-body { transition: none; }
  .faq-chevron { transition: none; }
}
