/* HERO-EDITORIAL-CENTRE (impose) */
.hero {
  padding-top: calc(var(--header-h-mobile) + 36px);
  padding-bottom: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .hero { padding-top: calc(var(--header-h) + 72px); padding-bottom: 56px; }
}
.hero-centre {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 4px;
}
.hero-centre__eyebrow {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-centre__eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.hero-centre__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.hero-centre__title em {
  font-style: italic;
  color: var(--accent);
}
.hero-centre__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-2);
  margin: 0 auto 24px;
  max-width: 56ch;
  line-height: 1.65;
}
.hero-centre__rating { display: inline-flex; margin-bottom: 22px; }
.hero-centre__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin: 0 auto 40px;
  max-width: 360px;
}
.hero-centre__cta .btn { width: 100%; }
@media (min-width: 560px) {
  .hero-centre__cta { flex-direction: row; justify-content: center; max-width: none; }
  .hero-centre__cta .btn { width: auto; }
}
.hero-centre__band {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (min-width: 768px) {
  .hero-centre__band { aspect-ratio: 21/9; }
}
.hero-centre__band img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-centre__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 53, 49, 0.18) 100%);
  pointer-events: none;
}

/* STATS STRIP */
.stats-strip {
  padding: 36px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
  .stats-grid .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border);
  }
  .stats-grid .stat-item:nth-child(2)::before { left: 33.33%; }
  .stats-grid .stat-item:nth-child(3)::before { left: 66.66%; }
}
.stat-item { padding: 4px 8px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-2);
}

/* SERVICES — list-sep (LAY-4) */
.services-list {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
}
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px 4px;
  border-top: 1px solid var(--border);
  transition: padding-left var(--dur) var(--ease);
}
.svc-row:last-child { border-bottom: 1px solid var(--border); }
.svc-row:hover { padding-left: 12px; }
@media (prefers-reduced-motion: reduce) {
  .svc-row { transition: none; }
  .svc-row:hover { padding-left: 4px; }
}
.svc-row__num {
  font-family: var(--ff-display);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 500;
  min-width: 28px;
}
.svc-row__body { min-width: 0; }
.svc-row__title {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.2;
}
.svc-row__desc { color: var(--text-2); font-size: 0.96rem; margin: 0; }
.svc-row__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent);
  flex-shrink: 0;
}
.svc-row__icon svg { width: 24px; height: 24px; }
@media (max-width: 560px) {
  .svc-row { grid-template-columns: auto 1fr; gap: 14px; padding: 22px 0; }
  .svc-row__icon { display: none; }
  .svc-row__title { font-size: 1.18rem; }
}

/* A PROPOS */
.about-section {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 460px;
  margin: 0 auto;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { color: var(--text-2); line-height: 1.75; font-size: 1.02rem; margin-bottom: 14px; }
.about-body p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 500;
  float: left;
  line-height: 0.95;
  padding: 4px 8px 0 0;
  color: var(--accent);
}
.about-body strong { color: var(--primary); font-weight: 600; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* GALERIE — slider (LAY-4) */
.gal-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.gal-slider::-webkit-scrollbar { height: 4px; }
.gal-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.gal-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(240px, 70vw, 380px);
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  margin: 0;
  background: var(--surface-2);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur) var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .gal-item:hover img { transform: none; }
}
.gal-cta {
  text-align: center;
  margin-top: 24px;
}

/* AVIS — carousel (LAY-4) */
.avis-section { background: var(--bg-alt); }
.avis-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 24px;
}
.avis-carousel::-webkit-scrollbar { height: 4px; }
.avis-carousel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.avis-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(88vw, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.avis-stars {
  display: inline-flex;
  gap: 2px;
  color: #E8A93B;
}
.avis-stars svg { width: 18px; height: 18px; }
.avis-quote {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  quotes: "\201C" "\201D";
}
.avis-quote::before { content: open-quote; color: var(--accent); margin-right: 4px; }
.avis-quote::after { content: close-quote; color: var(--accent); margin-left: 2px; }
.avis-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text-2);
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.avis-author { font-weight: 500; color: var(--primary); }
.avis-date { font-size: 0.82rem; color: var(--text-mute); }
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-2);
}
.badge-google svg { width: 14px; height: 14px; }
.avis-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.avis-link:hover { color: var(--primary); }
.avis-summary {
  text-align: center;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.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: 22px 4px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.faq-chevron svg { width: 18px; height: 18px; }
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 4px 24px;
}
.faq-answer p { color: var(--text-2); line-height: 1.7; margin: 0; }
.faq-answer p + p { margin-top: 10px; }

/* ZONE + CARTE */
.zone-section { background: var(--surface); }
.zone-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .zone-cols { grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch; }
}
.zone-info h3 { margin-bottom: 14px; font-size: 1.4rem; font-style: italic; }
.zone-info p { color: var(--text-2); }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 28px;
}
.zone-list li {
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.86rem;
  color: var(--text-2);
}
.horaires-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.horaires-table h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--ff-ui);
  font-weight: 600;
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.96rem;
  border-top: 1px dashed var(--border);
}
.horaires-row:first-of-type { border-top: 0; }
.horaires-row.is-today { color: var(--primary); font-weight: 600; }
.horaires-row.is-today .horaires-day::before {
  content: "•";
  color: var(--accent);
  margin-right: 6px;
}
.horaires-row.is-closed { color: var(--text-mute); }
.horaires-day { font-family: var(--ff-ui); }
.horaires-time { color: var(--text-2); font-family: var(--ff-ui); }
.horaires-row.is-today .horaires-time { color: var(--primary); }

.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  min-height: 300px;
}
@media (min-width: 880px) {
  .map-wrapper { padding-top: 0; height: 100%; min-height: 420px; }
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}
.contact-info h3 { font-size: 1.4rem; font-style: italic; margin-bottom: 16px; }
.contact-info p { color: var(--text-2); margin-bottom: 22px; max-width: 44ch; }
.contact-coord {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-coord li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--text);
}
.contact-coord .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--bg));
  color: var(--accent);
  flex-shrink: 0;
}
.contact-coord .icon svg { width: 18px; height: 18px; }
.contact-coord a { color: var(--text); }
.contact-coord a:hover { color: var(--accent); }
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-cta .btn { width: 100%; }
@media (min-width: 560px) {
  .contact-cta { flex-direction: row; flex-wrap: wrap; }
  .contact-cta .btn { width: auto; flex: 1 1 200px; }
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
@media (min-width: 768px) {
  .contact-form-wrap { padding: 36px 32px; }
}
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 18px; font-style: italic; }
