/* =====================================================================
   MAJUWA — Michèle Quil, art abstrait contemporain (Villers-lès-Nancy)
   Refonte 2026 — DESIGN SYSTEM (Phase 1)
   ---------------------------------------------------------------------
   Style : galerie minimaliste haut de gamme (« white cube »).
   L'œuvre est la star : beaucoup de blanc, un seul accent doré sobre,
   typographie éditoriale (serif Cormorant Garamond + sans Inter).
   ===================================================================== */

:root {
  /* ---------- Couleurs ---------- */
  --ink:      #1a1a1a;   /* titres, texte fort        */
  --ink-2:    #2a2a28;   /* texte courant             */
  --muted:    #6e6a63;   /* texte secondaire          */
  --line:     #e7e3dd;   /* filets, bordures          */
  --bg:       #fafaf8;   /* fond général (blanc cassé)*/
  --bg-alt:   #f2efea;   /* fond de section alterné   */
  --white:    #ffffff;   /* zones œuvres / cartes     */

  --gold:      #a38560;  /* accent unique (doré sobre)*/
  --gold-dark: #8a6f4c;  /* accent survol             */
  --gold-soft: #efe9df;  /* aplat doré très clair     */

  /* ---------- Typographie ---------- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-text:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* ---------- Effets ---------- */
  --shadow-sm: 0 1px 2px rgba(26,26,26,.05), 0 4px 14px rgba(26,26,26,.05);
  --shadow-md: 0 10px 30px rgba(26,26,26,.10), 0 4px 10px rgba(26,26,26,.05);
  --shadow-lg: 0 24px 60px rgba(26,26,26,.16);

  --radius:    4px;      /* coins discrets, esprit galerie */
  --radius-sm: 2px;
  --radius-lg: 10px;

  /* ---------- Mise en page ---------- */
  --container:    1200px;
  --container-sm: 880px;
  --header-h:     76px;

  --t-fast: .2s ease;
  --t:      .35s cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   Reset léger
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-dark); }
[data-h] { cursor: pointer; }
button { font-family: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }

/* =====================================================================
   Typographie
   ===================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: .002em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-text); font-weight: 600; letter-spacing: .01em; }
p  { margin: 0 0 1.15em; }
strong { color: var(--ink); font-weight: 600; }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
}

/* Sur-titre fin en capitales espacées (signature « galerie ») */
.eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

/* =====================================================================
   Layout helpers
   ===================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--sm { max-width: var(--container-sm); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }

.section-head { max-width: 680px; margin: 0 0 clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: .4em; }

/* Filet décoratif fin */
.rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 22px 0; }
.section-head.center .rule { margin-inline: auto; }

/* =====================================================================
   Boutons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--gold { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--gold:hover { background: var(--ink); border-color: var(--ink); }
.btn--lg { padding: 17px 38px; font-size: .86rem; }
.btn:focus-visible { outline: 3px solid rgba(163,133,96,.5); outline-offset: 3px; }

/* Lien fléché discret */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-text); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
}
.link-arrow svg { transition: transform var(--t-fast); }
.link-arrow:hover { color: var(--gold-dark); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =====================================================================
   En-tête / Topbar / Navigation  (injecté par partials.js)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--ink); letter-spacing: .04em;
}
.brand__role {
  font-family: var(--font-text); font-size: .62rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}

.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--font-text); font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--t);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold-dark); }

/* Burger */
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; position: relative; margin-right: -8px;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--ink); transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t), opacity var(--t);
    box-shadow: var(--shadow-md);
  }
  body.menu-open .nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__cta { padding: 18px 24px 4px; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,.30) 0%, rgba(20,18,16,.55) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; padding-block: 80px; }
.hero .eyebrow { color: #f0e6d6; }
.hero h1 { color: #fff; margin-bottom: .2em; }
.hero__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: #f3ece1; margin: 0 0 .8em;
}
.hero__lead { color: rgba(255,255,255,.92); font-size: clamp(1.05rem,1.5vw,1.2rem); max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =====================================================================
   Grille d'œuvres / galerie  (réutilisée par Galerie & Collection)
   ===================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}
.artwork {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t-fast);
}
.artwork:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.artwork__media { position: relative; overflow: hidden; background: var(--bg-alt); }
.artwork__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.artwork:hover .artwork__media img { transform: scale(1.04); }
.artwork__body { padding: 16px 18px 20px; }
.artwork__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); margin: 0 0 4px; }
.artwork__meta { font-size: .82rem; letter-spacing: .04em; color: var(--muted); margin: 0; }
.artwork__price { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin-top: 10px; }

/* =====================================================================
   Galerie MASONRY (page d'accueil & galerie) — hauteurs naturelles,
   AUCUN fond blanc qui dépasse sous les images.
   ===================================================================== */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}
