/* ── Image hero ── */
.service-hero {
  width: 100%;
  overflow: hidden;
  background-color: #d8d0c2;
  /* Hauteur responsive : grande sur desktop, raisonnble sur mobile */
  max-height: 480px;
}

.service-hero-img {
  width: 100%;
  height: clamp(180px, 38vw, 480px);
  object-fit: cover;
  display: block;
}

/* ── Corps de la page ── */
.service-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
  line-height: 1.2;
  word-break: break-word;
}

.service-content {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
  color: #3a3530;
  max-width: 780px;
}

/* Fil d'Ariane */
.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c6560;
}

/* ── Contenu riche ── */
.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--dark);
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.service-content h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold-light);
  margin-top: 0.4rem;
}

.service-content p {
  margin-bottom: 1rem;
}

.service-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.2rem;
}

.service-content ul li {
  padding: 0.25rem 0 0.25rem 1.6rem;
  position: relative;
}

.service-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

.service-content ol li {
  padding: 0.2rem 0;
}

.service-content ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

.service-content strong {
  color: var(--dark);
  font-weight: 700;
}

.service-content .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}

.service-content .service-cta:hover {
  background: var(--gold-light);
  color: #fff;
  text-decoration: none;
}

.service-intro {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #4a4540;
  border-left: 3px solid var(--gold-light);
  padding-left: 1.1rem;
  margin-bottom: 1.8rem;
  line-height: 1.75;
}
