/* Reproduction de toiles - charte visuelle distincte (papier chaud, encre, accent or) */

:root {
  --rf-paper: #f6f1e7;
  --rf-paper-2: #fffdf8;
  --rf-ink: #14221f;
  --rf-ink-soft: #3d4a47;
  --rf-teal: #0f3d3e;
  --rf-teal-2: #174f50;
  --rf-gold: #c9a227;
  --rf-gold-soft: #e8cf6a;
  --rf-line: rgba(20, 34, 31, 0.12);
  --rf-white: #ffffff;
  --rf-radius: 14px;
  --rf-radius-sm: 10px;
  --rf-shadow: 0 18px 50px rgba(15, 61, 62, 0.12);
  --rf-font: "Outfit", system-ui, sans-serif;
  --rf-serif: "Fraunces", Georgia, serif;
  --rf-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rf-font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--rf-ink);
  background: var(--rf-paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--rf-teal);
}

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

/* --- Header --- */
.rf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--rf-teal);
  transition: box-shadow 0.2s ease;
}

.rf-header.is-scrolled {
  box-shadow: var(--rf-shadow);
}

.rf-header.is-menu-open {
  z-index: 60;
}

.rf-header__inner {
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rf-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--rf-ink);
  font-family: var(--rf-serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.rf-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--rf-teal), var(--rf-gold));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.rf-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.rf-nav a {
  font-weight: 500;
  color: var(--rf-ink-soft);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
}

.rf-nav a:hover,
.rf-nav a.is-active {
  color: var(--rf-teal);
}

.rf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rf-btn:active {
  transform: translateY(1px);
}

.rf-btn--primary,
.rf-btn--nav {
  background: var(--rf-teal);
  color: var(--rf-white);
}

/* Plus spécifique que .rf-nav a { color: … } pour le CTA menu */
.rf-nav a.rf-btn--nav {
  color: #ffffff;
}

.rf-btn--primary:hover,
.rf-btn--nav:hover {
  background: var(--rf-teal-2);
  color: var(--rf-white);
}

.rf-nav a.rf-btn--nav:hover {
  color: #ffffff;
}

.rf-btn--ghost {
  background: transparent;
  color: var(--rf-teal);
  border-color: rgba(15, 61, 62, 0.35);
}

.rf-btn--sticky {
  background: var(--rf-gold);
  color: var(--rf-ink);
}

.rf-btn--sticky:hover {
  background: var(--rf-gold-soft);
  color: var(--rf-ink);
}

.rf-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--rf-line);
  background: var(--rf-paper-2);
  cursor: pointer;
}

.rf-burger span {
  display: block;
  height: 2px;
  background: var(--rf-ink);
  border-radius: 2px;
}

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

