/* reproduction-tableau-sur-toile.fr — charte distincte (papier chaud, encre, terre cuite) */
:root {
  --rt-bg: #f4efe6;
  --rt-bg2: #ebe3d6;
  --rt-ink: #141c1c;
  --rt-muted: #4a5353;
  --rt-accent: #c45c3e;
  --rt-accent2: #5c7a6e;
  --rt-white: #ffffff;
  --rt-line: rgba(20, 28, 28, 0.12);
  --rt-radius: 14px;
  --rt-font: "DM Sans", system-ui, sans-serif;
  --rt-display: "Fraunces", Georgia, serif;
  --rt-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--rt-ink);
}

/* -------- Header -------- */
.rt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rt-line);
  transition: box-shadow 0.2s ease;
}

.rt-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(20, 28, 28, 0.06);
}

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

.rt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--rt-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rt-logo__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rt-accent), #e8a090);
  box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.25);
}

.rt-logo__text {
  font-family: var(--rt-display);
  font-size: 1.15rem;
}

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

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

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

.rt-nav__close {
  display: none;
}

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

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

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

  .rt-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 58px;
    background: var(--rt-bg);
    border-bottom: 1px solid var(--rt-line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .rt-header.is-menu-open .rt-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

  body.menu-open {
    overflow: hidden;
  }
}

/* -------- Buttons -------- */
.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--rt-white);
  background: linear-gradient(135deg, var(--rt-accent), #a84834);
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}

.rt-btn:hover {
  color: var(--rt-white);
  filter: brightness(1.05);
}

.rt-btn--line {
  background: transparent;
  color: var(--rt-ink);
  border: 2px solid var(--rt-ink);
  box-shadow: none;
}

.rt-btn--line:hover {
  background: var(--rt-ink);
  color: var(--rt-white);
}

.rt-btn--nav {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

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

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

.rt-btn--sticky {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

/* Legacy .btn on artist pages */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--rt-white);
  background: linear-gradient(135deg, var(--rt-accent), #a84834);
}

.btn:hover {
  color: var(--rt-white);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--rt-ink);
  border: 2px solid var(--rt-ink);
}

.btn--nav {
  padding: 0.55rem 1rem;
}

.rt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* -------- Sticky -------- */
.rt-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(20, 28, 28, 0.92);
  color: var(--rt-white);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

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

.rt-sticky__phone {
  color: var(--rt-white);
  font-weight: 600;
  text-decoration: none;
}

/* -------- Hero (home) -------- */
.rt-hero {
  padding: 2.5rem 1.25rem 3rem;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(196, 92, 62, 0.12), transparent 60%),
    var(--rt-bg);
}

.rt-hero__layout {
  max-width: var(--rt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 960px) {
  .rt-hero__layout {
    grid-template-columns: 1fr;
  }
}

.rt-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rt-accent2);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.rt-hero__title {
  font-family: var(--rt-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.rt-hero__lead {
  margin: 0;
  color: var(--rt-muted);
  font-size: 1.08rem;
}

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

.rt-pills li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  font-size: 0.88rem;
  font-weight: 500;
}

.rt-hero__visual {
  border-radius: var(--rt-radius);
  padding: 1rem;
  overflow: hidden;
}

.rt-hero__visual img {
  display: block;
  width: 100%;
  border-radius: calc(var(--rt-radius) - 6px);
}

/* -------- Band comparison -------- */
.rt-band {
  padding: 3rem 1.25rem;
  background: var(--rt-white);
  border-top: 1px solid var(--rt-line);
  border-bottom: 1px solid var(--rt-line);
}

.rt-wrap {
  max-width: var(--rt-max);
  margin: 0 auto;
}

.rt-band__intro {
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.rt-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rt-accent);
  margin-bottom: 0.5rem;
}

.rt-band h2,
.rt-section h2 {
  font-family: var(--rt-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.rt-band__text,
.rt-lead {
  margin: 0;
  color: var(--rt-muted);
}

.rt-compare {
  border-radius: var(--rt-radius);
  padding: 1rem;
  background: var(--rt-white);
}

.rt-compare__slider {
  border-radius: calc(var(--rt-radius) - 6px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20, 28, 28, 0.06);
}

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

.rt-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, 28, 28, 0.88);
  border-radius: 4px;
}

.rt-compare__fig--after figcaption {
  left: auto;
  right: 12px;
  background: rgba(196, 92, 62, 0.92);
}

/* img-comparison-slider: pas de crop agressif */
.rt-compare__fig img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------- Sections -------- */
.rt-section {
  padding: 3rem 1.25rem;
}

.rt-section--muted {
  background: var(--rt-bg2);
}

