/* Copie tableau de maîtres - charte visuelle distincte (éditorial, tons chauds, structure asymétrique) */

:root {
  --paper: #f4f1ea;
  --paper2: #ebe6dc;
  --ink: #14161a;
  --muted: #5c5a56;
  --line: #c9c2b6;
  --accent: #c45c3e;
  --accent-dim: #a84a32;
  --teal: #2a5c5a;
  --white: #ffffff;
  --radius: 2px;
  --shadow: 0 18px 40px rgba(20, 22, 26, 0.08);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --wrap: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-optical-sizing: auto;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dim);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* --- Header --- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.masthead.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 22, 26, 0.06);
}

.masthead__inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.masthead__brand-mark {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  transform: rotate(45deg);
}

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.masthead__nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.masthead__nav a:hover,
.masthead__nav a.is-active {
  color: var(--accent);
}

.masthead__cta {
  padding: 0.45rem 1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper) !important;
}

.masthead__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white) !important;
}

.masthead__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.masthead__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.masthead__close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 900px) {
  .masthead__burger {
    display: flex;
  }
  .masthead__close {
    display: block;
  }
  .masthead__nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 1.75rem 2rem;
    gap: 1.1rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow);
  }
  .masthead.is-menu-open .masthead__nav {
    transform: translateX(0);
  }
}

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta__phone {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  background: var(--paper2);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-cta__btn:hover {
  background: var(--accent-dim);
  color: var(--white);
}

/* --- Hero --- */
.shell-hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(165deg, var(--paper2) 0%, var(--paper) 45%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.shell-hero__grid {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.shell-hero__visual {
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.shell-hero__visual img {
  display: block;
  width: 100%;
}

.shell-hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.shell-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
}

.shell-hero__lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.shell-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.shell-hero__tags span {
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

@media (max-width: 880px) {
  .shell-hero__grid {
    grid-template-columns: 1fr;
  }
  .shell-hero__visual {
    transform: none;
    order: -1;
  }
}

/* --- Sections --- */
.block {
  padding: 3.5rem 0;
}

.block--tint {
  background: var(--paper2);
  border-block: 1px solid var(--line);
}

.block__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.block__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.block__lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 2rem;
}

/* Comparison - fond blanc images, pas de bordure sur le bloc image */
.compare {
  width: var(--wrap);
  margin-inline: auto;
}

.compare__head {
  margin-bottom: 1.75rem;
}

.compare__frame {
  background: var(--white);
  padding: 1rem;
  max-width: 920px;
  margin-inline: auto;
}

.compare__slider img-comparison-slider {
  display: block;
  width: 100%;
  --divider-width: 2px;
  --divider-color: var(--accent);
}

.compare__slider figure {
  margin: 0;
  background: var(--white);
  position: relative;
}

.compare__slider figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.compare__slider figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 0.35rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(15, 17, 20, 0.88);
  color: #fff;
  border-radius: 4px;
}

.compare__slider figure.after figcaption {
  left: auto;
  right: 12px;
  background: rgba(139, 90, 43, 0.92);
}

/* Artist mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.mosaic-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.mosaic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mosaic-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 1rem 0;
}

.mosaic-card__fig {
  margin: 0;
  padding: 1rem;
  background: var(--white);
}

.mosaic-card__fig img {
  display: block;
  width: 100%;
}

.mosaic-card__go {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

/* Steps */
.ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ladder__step {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(196, 92, 62, 0.06), transparent);
}

.ladder__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.ladder__step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.ladder__step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .ladder {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .ladder {
    grid-template-columns: 1fr;
  }
}

/* Portfolio strip */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.strip a {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--white);
  background: var(--white);
  padding: 0.5rem;
}

.strip a img {
  display: block;
  width: 100%;
  filter: contrast(0.98);
}

.strip a span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

/* Avis */
.pole-avis {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0;
}

.pole-avis a {
  color: #9fd4d0;
}

.pole-avis__top {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.pole-avis__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.5rem;
}

.pole-avis__badge {
  text-align: right;
}

.pole-avis__stars {
  letter-spacing: 0.08em;
  color: #e8c547;
}

.pole-avis__score {
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
}

.pole-avis__count {
  font-size: 0.85rem;
  opacity: 0.85;
}

.pole-avis__stage {
  width: var(--wrap);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.pole-avis__viewport {
  overflow: hidden;
}

.pole-avis__track {
  display: flex;
  transition: transform 0.45s ease;
}

.pole-avis__slide {
  flex: 0 0 100%;
  padding: 2rem 2.25rem;
  box-sizing: border-box;
}

.pole-avis__slide blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
}

.pole-avis__author {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.85;
}

.pole-avis__dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  padding: 0.75rem;
}

.avis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.avis-dot.is-active {
  background: var(--accent);
}