.masonry__col {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
}
.masonry__item {
  display: block;
  position: relative;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
}
.masonry__item img { width: 100%; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.masonry__item:hover img { transform: scale(1.045); }
.masonry__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px; color: #fff;
  font-family: var(--font-text); font-size: .78rem; letter-spacing: .06em;
  background: linear-gradient(transparent, rgba(18,16,14,.72));
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--t), transform var(--t);
}
.masonry__item:hover .masonry__cap,
.masonry__item:focus-within .masonry__cap { opacity: 1; transform: none; }
@media (max-width: 880px) {
  .masonry { display: block; column-count: 2; column-gap: clamp(14px, 2vw, 24px); }
  .masonry__col { display: contents; }
  .masonry__item { margin: 0 0 clamp(14px, 2vw, 24px); }
}
@media (max-width: 520px) { .masonry { column-count: 1; } }

/* =====================================================================
   Galerie en GRILLE (page Galerie) — 4 colonnes de MÊME largeur, hauteur
   variable selon le format, items centrés verticalement dans la rangée.
   ===================================================================== */
.ga-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 tableaux par ligne, largeur identique */
  align-items: center;                    /* hauteurs variables centrées dans la rangée */
  gap: clamp(12px, 1.6vw, 22px);
}
@media (max-width: 900px) { .ga-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .ga-grid { grid-template-columns: repeat(2, 1fr); } }
.ga-item {
  width: 100%;                          /* remplit la colonne -> même largeur partout */
  padding: 0; margin: 0; border: 0; background: var(--bg-alt);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative; display: block;
  transition: transform var(--t), box-shadow var(--t);
}
.ga-item img {
  width: 100%; height: auto; display: block;  /* hauteur déduite du format -> certains plus hauts */
}
.ga-item:hover {                        /* le tableau entier grossit au survol */
  transform: scale(1.06); box-shadow: var(--shadow-md); z-index: 3;
}
.ga-item::after {                       /* nom du tableau, affiché en permanence */
  content: attr(data-title);
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px; pointer-events: none;
  font-family: var(--font-text); font-size: .82rem; font-weight: 600;
  letter-spacing: .03em; color: #fff; text-align: center;
  background: linear-gradient(to top, rgba(18,16,14,.74), rgba(18,16,14,0));
}
.ga-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* =====================================================================
   LIGHTBOX façon « Instagram » (photo + infos + flèches préc./suiv.)
   Construite une seule fois par main.js, réutilisable (Galerie + Collection)
   ===================================================================== */