@media (max-width: 900px) {
  .rf-burger {
    display: inline-flex;
  }

  .rf-nav {
    position: fixed;
    inset: 0;
    background: var(--rf-paper-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  }

  .rf-header.is-menu-open .rf-nav {
    transform: translateX(0);
  }

  .rf-nav__close {
    display: block;
  }
}

/* --- Sticky bar --- */
.rf-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(20, 34, 31, 0.94);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.rf-sticky.is-visible {
  transform: translateY(0);
}

.rf-sticky__phone {
  color: var(--rf-gold-soft);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
}

/* --- Layout --- */
.rf-wrap {
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.rf-block {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.rf-block--cream {
  background: var(--rf-paper-2);
  border-top: 1px solid var(--rf-line);
  border-bottom: 1px solid var(--rf-line);
}

.rf-block--ink {
  background: linear-gradient(160deg, var(--rf-teal) 0%, #0b2a2b 100%);
  color: #e9f4f3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rf-block--ink a {
  color: var(--rf-gold-soft);
}

.rf-block__head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.rf-block__head--on-dark .rf-lead {
  color: rgba(233, 244, 243, 0.92);
}

.rf-block__head h2 {
  font-family: var(--rf-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.rf-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

.rf-block--ink .rf-eyebrow {
  color: var(--rf-gold-soft);
}

.rf-lead {
  margin: 0;
  color: var(--rf-ink-soft);
  font-size: 1.08rem;
}

/* --- Hero --- */
.rf-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 1rem) 0 3rem;
  overflow: hidden;
}

.rf-hero__diag {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: linear-gradient(115deg, rgba(201, 162, 39, 0.18), transparent 55%);
  pointer-events: none;
}

.rf-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

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

.rf-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-teal-2);
  margin: 0 0 0.75rem;
}

.rf-hero__title {
  font-family: var(--rf-serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.rf-hero__subtitle {
  margin: 0 0 1.25rem;
  color: var(--rf-ink-soft);
  font-size: 1.1rem;
}

.rf-pills {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rf-pills li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(15, 61, 62, 0.08);
  border: 1px solid var(--rf-line);
}

.rf-media {
  background: #ffffff;
  border-radius: var(--rf-radius);
  padding: 1rem;
  box-shadow: var(--rf-shadow);
}

.rf-media--hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Comparaison --- */
.rf-compare {
  display: flex;
  justify-content: center;
}

.rf-compare__inner {
  width: min(920px, 100%);
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--rf-radius);
  box-shadow: var(--rf-shadow);
}

.rf-compare__inner img-comparison-slider {
  --divider-width: 3px;
  --divider-color: var(--rf-teal);
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.rf-compare__fig {
  margin: 0;
  background: #ffffff;
  position: relative;
}

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

.rf-compare__fig 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: 700;
  color: #fff;
  background: rgba(20, 34, 31, 0.88);
  border-radius: 4px;
}

.rf-compare__fig--after figcaption {
  left: auto;
  right: 12px;
  background: rgba(45, 122, 110, 0.92);
}

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

.rf-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--rf-radius);
  background: var(--rf-paper-2);
  border: 0;
  box-shadow: 0 1px 0 rgba(20, 34, 31, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.rf-card__name {
  font-family: var(--rf-serif);
  font-weight: 700;
  font-size: 1.15rem;
}

.rf-card__media {
  display: block;
  background: #ffffff;
  border-radius: var(--rf-radius-sm);
  padding: 0.5rem;
}

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

.rf-card__cta {
  font-weight: 600;
  color: var(--rf-teal);
  font-size: 0.95rem;
}

/* --- Steps --- */
.rf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.rf-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rf-radius);
  padding: 1.1rem 1.1rem 1.25rem;
}

.rf-step h3 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--rf-serif);
  font-size: 1.2rem;
}

.rf-step p {
  margin: 0;
  color: rgba(233, 244, 243, 0.9);
  font-size: 0.98rem;
}

.rf-step__n {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rf-gold-soft);
}

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

.rf-mosaic__item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #ffffff;
  border: 0;
  padding: 0;
}

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

.rf-mosaic__item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(transparent, rgba(20, 34, 31, 0.85));
}

/* --- Avis --- */
.rf-avis__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.rf-avis__stars {
  color: var(--rf-gold);
  letter-spacing: 0.08em;
}

.rf-avis__score {
  display: block;
  font-family: var(--rf-serif);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}

.rf-avis__meta {
  display: block;
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
}

.rf-avis__stage {
  border: 1px solid var(--rf-line);
  border-radius: var(--rf-radius);
  background: var(--rf-paper-2);
  padding: 1.25rem;
  box-shadow: var(--rf-shadow);
}

.rf-avis__viewport {
  position: relative;
  overflow: hidden;
}

.rf-avis__quote {
  position: absolute;
  top: -0.25rem;
  left: 0.25rem;
  font-family: var(--rf-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(15, 61, 62, 0.12);
  pointer-events: none;
}

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

.rf-avis__slide {
  min-width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  box-sizing: border-box;
}

.rf-avis__slide blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--rf-ink);
}