.pole-avis__footer {
  width: var(--wrap);
  margin-inline: auto;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
  opacity: 0.85;
}

/* Form */
.sheet {
  width: var(--wrap);
  margin-inline: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.65rem 1.25rem;
  align-items: center;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.form-upload {
  grid-column: 2;
}

.form-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-upload label[for="image"] {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  background: var(--white);
}

.form-grid__submit {
  grid-column: 2;
  justify-self: start;
  margin-top: 0.5rem;
}

.form-feedback {
  grid-column: 1 / -1;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-feedback--ok {
  background: #e8f5f0;
  border: 1px solid #9bc4b5;
}

.form-feedback--err {
  background: #fdecea;
  border: 1px solid #e0a199;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-upload,
  .form-grid__submit {
    grid-column: 1;
  }
}

/* FAQ */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  background: var(--white);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-category {
  margin: 2rem 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-stack > .faq-category:first-child {
  margin-top: 0;
}

.faq-item ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.faq-item ul li {
  margin: 0.35rem 0;
}

/* Guide / prose */
.paper-guide {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.article-prose {
  font-size: 1.02rem;
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 2rem 0 0.75rem;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose p,
.article-prose li {
  color: var(--muted);
}

.article-prose a {
  color: var(--teal);
}

.guide-toc {
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background: var(--paper2);
}

.guide-toc__title {
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.guide-toc__list {
  margin: 0;
  padding-left: 1.1rem;
}

.guide-section {
  margin-bottom: 2rem;
}

.guide-callout {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.15rem;
  background: rgba(196, 92, 62, 0.06);
  margin: 1.25rem 0;
}

.guide-list {
  padding-left: 1.2rem;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.guide-table th,
.guide-table td {
  border: 1px solid var(--line);
  padding: 0.85rem 0.85rem;
}

.guide-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.guide-figure {
  margin: 1.5rem 0;
  background: var(--white);
  padding: 1rem;
}

.guide-figure img {
  display: block;
  width: 100%;
}

/* Guide accueil : pas plus de 500px de haut pour les illustrations */
.paper-guide .guide-figure img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.guide-figure figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.guide-cards-mini {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}

.guide-cards-mini__item {
  display: block;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  background: var(--paper);
}

.guide-cards-mini__label {
  font-weight: 700;
  display: block;
}

.guide-cards-mini__hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.guide-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--teal);
  background: var(--paper2);
}

.guide-footer-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.guide-footer-cta__up {
  font-size: 0.92rem;
}

/* Page artist */
.page-cover {
  padding: 3rem 0 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 4px solid var(--accent);
}

.page-cover .breadcrumb a {
  color: #9fd4d0;
}

.page-cover__inner {
  width: var(--wrap);
  margin-inline: auto;
}

.page-cover h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0;
}

.page-cover__lead {
  color: rgba(244, 241, 234, 0.88);
  max-width: 55ch;
  margin: 0 0 1.25rem;
}

.page-cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-cover .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.page-cover .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.page-cover .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-tile {
  background: var(--white);
  padding: 0.65rem;
}

.gallery-tile img {
  display: block;
  width: 100%;
}

.cta-ribbon {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--paper2);
  border: 1px solid var(--line);
}

.cta-ribbon h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.cta-ribbon p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

/* Legal */
.breadcrumb {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.breadcrumb a:hover {
  color: var(--accent);
}

.legal-head {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-head h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0.35rem 0 0;
}

.legal-body {
  width: var(--wrap);
  margin-inline: auto;
  padding: 2rem 0 4rem;
}

.legal-body h2 {
  font-family: var(--font-display);
  margin-top: 2rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
}

.legal-version {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Footer */
.site-foot {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper2);
}

.site-foot__grid {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
}

.site-foot__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.site-foot__muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.site-foot__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-foot__links a:hover {
  color: var(--accent);
}

.site-foot__copy {
  width: var(--wrap);
  margin: 1.75rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-foot__copy a {
  color: var(--teal);
}

@media (max-width: 720px) {
  .site-foot__grid {
    grid-template-columns: 1fr;
  }
}

/* Artist guide prose */
.artist-guide__lead {
  font-size: 1.05rem;
  color: var(--ink);
}

.artist-guide__pillars {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.artist-guide__pillars li {
  padding: 0.65rem 0 0.65rem 1rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.artist-guide__cta {
  margin-top: 1.5rem;
}

.artist-guide__legal {
  font-size: 0.92rem;
  margin-top: 2rem;
  color: var(--muted);
}

/* --- Œuvres phares + mini-galerie (pages artistes) --- */
.artist-guide .guide-section.artist-guide__highlight {
  margin-top: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.artist-guide .artist-guide__highlight h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: clamp(1.28rem, 2.1vw, 1.58rem);
}
.artist-guide .artist-guide__h3 {
  margin: 1.5rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.artist-guide .artist-guide__highlight > p:first-of-type {
  margin-top: 0;
  color: var(--muted);
}
.artist-guide .artist-guide__works-list {
  margin: 0.65rem 0 0;
  padding-left: 1.35rem;
}
.artist-guide .artist-guide__works-list li {
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
.artist-guide .artist-guide__works-list--themes li {
  margin-bottom: 0.45rem;
}
.artist-guide .artist-guide__work-title {
  font-weight: 600;
}
.artist-guide .artist-guide__work-date {
  font-size: 0.88em;
  color: var(--muted);
  font-weight: 500;
}
.artist-guide__media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.85rem 0 0;
}
@media (max-width: 720px) {
  .artist-guide__media-strip {
    grid-template-columns: 1fr;
  }
}
.artist-guide__spotlight {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper2);
}
.artist-guide__spotlight img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}
.artist-guide__spotlight figcaption {
  font-size: 0.82rem;
  padding: 0.55rem 0.65rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Compatibilité pages artistes (structure tableau-sur-commande) */
.page-hero.page-hero--text {
  padding: 3rem 0 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 4px solid var(--accent);
}

.page-hero .wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.page-hero .breadcrumb a {
  color: #9fd4d0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0.5rem 0;
}

.page-hero .section__lead {
  color: rgba(244, 241, 234, 0.88);
  max-width: 55ch;
  margin: 0 0 1.25rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.page-hero .btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}

.page-hero .btn--ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.section {
  padding: 3.5rem 0;
}

.section--gallery-top {
  background: var(--paper);
}

.section .wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section__lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 2rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
}

.gallery-section .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  background: var(--white);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.gallery-item img {
  display: block;
  width: 100%;
}

.gallery-item__price {
  margin: 0;
  padding: 0.45rem 0.5rem 0.35rem;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.gallery-item__price-now {
  font-weight: 600;
  color: var(--ink);
}

.gallery-item__price-was {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
}

.gallery-item__price-promo {
  color: var(--ok, #166534);
  font-weight: 600;
  font-size: 0.78em;
}

.cta-panel {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--paper2);
  border: 1px solid var(--line);
}

.cta-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

/* === Galerie artiste : titres + montant/devise (multisite) === */
.gallery-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  padding: 0 0.35rem;
  color: var(--ink);
}
.gallery-item__price-now {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.gallery-item__price-was {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.gallery-item__currency {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.gallery-item__price-was .gallery-item__currency {
  font-weight: 500;
}

/* === Prix galerie (parité copie-tableau-de-maitre.ch) === */
.gallery-section { background: #fff; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gallery-item { aspect-ratio: 4/5; margin-bottom:5em; border-radius: var(--radius, 12px); overflow: hidden; transition: transform 0.3s; background: #fff; display: flex; align-items: flex-start; justify-content: center; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; object-position: top center; display: block; }
.gallery-item:has(.gallery-item__title),
.gallery-item:has(.gallery-item__price) { flex-direction: column; align-items: stretch; justify-content: flex-start; aspect-ratio: auto; overflow: visible; }
.gallery-item:has(.gallery-item__title) img,
.gallery-item:has(.gallery-item__price) img { flex: 0 0 auto; aspect-ratio: 4/5; height: auto; max-height: min(320px, 55vh); width: 100%; object-fit: contain; object-position: top center; }
.gallery-item:has(.gallery-item__price) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem 0;
  align-items: stretch;
  justify-items: stretch;
}
.gallery-item:has(.gallery-item__price) .gallery-item__title {
  order: 1;
  margin: 0;
  padding: 0 0.35rem;
  text-align: center;
  min-width: 0;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.gallery-item:has(.gallery-item__price) .gallery-item__price {
  order: 2;
  margin: 0;
  padding: 0.35rem 0.35rem 0.25rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.gallery-item:has(.gallery-item__price) > img { order: 3; width: 100%; margin-top: 0.45rem; }
.gallery-item__title { font-size: 0.9rem; font-weight: 600; text-align: center; line-height: 1.35; margin: 0 0 0.4rem; padding: 0 0.35rem; color: var(--color-charcoal, var(--ink, #292524)); }
.gallery-item__price { text-align: center; font-size: 0.9rem; font-weight: 600; padding: 0.65rem 0.35rem 0.25rem; margin: 0; color: var(--color-charcoal, var(--ink, #292524)); line-height: 1.35; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.2rem 0.35rem; }
.gallery-item__price-now { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; flex-wrap: wrap; }
.gallery-item__price-was { text-decoration: line-through; opacity: 0.65; font-weight: 500; display: inline-flex; align-items: center; gap: 0.35rem; }
.gallery-item__price-was .gallery-item__currency { font-weight: 500; }
.gallery-item__currency { font-weight: 700; letter-spacing: 0.02em; }
.gallery-item__price-promo { font-size: 0.85em; font-weight: 600; color: #b45309; }