.lb { position: fixed; inset: 0; z-index: 1000; display: none; }
.lb.open { display: grid; place-items: center; }
.lb::before {                           /* fond sombre */
  content: ""; position: absolute; inset: 0;
  background: rgba(16,14,12,.92);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.lb__dialog {
  position: relative; z-index: 1;
  display: flex; align-items: stretch;
  width: min(1080px, 92vw); max-height: 88vh;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.lb__media {
  flex: 1 1 62%;
  display: grid; place-items: center;
  background: var(--white); padding: clamp(12px, 2vw, 26px);
  border-right: 1px solid var(--line);
  min-width: 0; overflow: hidden;          /* le zoom reste dans le cadre */
}
.lb__media.zoom-on { cursor: zoom-in; }   /* mode zoom activé via le bouton loupe */
.lb__img {
  max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 2px;
  transition: transform .25s ease;
}
.lb__media.is-zoom .lb__img { transform: scale(2.2); }  /* zoom au survol, origine suit le curseur */
.lb__info {
  flex: 1 1 38%; max-width: 360px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; padding: clamp(24px, 3vw, 40px);
  position: relative;                       /* repère pour le bouton loupe */
}
.lb__count { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.lb__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 6px 0 2px; }
.lb__dims  { font-size: 1.05rem; color: var(--ink-2); margin: 0; }
.lb__orient{ font-size: .92rem; color: var(--muted); margin: 0 0 6px; }
.lb__price { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); margin: 4px 0 20px; }
.lb__cta { align-self: flex-start; }

/* Boutons fermer + navigation + zoom */
.lb__close, .lb__nav, .lb__zoom {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
  border: 0; cursor: pointer; color: #fff;
  background: rgba(20,17,15,.5);
  border-radius: 50%; transition: background var(--t-fast), transform var(--t-fast);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.lb__close:hover, .lb__nav:hover, .lb__zoom:hover { background: rgba(20,17,15,.72); }
.lb__close { top: max(16px, 2.5vh); right: max(16px, 2.5vw); width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lb__zoom {                               /* coin intérieur haut-gauche de la colonne blanche */
  top: 16px; left: 16px; bottom: auto; right: auto;
  width: 42px; height: 42px; z-index: 3;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.lb__zoom svg { width: 21px; height: 21px; }
.lb__zoom.is-active { background: var(--gold); color: #17130f; }
.lb__zoom.is-active:hover { background: var(--gold); }
.lb__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lb__nav:hover { transform: translateY(-50%) scale(1.06); }
.lb__nav svg { width: 26px; height: 26px; }
.lb__prev { left: max(14px, 2.5vw); }
.lb__next { right: max(14px, 2.5vw); }

@media (max-width: 760px) {
  .lb__dialog { flex-direction: column; width: 94vw; max-height: 90vh; }
  .lb__media { flex: 0 0 auto; max-height: 56vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .lb__img { max-height: 54vh; }
  .lb__info { max-width: none; padding: 22px 24px 26px; justify-content: flex-start; text-align: left; }
  .lb__nav { width: 44px; height: 44px; top: auto; bottom: calc(38vh); }
}

@media (prefers-reduced-motion: reduce) {
  .ga-item, .ga-item img, .lb__nav { transition: none; }
}

/* =====================================================================
   Page CONTACT — formulaire + coordonnées
   ===================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-text); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2);
}
.field input, .field textarea {
  font-family: var(--font-text); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; width: 100%; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(163,133,96,.18);
}
.field input::placeholder, .field textarea::placeholder { color: #b3aea4; }

.form__consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--muted); line-height: 1.5;
}
.form__consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--gold-dark); }

/* Pot de miel anti-spam (invisible) */
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status { font-size: .94rem; padding: 12px 16px; border-radius: var(--radius-sm); }
.form__status--ok    { background: #eef5ec; color: #2f6b35; border: 1px solid #cfe3c9; }
.form__status--error { background: #fbeeee; color: #a23434; border: 1px solid #f0cccc; }

/* Carte « Coordonnées » */
.contact__card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.contact__list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; gap: 13px; align-items: flex-start; }
.contact__ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-dark);
}
.contact__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.contact__val { color: var(--ink); font-size: 1.04rem; }
.contact__val:hover { color: var(--gold-dark); }

/* =====================================================================
   Bloc « À propos / L'artiste en bref » (image + texte)
   ===================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.about__media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1;
}
.about__copy .eyebrow { margin-top: 0; }
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { max-width: 440px; margin-inline: auto; }
}

/* =====================================================================
   Parcours / Expositions — frise (page L'artiste)
   ===================================================================== */
.timeline { max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 0; }
.timeline__date {
  font-family: var(--font-text); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark);
  white-space: nowrap;
}
.timeline__place strong {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.3rem; color: var(--ink); line-height: 1.2;
}
.timeline__city { color: var(--muted); font-size: .92rem; }
@media (max-width: 560px) {
  .timeline li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}

/* =====================================================================
   « On parle de nous » — presse & salons (page L'artiste)
   ===================================================================== */
.press {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 720px) { .press { grid-template-columns: 1fr; } }
.press__item { margin: 0; }
.press__item > a {
  display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.press__item img { width: 100%; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.press__item > a:hover img { transform: scale(1.03); }
.press__cap { font-size: .9rem; color: var(--muted); margin-top: 12px; text-align: center; }
.press__cap a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.press__item > a { cursor: zoom-in; }

/* Pop-up simple : visuel presse affiché en grand, fermable */
.plb { position: fixed; inset: 0; z-index: 1000; display: none; }
.plb.open { display: grid; place-items: center; }
.plb::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(16,14,12,.92);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.plb__img {
  position: relative; z-index: 1;
  max-width: 94vw; max-height: 90vh; width: auto; height: auto;
  border-radius: 4px; box-shadow: var(--shadow-lg);
}
.plb__close {
  position: absolute; z-index: 2;
  top: max(16px, 2.5vh); right: max(16px, 2.5vw);
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 0; cursor: pointer; color: #fff; font-size: 1.6rem; line-height: 1;
  background: rgba(20,17,15,.5); border-radius: 50%;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: background var(--t-fast);
}
.plb__close:hover { background: rgba(20,17,15,.72); }

/* =====================================================================
   Bandeaux CTA
   ===================================================================== */
.section--accent { background: var(--gold-soft); }
.cta-band { text-align: center; }
.cta-band .lead { margin-inline: auto; max-width: 580px; }
.cta-band .hero__cta { justify-content: center; }

/* =====================================================================
   Pied de page  (injecté par partials.js)
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: clamp(56px,7vw,88px) 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1.2fr; gap: 56px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.62); max-width: 36ch; margin-top: 14px; font-size: .96rem; }
.site-footer h4 { color: #fff; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact a { color: rgba(255,255,255,.78); display: inline-flex; align-items: center; gap: 10px; font-size: .94rem; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { color: var(--gold); flex: none; }
.footer__loc { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 4px; display: flex; align-items: center; gap: 10px; }
.footer__bottom {
  margin-top: clamp(40px,5vw,60px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* =====================================================================
   Animations « reveal » au scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .artwork, .artwork__media img { transition: none; }
}

/* =====================================================================
   Accessibilité
   ===================================================================== */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: var(--radius-sm);
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; color: #fff; }
:focus-visible { outline: 3px solid rgba(163,133,96,.55); outline-offset: 2px; }