.rf-avis__author {
  margin: 1rem 0 0;
  font-weight: 600;
  color: var(--rf-ink-soft);
}

.rf-avis__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1rem;
}

.avis-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 61, 62, 0.2);
  cursor: pointer;
}

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

.rf-avis__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rf-line);
}

.rf-avis__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
}

.rf-avis__link {
  font-weight: 600;
}

/* --- Formulaire --- */
.rf-form-wrap {
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.65rem 1rem;
  align-items: center;
  max-width: 760px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--rf-ink-soft);
}

.form-grid input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 2px solid var(--rf-line);
  background: #ffffff;
  font: inherit;
}

.form-grid input:focus {
  outline: none;
  border-color: rgba(15, 61, 62, 0.45);
  box-shadow: 0 0 0 3px rgba(15, 61, 62, 0.12);
}

.form-upload {
  grid-column: 2 / 3;
  border: 2px dashed rgba(15, 61, 62, 0.35);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
}

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

.form-upload label[for="image"] {
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  color: var(--rf-teal);
}

.form-grid__submit {
  grid-column: 1 / -1;
}

@media (min-width: 721px) {
  .form-grid__submit {
    grid-column: 2 / 3;
    justify-self: start;
  }
}

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

  .form-upload {
    grid-column: 1 / -1;
  }
}

.form-feedback {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
}

.form-feedback--ok {
  background: rgba(23, 79, 80, 0.12);
  color: var(--rf-teal-2);
}

.form-feedback--err {
  background: rgba(180, 60, 50, 0.12);
  color: #7a2a22;
}

/* --- FAQ --- */
.rf-faq {
  display: grid;
  gap: 0.75rem;
}

.rf-faq__item {
  padding: 1rem 1.1rem;
  border-radius: var(--rf-radius-sm);
  border: 1px solid var(--rf-line);
  background: var(--rf-paper-2);
}

.rf-faq__item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--rf-serif);
  font-size: 1.1rem;
}

.rf-faq__item p {
  margin: 0;
  color: var(--rf-ink-soft);
}

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

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

.rf-faq__item ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--rf-ink-soft);
  font-size: 0.98rem;
}

.rf-faq__item ul li {
  margin: 0.35rem 0;
}

/* --- Guide long --- */
.rf-guide__intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.rf-guide__body {
  background: #ffffff;
  border-radius: var(--rf-radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--rf-line);
  box-shadow: var(--rf-shadow);
}

.rf-guide__foot {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.rf-guide__up {
  font-weight: 600;
  color: var(--rf-teal);
  text-decoration: none;
}

/* --- Prose article (home + artistes) --- */
.article-prose {
  font-size: 1.02rem;
}

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

.article-prose h3 {
  font-family: var(--rf-serif);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.article-prose p {
  margin: 0 0 1rem;
  color: var(--rf-ink-soft);
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1rem 1.1rem;
  color: var(--rf-ink-soft);
}

.article-prose li {
  margin-bottom: 0.35rem;
}

.article-prose figure {
  margin: 1.25rem 0;
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--rf-radius-sm);
}

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

.article-prose figcaption {
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
  margin-top: 0.5rem;
}

.guide-toc {
  border: 1px solid var(--rf-line);
  border-radius: var(--rf-radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  background: var(--rf-paper);
}

.guide-toc__title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-teal);
}

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

.guide-toc__list a {
  color: var(--rf-teal-2);
  text-decoration: none;
  font-weight: 500;
}

.guide-toc__list a:hover {
  text-decoration: underline;
}

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

.guide-callout {
  border-left: 4px solid var(--rf-gold);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 0 var(--rf-radius-sm) var(--rf-radius-sm) 0;
}

.guide-callout__label {
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--rf-teal);
}

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

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

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

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

.guide-table thead th {
  background: var(--rf-paper);
}