.rt-section--form {
  background: var(--rt-white);
  border-top: 1px solid var(--rt-line);
}

.rt-section--guide {
  padding-bottom: 4rem;
}

.rt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.rt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 28, 28, 0.08);
}

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

.rt-card__figure {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
}

.rt-card__figure img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.rt-card__link {
  margin-top: auto;
  padding: 0 1rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rt-accent);
}

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

.rt-step {
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-radius);
  padding: 1.25rem;
}

.rt-step__n {
  font-family: var(--rt-display);
  font-size: 1.5rem;
  color: var(--rt-accent2);
  font-weight: 600;
}

.rt-step h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.1rem;
}

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

/* Mosaic */
.rt-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.rt-mosaic__cell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--rt-white);
  aspect-ratio: 9 / 16;
}

.rt-mosaic__cell img {
  width: 100%;
  height: auto;
  display: block;
}

.rt-mosaic__cell span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(transparent, rgba(20, 28, 28, 0.75));
  font-size: 0.85rem;
  font-weight: 600;
}

/* Avis */
.rt-avis {
  background: linear-gradient(180deg, var(--rt-bg2), var(--rt-bg));
}

.rt-avis__wrap {
  max-width: var(--rt-max);
}

.rt-avis__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.rt-avis__score {
  text-align: right;
}

.rt-avis__stars {
  display: block;
  color: #c9a227;
  letter-spacing: 2px;
}

.rt-avis__num {
  font-family: var(--rt-display);
  font-size: 2rem;
  font-weight: 700;
}

.rt-avis__count {
  display: block;
  font-size: 0.85rem;
  color: var(--rt-muted);
}

.rt-avis__box {
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-radius);
  padding: 1.5rem;
}

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

.rt-avis__quote {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--rt-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(196, 92, 62, 0.2);
  pointer-events: none;
}

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

.rt-avis__slide {
  min-width: 100%;
  padding: 0.5rem 0 0 0.5rem;
}

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

.rt-avis__author {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--rt-muted);
}

.rt-avis__line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--rt-accent);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.rt-avis__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.rt-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--rt-line);
  cursor: pointer;
  padding: 0;
}

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

.rt-avis__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rt-line);
  font-size: 0.88rem;
  color: var(--rt-muted);
}

.rt-avis__all {
  font-weight: 600;
}

/* Form */
.rt-form-wrap {
  max-width: 640px;
}

.rt-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-top: 1.5rem;
}

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

.rt-form label {
  font-weight: 600;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.rt-form label:not(:first-of-type) {
  margin-top: 0.25rem;
}

.rt-form input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--rt-line);
  font: inherit;
  background: var(--rt-bg);
}

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

.rt-upload input[type="file"] + label {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px dashed var(--rt-accent2);
  cursor: pointer;
  font-weight: 500;
  color: var(--rt-muted);
}

.rt-form__submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  justify-self: start;
}

.rt-feedback {
  grid-column: 1 / -1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 0.5rem 0 0;
}

.rt-feedback--ok {
  background: rgba(92, 122, 110, 0.15);
  color: #2d4a3e;
}

.rt-feedback--err {
  background: rgba(196, 92, 62, 0.12);
  color: #7a2e1f;
}

/* FAQ */
.rt-faq-wrap {
  max-width: 720px;
}

.rt-faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rt-line);
}

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

.rt-faq__item p {
  margin: 0;
  color: var(--rt-muted);
}

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

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

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

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

/* Guide */
.rt-guide-head {
  margin-bottom: 1.5rem;
}

.rt-guide-head__lead a {
  font-weight: 600;
}

.rt-guide-body {
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-radius);
  padding: 1.5rem 1.25rem 2rem;
}

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

.rt-guide-cta__up {
  font-size: 0.92rem;
  color: var(--rt-muted);
}

/* Guide article (home.php) */
.guide-toc {
  background: var(--rt-bg2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

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

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

.guide-toc a {
  color: var(--rt-muted);
}

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

.guide-section h2 {
  font-family: var(--rt-display);
  font-size: 1.35rem;
  margin-top: 0;
}

/* Rich guide blocks (artist articles with tables / lists) */
.article-prose--rich .guide-section > * + p,
.article-prose--rich .guide-section > * + ul,
.article-prose--rich .guide-section > * + ol,
.article-prose--rich .guide-section > * + .guide-table-wrap,
.article-prose--rich .guide-section > * + .guide-figure {
  margin-top: 1rem;
}

.article-prose--rich .guide-list {
  margin: 1rem 0 0;
  padding-left: 1.35rem;
  color: var(--rt-muted);
}

.article-prose--rich .guide-list li {
  margin-bottom: 0.5rem;
}

.article-prose--rich .guide-list--numbered {
  padding-left: 1.5rem;
}

.article-prose--rich .guide-list--check {
  list-style: none;
  padding-left: 0;
}

.article-prose--rich .guide-list--check li {
  position: relative;
  padding-left: 1.5rem;
}

.article-prose--rich .guide-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--rt-accent);
  border-radius: 1px;
}

