/* Pages galeriste.html et restaurateur.html : theme clair de la page artiste,
   une seule colonne de texte, un bouton vers L'Admoniteur, une photo. */
:root {
  --bg:     #f7f4ee;
  --accent: rgba(20,18,14,0.9);
  --white:  rgba(20,18,14,0.9);
  --dim:    rgba(20,18,14,0.5);
  --faint:  rgba(20,18,14,0.12);
  --fg-muted: #6b675f;
}
body { background: var(--bg); color: var(--white); }
nav { background: var(--bg); }

.metier-hero {
  padding: calc(var(--nav-h, 4.5rem) + clamp(3rem, 8vw, 6rem)) var(--gap) clamp(2.5rem, 5vw, 4rem);
  max-width: none;
}
.metier-hero .artiste-hero-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 1.25rem;
}
.metier-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: inherit;
  max-width: 780px;
  margin: 0 0 1.5rem;
}
.metier-hero p {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0 0 1.25rem;
}
.metier-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}
/* bouton : encre au repos, couleur au survol, comme les autres boutons du site */
.metier-cta {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border: 1px solid currentColor;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.metier-cta:hover { color: var(--pa, var(--white)); }
.metier-lien {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color .2s;
}
.metier-lien:hover { color: var(--pa, var(--white)); }

.metier-photo { padding: 0 var(--gap) clamp(3rem, 6vw, 5rem); }
.metier-photo figure { margin: 0; max-width: 1100px; }
.metier-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(20,18,14,0.05);
}
.metier-photo figcaption {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}
@media (max-width: 600px) {
  .metier-photo img { aspect-ratio: 4 / 3; }
  .metier-cta { width: 100%; text-align: center; }
}
