/* === BOUTONS, CARDS, GALERIE, FAQ, AVIS, STATS === */

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .85rem 1.6rem;
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform .15s, box-shadow .15s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

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

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover { background: var(--bg); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover { background: #1ebe5e; border-color: #1ebe5e; }

/* ---- SECTION HEADER ---- */
.section-head { margin-bottom: clamp(32px,5vw,56px); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-lead {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  max-width: 55ch;
  margin-top: 14px;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--accent-dark);
  padding: clamp(28px,4vw,44px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(12px,3vw,28px);
  border-right: 1px solid rgba(247,241,225,.2);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 700;
  color: #F7F1E1;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: clamp(.68rem,.9vw,.8rem);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-2);
  margin-top: 8px;
  font-family: var(--ff-ui);
}

/* ---- CARDS SERVICES LAY-1 GRID-3 ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px,2.5vw,24px);
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px,3vw,28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(107,122,58,.14); }
.svc-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-num {
  font-family: var(--ff-display);
  font-size: .8rem;
  color: var(--accent-2);
  font-style: italic;
}
.svc-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  font-family: var(--ff-display);
}
.svc-card p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ---- CARD "LINE" (contact cards) ---- */
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(107,122,58,.12); }
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mute);
  margin-bottom: 3px;
  font-family: var(--ff-ui);
}
.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* ---- AVIS CARDS (cols-2 desktop) ---- */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px,2.5vw,24px);
}
.avis-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,2.5vw,24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avis-stars { display: flex; gap: 3px; color: #E8A020; }
.avis-stars svg { width: 16px; height: 16px; }
.avis-quote {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.avis-quote::before { content: "\201C"; }
.avis-quote::after  { content: "\201D"; }
.avis-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.avis-author-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.avis-author-date { font-size: .75rem; color: var(--text-mute); }
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  color: var(--text-mute);
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 3px 8px;
}
.badge-google svg { width: 13px; height: 13px; }
.avis-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- GALERIE GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px,1.5vw,14px);
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:focus-visible { outline: 2px solid var(--accent); }

/* Gallery tag */
.gal-tag {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(49,42,32,.7);
  color: #F7F1E1;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background .2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-close { top: 16px; right: 16px; font-size: 1rem; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---- FAQ ACCORDION ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger[aria-expanded="true"] { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  transition: transform .28s var(--ease);
}
.faq-chevron::after {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.7;
  animation: faqOpen .22s ease;
}
@keyframes faqOpen { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ---- LIVE STATUS BADGE ---- */
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--ff-ui);
}
.live-status--open { background: rgba(37,211,102,.12); color: #1a8c47; }
.live-status--closed { background: rgba(180,60,60,.1); color: #a03030; }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.live-status--open .live-dot { background: #25D366; animation: pulse 1.8s infinite; }
.live-status--closed .live-dot { background: #c05050; }
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .6; }
}

/* ---- HERO RATING BADGE ---- */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,241,225,.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247,241,225,.3);
  border-radius: 28px;
  padding: 7px 14px;
  color: #fff;
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background .2s;
}
.hero-rating-badge:hover { background: rgba(247,241,225,.28); }
.hero-rating-badge svg { color: #F5C842; width: 15px; height: 15px; }
.hero-rating-badge strong { font-weight: 700; }
.hero-rating-badge span { opacity: .85; }

/* ---- CHIPS ZONE ---- */
.zone-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-chip {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 500;
  font-family: var(--ff-ui);
}

/* ---- HORAIRES TABLE ---- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 7px 0;
  font-size: .85rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today td { color: var(--accent-dark) !important; font-weight: 600; }
.hours-table tr.is-closed td:last-child { color: var(--text-mute); }

/* ---- FORMULAIRE CONTACT ---- */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
  font-family: var(--ff-ui);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .2s;
  min-width: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--text-mute); }

/* ---- A PROPOS BLOCK ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--accent-dark);
  color: #F7F1E1;
  border-radius: var(--r-lg);
  padding: 10px 16px;
  font-size: .82rem;
  font-family: var(--ff-ui);
  font-weight: 600;
}
.about-content p:first-child::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2em;
  float: left;
  line-height: .8;
  margin: .05em .1em 0 0;
  color: var(--accent);
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-2);
}
.about-list li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%236B7A3A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---- MAP WRAPPER ---- */
.map-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- SAP CALLOUT ---- */
.sap-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--accent-soft);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-top: 20px;
}
.sap-callout svg { color: var(--accent); width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.sap-callout p { font-size: .85rem; color: var(--text-2); margin: 0; }
.sap-callout strong { color: var(--accent-dark); }