.article-prose--rich .guide-list--cols {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 520px) {
  .article-prose--rich .guide-list--cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-prose--rich .guide-table-wrap {
  margin: 1.25rem 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rt-line);
  border-radius: 10px;
  background: var(--rt-white);
}

.article-prose--rich .guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.5;
}

.article-prose--rich .guide-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--rt-muted);
  border-bottom: 1px solid var(--rt-line);
  background: var(--rt-bg2);
}

.article-prose--rich .guide-table th,
.article-prose--rich .guide-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rt-line);
}

.article-prose--rich .guide-table th {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rt-ink);
  background: color-mix(in srgb, var(--rt-bg2) 70%, var(--rt-white));
}

.article-prose--rich .guide-table tbody tr:last-child th,
.article-prose--rich .guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.article-prose--rich .guide-figure {
  display: block;
  margin: 1.25rem auto 0;
  padding: 0;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--rt-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--rt-bg2);
}

.article-prose--rich .guide-figure > img {
  display: block;
  width: 100%;
  height: auto;
}

.article-prose--rich .guide-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--rt-muted);
  line-height: 1.45;
}

.guide-callout {
  border-left: 4px solid var(--rt-accent2);
  padding: 0.75rem 1rem;
  background: var(--rt-bg2);
  border-radius: 0 10px 10px 0;
  margin: 1rem 0;
}

.guide-figure img {
  border-radius: 12px;
}

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

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

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

/* Article prose artist pages */
.article-prose {
  max-width: 68ch;
}

.article-prose h2 {
  font-family: var(--rt-display);
  font-size: 1.35rem;
  margin-top: 1.75rem;
}

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

.artist-guide__lead {
  color: var(--rt-ink);
  font-size: 1.08rem;
}

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

.artist-guide__pillars li {
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.5rem;
  background: var(--rt-bg2);
  border-radius: 10px;
  border: 1px solid var(--rt-line);
}

.artist-guide__cta,
.artist-guide__legal {
  font-size: 0.95rem;
}

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

/* -------- Artist pages (legacy) -------- */
.page-hero {
  padding: 2.5rem 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(196, 92, 62, 0.08), transparent 50%), var(--rt-bg);
}

.page-hero--text .wrap {
  max-width: var(--rt-max);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--rt-muted);
  margin: 0 0 0.75rem;
}

.breadcrumb a {
  color: var(--rt-muted);
}

.page-hero h1 {
  font-family: var(--rt-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.5rem;
}

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

.section {
  padding: 2.5rem 1.25rem;
}

.wrap {
  max-width: var(--rt-max);
  margin: 0 auto;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rt-accent);
  margin-bottom: 0.5rem;
}

.section__lead {
  margin: 0;
  color: var(--rt-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

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

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

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

.gallery-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.gallery-item img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

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

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

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

.gallery-item__price-promo {
  color: var(--rt-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.25rem 1.5rem;
  border-radius: var(--rt-radius);
  background: var(--rt-white);
  border: 1px solid var(--rt-line);
  box-shadow: 0 12px 40px rgba(20, 28, 28, 0.06);
}

.cta-panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.cta-panel p {
  margin: 0;
  color: var(--rt-muted);
}

/* Legal */
.legal-hero {
  padding: 2.5rem 1.25rem 1.5rem;
  background: var(--rt-white);
  border-bottom: 1px solid var(--rt-line);
}

.legal-hero__inner {
  max-width: var(--rt-max);
  margin: 0 auto;
}

.legal-hero h1 {
  font-family: var(--rt-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin: 0.5rem 0 0;
}

.legal-main {
  max-width: var(--rt-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.legal-main h2 {
  font-family: var(--rt-display);
  margin-top: 1.75rem;
}

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

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

/* Footer */
.rt-footer {
  padding: 2.5rem 1.25rem;
  background: #1a2222;
  color: rgba(255, 255, 255, 0.85);
}

.rt-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.rt-footer a:hover {
  color: #fff;
}

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

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

.rt-footer__brand {
  font-family: var(--rt-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: #fff;
}

.rt-footer__muted {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.rt-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rt-footer__copy {
  max-width: var(--rt-max);
  margin: 2rem auto 0;
  font-size: 0.85rem;
  opacity: 0.75;
  text-align: center;
}

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