.guide-quote {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--rf-radius-sm);
  background: rgba(15, 61, 62, 0.06);
  font-family: var(--rf-serif);
}

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

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

.guide-cards-mini__label {
  display: block;
  font-weight: 700;
  color: var(--rf-teal);
}

.guide-cards-mini__hint {
  display: block;
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
}

.artist-guide__pillars {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.artist-guide__pillars li {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--rf-line);
  background: var(--rf-paper-2);
}

.artist-guide__legal {
  font-size: 0.95rem;
  color: var(--rf-ink-soft);
}

/* --- Œ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(--rf-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(--rf-ink);
  letter-spacing: 0.02em;
}
.artist-guide .artist-guide__highlight > p:first-of-type {
  margin-top: 0;
  color: var(--rf-ink-soft);
}
.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(--rf-ink-soft);
  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(--rf-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--rf-paper-2);
}
.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(--rf-ink-soft);
  line-height: 1.4;
}

/* --- Pages artistes (classes tableau) --- */
.wrap {
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rf-gold);
}

.section__lead {
  margin: 0 0 1rem;
  color: var(--rf-ink-soft);
  max-width: 720px;
}

.page-hero {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), transparent 50%), var(--rf-paper-2);
  border-bottom: 3px solid var(--rf-teal);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.page-hero--text .page-hero__overlay {
  max-width: 820px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
  margin: 0 0 0.75rem;
}

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

.page-hero h1 {
  font-family: var(--rf-serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  background: var(--rf-teal);
  color: var(--rf-white);
}

.btn--ghost {
  background: transparent;
  color: var(--rf-teal);
  border-color: rgba(15, 61, 62, 0.35);
}

.gallery-section {
  margin-top: 1rem;
}

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

.gallery-item {
  background: #ffffff;
  border-radius: var(--rf-radius-sm);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

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

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

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

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

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

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--rf-radius);
  background: linear-gradient(135deg, var(--rf-teal), #0b2a2b);
  color: #e9f4f3;
  box-shadow: var(--rf-shadow);
}

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

.cta-panel p {
  margin: 0;
  color: rgba(233, 244, 243, 0.9);
}

.cta-panel .btn {
  background: var(--rf-gold);
  color: var(--rf-ink);
}

.cta-panel .btn:hover {
  background: var(--rf-gold-soft);
}

/* --- Légales --- */
.legal-hero {
  background: var(--rf-teal);
  color: #e9f4f3;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 3px solid var(--rf-gold);
}

.legal-hero__inner {
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.legal-hero h1 {
  font-family: var(--rf-serif);
  margin: 0.35rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.legal-hero .breadcrumb {
  color: rgba(233, 244, 243, 0.85);
}

.legal-hero .breadcrumb a {
  color: var(--rf-gold-soft);
}

.legal-main {
  max-width: var(--rf-max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) 1.25rem;
}

.legal-main h2 {
  font-family: var(--rf-serif);
  margin-top: 2rem;
}

.legal-main h3 {
  margin-top: 1.25rem;
}

.legal-version {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--rf-ink-soft);
}

/* --- Footer --- */
.rf-footer {
  padding: 2.5rem 1.25rem;
  border-top: 3px solid var(--rf-teal);
  background: #0f2e2f;
  color: rgba(233, 244, 243, 0.9);
}

.rf-footer a {
  color: var(--rf-gold-soft);
  text-decoration: none;
  font-weight: 500;
}

.rf-footer a:hover {
  text-decoration: underline;
}

.rf-footer__grid {
  max-width: var(--rf-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}

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

.rf-footer__brand {
  font-family: var(--rf-serif);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.rf-footer__muted {
  margin: 0;
  color: rgba(233, 244, 243, 0.75);
}

.rf-footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem 1rem;
}

.rf-footer__copy {
  max-width: var(--rf-max);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(233, 244, 243, 0.65);
}

.rf-footer__copy a {
  color: #fff;
  font-weight: 600;
}

/* === 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; }
