/* ============================================================================
   Maison Pastel · V3 — Feuille de style unique
   Palette V2 renforcée + rondeur organique. Aucun noir pur.
   Ordre : tokens · base · a11y · décor · typo · boutons · pills · header ·
           layout · hero · cartes · grille · univers · réseaux · footer ·
           fil d'ariane · page catégorie · fiche création · contact · 404 ·
           apparition au scroll · responsive · reduced-motion
   ========================================================================== */

/* ---------- 1. Tokens ----------------------------------------------------- */
:root {
  /* bases claires */
  --mp2-ivoire:    #faf3e8;
  --mp2-creme:     #f3e3cd;
  --mp2-beigerose: #ecd0c2;
  /* féminins principaux */
  --mp2-framboise: #c75a6e;
  --mp2-boisrose:  #c08885;
  --mp2-vieuxrose: #ad6770;
  --mp2-mauve:     #8e6a8a;
  --mp2-prune:     #5b3148;
  /* accents premium */
  --mp2-champagne: #c9a567;
  --mp2-cuivre:    #b87355;
  --mp2-terracotta:#c97a5f;
  /* contraste foncé — jamais de noir pur */
  --mp2-cacao:     #3d2820;
  --mp2-bordeaux:  #6b2c3a;
  --mp2-prunefonce:#321a2a;
  --mp2-line:      rgba(61, 40, 32, 0.18);

  /* formes & ombres */
  --radius-card: 22px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px rgba(91, 49, 72, 0.08), 0 2px 4px rgba(91, 49, 72, 0.04);
  --shadow-card-hover: 0 22px 50px rgba(50, 26, 42, 0.16);
  --shadow-cta: 0 12px 30px rgba(91, 49, 72, 0.28);

  /* typographies */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* mouvement */
  --ease: cubic-bezier(.2, .7, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: .18s;
  --t-std: .3s;
  --t-slow: .6s;

  /* gabarit */
  --container: 1240px;
  --pad-x: clamp(22px, 5vw, 64px);

  /* couleur de catégorie par défaut (surchargée par [data-cat]) */
  --cat-color: var(--mp2-framboise);
}

/* mappage catégorie → couleur d'accent (cartes, pastilles, pills) */
[data-cat="boutique"]   { --cat-color: var(--mp2-framboise); }
[data-cat="produits"]   { --cat-color: var(--mp2-terracotta); }
[data-cat="creations"]  { --cat-color: var(--mp2-mauve); }
[data-cat="services"]   { --cat-color: var(--mp2-cuivre); }
[data-cat="blog"]       { --cat-color: var(--mp2-vieuxrose); }
[data-cat="associatif"] { --cat-color: var(--mp2-prune); }

/* ---------- 2. Reset & base ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--mp2-cacao);
  background: linear-gradient(180deg, #faf3e8 0%, #f3e3cd 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- 3. Accessibilité --------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--mp2-prune); color: var(--mp2-ivoire);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 12px; }

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

:focus-visible {
  outline: 2px solid var(--mp2-champagne);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 4. Décor (blobs pétales) ------------------------------------- */
.bg { position: relative; overflow: hidden; }
.bg--ivoire { background: linear-gradient(180deg, #faf3e8 0%, #f3e3cd 100%); }
.bg--creme  { background: linear-gradient(180deg, #f3e3cd 0%, #ecd0c2 100%); }
.bg--prune  { background: linear-gradient(180deg, var(--mp2-prune) 0%, var(--mp2-prunefonce) 100%); }

.blob {
  position: absolute;
  filter: blur(2px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.bg > .container,
.bg > .section-inner { position: relative; z-index: 1; }

/* ---------- 5. Placeholder rayé (visuels à fournir) ---------------------- */
.ph-stripe {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(61, 40, 32, 0.06) 0 1px,
      transparent 1px 9px),
    linear-gradient(180deg, var(--ph-from, #efe4d6), var(--ph-to, #e6d4c2));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph-stripe[data-label]::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 40, 32, 0.55);
  background: rgba(250, 243, 232, 0.78);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(2px);
}
/* visuel réel (quand une photo est fournie) */
.media-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: var(--media-fit, cover);
  object-position: var(--media-position, center);
}

/* ---------- 6. Typographie utilitaire ------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--mp2-ivoire); border: 1px solid var(--mp2-line);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.24em;
  color: var(--mp2-cuivre); text-transform: uppercase;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mp2-framboise); }
.eyebrow--solid { background: var(--mp2-prune); color: var(--mp2-ivoire); border-color: transparent; }
.eyebrow--cat { background: var(--cat-color); color: var(--mp2-ivoire); border-color: transparent; }
.eyebrow--cat .dot, .eyebrow--solid .dot { background: var(--mp2-champagne); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--mp2-prunefonce);
}
em.accent, .accent {
  font-style: italic;
  color: var(--mp2-framboise);
  font-weight: 400;
}
.lead {
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.75;
  color: var(--mp2-cacao);
}
.meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp2-cuivre);
}
.rule {
  width: 60px; height: 3px; flex: 0 0 auto;
  background: linear-gradient(90deg, var(--mp2-champagne), var(--mp2-cuivre));
  border-radius: 2px;
}

/* ---------- 7. Boutons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px; border-radius: var(--radius-pill);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.3px; line-height: 1;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), box-shadow var(--t-fast);
  min-height: 44px;
}
.btn .arrow { color: var(--mp2-champagne); transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }
.btn:active { transform: scale(.985); }

.btn--primary {
  background: var(--mp2-prune); color: var(--mp2-ivoire);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--mp2-prunefonce); box-shadow: 0 14px 34px rgba(91,49,72,.34); }

.btn--outline {
  background: rgba(250, 243, 232, 0.6); color: var(--mp2-prune);
  border: 1.5px solid var(--mp2-cuivre);
  backdrop-filter: blur(4px);
}
.btn--outline:hover { background: var(--mp2-cuivre); color: var(--mp2-ivoire); }
.btn--outline .arrow { color: var(--mp2-framboise); }

.btn--ghost {
  background: var(--mp2-ivoire); color: var(--mp2-prune);
  border: 1.5px solid var(--mp2-prune);
  box-shadow: 0 6px 18px rgba(91, 49, 72, 0.10);
}
.btn--ghost:hover { background: var(--mp2-prune); color: var(--mp2-ivoire); }
.btn--ghost .arrow { color: var(--mp2-framboise); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--mp2-ivoire); color: var(--mp2-prune);
  border: 1.5px solid var(--mp2-prune); font-size: 18px;
  transition: background var(--t-fast), color var(--t-fast);
}
.icon-btn:hover { background: var(--mp2-prune); color: var(--mp2-ivoire); }

/* ---------- 8. Filtres (pills) ------------------------------------------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: var(--mp2-ivoire); border: 1px solid var(--mp2-line);
  color: var(--mp2-prunefonce);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  transition: background var(--t-fast) var(--ease), color var(--t-fast), box-shadow var(--t-fast);
  min-height: 40px;
}
.filter .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cat-color); }
.filter:hover { background: var(--mp2-beigerose); }
.filter.is-active {
  background: var(--cat-color); color: var(--mp2-ivoire);
  border-color: var(--cat-color);
  box-shadow: 0 6px 18px rgba(91, 49, 72, 0.18);
}
.filter.is-active .dot { background: var(--mp2-champagne); }

/* ---------- 9. Header ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 22px var(--pad-x);
  transition: padding var(--t-fast) var(--ease), background var(--t-fast), box-shadow var(--t-fast);
}
.site-header.is-stuck {
  padding: 12px var(--pad-x);
  background: rgba(250, 243, 232, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--mp2-line), 0 8px 24px rgba(50, 26, 42, 0.06);
}
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand__name {
  font-family: var(--serif); font-style: italic; font-size: 30px;
  letter-spacing: -0.2px; color: var(--mp2-prunefonce);
  transition: font-size var(--t-fast) var(--ease);
}
.is-stuck .brand__name { font-size: 24px; }
.brand__est { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--mp2-cuivre); }
.is-stuck .brand__est { display: none; }

.nav-island {
  display: flex; gap: 6px;
  padding: 8px 12px; border-radius: var(--radius-pill);
  background: rgba(250, 243, 232, 0.7);
  border: 1px solid var(--mp2-line);
  backdrop-filter: blur(8px);
}
.is-stuck .nav-island { background: transparent; border-color: transparent; }
.nav-island a {
  padding: 8px 16px; border-radius: var(--radius-pill);
  color: var(--mp2-prunefonce);
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.2px;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-island a:hover { background: rgba(91, 49, 72, 0.08); }
.nav-island a.is-active { background: var(--mp2-prune); color: var(--mp2-ivoire); }

.btn-follow {
  padding: 10px 20px; border-radius: var(--radius-pill);
  background: var(--mp2-framboise); color: var(--mp2-ivoire);
  box-shadow: 0 6px 18px rgba(199, 90, 110, 0.28);
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  white-space: nowrap; min-height: 40px;
  display: inline-flex; align-items: center;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.btn-follow:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(199, 90, 110, 0.36); }

/* hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mp2-prune);
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 16px; height: 1.6px; background: var(--mp2-ivoire);
  border-radius: 2px;
}
.hamburger span + span { margin-top: 4px; }

/* menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: linear-gradient(180deg, var(--mp2-prune), var(--mp2-prunefonce));
  color: var(--mp2-ivoire);
  padding: 20px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform var(--t-std) var(--ease);
  overflow: hidden;
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top .brand__name { color: var(--mp2-ivoire); }
.mobile-menu__close {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mp2-champagne); color: var(--mp2-prunefonce);
  font-size: 20px; display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu nav { margin-top: 30px; position: relative; z-index: 2; }
.mobile-menu nav a {
  display: block; padding: 12px 0;
  font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 9vw, 40px);
  color: var(--mp2-ivoire);
  border-bottom: 1px solid rgba(250, 243, 232, 0.16);
  opacity: 0; transform: translateY(8px);
}
.mobile-menu.is-open nav a { animation: menuItemIn var(--t-std) var(--ease) forwards; }
.mobile-menu nav a.is-active { color: var(--mp2-champagne); font-style: italic; }
.mobile-menu nav a:nth-child(1) { animation-delay: .06s; }
.mobile-menu nav a:nth-child(2) { animation-delay: .12s; }
.mobile-menu nav a:nth-child(3) { animation-delay: .18s; }
.mobile-menu nav a:nth-child(4) { animation-delay: .24s; }
.mobile-menu nav a:nth-child(5) { animation-delay: .30s; }
@keyframes menuItemIn { to { opacity: 1; transform: none; } }
.mobile-menu .btn-follow { margin-top: 26px; }
body.menu-open { overflow: hidden; }

/* ---------- 10. Layout --------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(56px, 9vw, 90px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 60px) 0; }
main { display: block; }

/* en-tête de section (titre + chapeau côte à côte) */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(42px, 6.5vw, 88px); }
.section-head .lead { max-width: 360px; }

/* ---------- 11. Hero ----------------------------------------------------- */
.hero { position: relative; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 60px); align-items: center;
  padding-top: clamp(20px, 4vw, 40px);
}
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 9vw, 128px); line-height: 0.9;
  letter-spacing: -0.025em; color: var(--mp2-prunefonce);
}
.hero__intro { display: flex; align-items: flex-start; gap: 28px; margin-top: 36px; max-width: 620px; }
.hero__intro .rule { margin-top: 13px; }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; align-items: center; flex-wrap: wrap; }

.hero__art { position: relative; aspect-ratio: 540 / 620; }
.hero__art-blob {
  position: absolute; inset: 20px -10px;
  background: var(--mp2-framboise); opacity: 0.16;
  border-radius: 58% 42% 50% 50% / 48% 52% 48% 52%;
}
.hero__portrait {
  position: absolute; inset: 0;
  border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%;
}
img.hero__portrait { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.badge-stamp {
  position: absolute; top: 30px; right: -18px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--mp2-framboise); color: var(--mp2-ivoire);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(199, 90, 110, 0.42);
  transform: rotate(8deg);
}
.badge-stamp b { font-family: var(--serif); font-style: italic; font-size: 26px; font-weight: 400; line-height: 1; }
.badge-stamp span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; margin-top: 5px; color: rgba(250, 243, 232, 0.85); }
.badge-star {
  position: absolute; bottom: 40px; left: -16px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--mp2-champagne); opacity: 0.92;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--mp2-prunefonce);
  box-shadow: 0 8px 22px rgba(201, 165, 103, 0.35);
}
.hero__fig { position: absolute; bottom: -30px; right: 0; }

/* ---------- 12. Carte création ------------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--mp2-ivoire);
  padding: 14px; border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--t-std) var(--ease), box-shadow var(--t-std);
  height: 100%;
}
a.card:hover, .card.is-hoverable:hover {
  transform: rotate(var(--tilt, 0deg)) translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.card__media {
  position: relative; border-radius: 16px; margin-bottom: 16px;
  aspect-ratio: 4 / 5; flex: 1 1 auto; min-height: 0;
  transition: transform var(--t-std) var(--ease);
}
a.card:hover .card__media { transform: scale(1.02); }
.card--large .card__media { aspect-ratio: 16 / 11; }
.card__badge {
  position: absolute; bottom: 12px; left: 12px;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: rgba(250, 243, 232, 0.85); backdrop-filter: blur(4px);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--cat-color);
}
.card__arrow {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mp2-ivoire); color: var(--cat-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500;
  box-shadow: 0 4px 10px rgba(91, 49, 72, 0.12);
  transition: transform var(--t-fast) var(--ease);
}
a.card:hover .card__arrow { transform: translate(2px, -2px); }
.card__body { padding: 0 6px 6px; }
.card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.05; letter-spacing: -0.3px;
  color: var(--mp2-prunefonce);
}
.card--large .card__title { font-size: clamp(28px, 3vw, 34px); }
.card__desc { font-family: var(--sans); font-size: 13px; color: var(--mp2-cacao); line-height: 1.55; margin-top: 10px; }
.card__cta {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--mp2-prune); color: var(--mp2-ivoire);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  transition: background var(--t-fast);
}
a.card:hover .card__cta { background: var(--mp2-prunefonce); }
.card__cta .arrow { color: var(--mp2-champagne); }

/* carte estompée (hors filtre) */
.card.is-dimmed { opacity: 0.25; transform: rotate(var(--tilt, 0deg)) scale(0.97); }
.is-dimmed { pointer-events: none; }

/* ---------- 13. Grille bento --------------------------------------------- */
.grid { display: grid; gap: 36px; }
.grid--bento { grid-template-columns: 1.5fr 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--bento .card--large { grid-row: span 2; }
.grid__center { display: flex; justify-content: center; margin-top: 30px; }

/* ---------- 14. Section Univers ------------------------------------------ */
.univers__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.univers__art { position: relative; aspect-ratio: 460 / 600; }
.univers__art-blob { position: absolute; inset: 0; background: var(--mp2-mauve); opacity: 0.18; border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%; }
.univers__portrait { position: absolute; inset: 20px; border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%; }
img.univers__portrait { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.univers__sign {
  position: absolute; bottom: -10px; right: -10px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  background: var(--mp2-champagne); color: var(--mp2-prunefonce);
  font-family: var(--serif); font-style: italic; font-size: 22px;
  box-shadow: 0 14px 30px rgba(201, 165, 103, 0.32);
}
.univers h2 { font-size: clamp(40px, 5.5vw, 76px); }
.univers__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 38px; }
.stats { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.stat {
  flex: 1; min-width: 130px; position: relative;
  padding: 20px 26px; border-radius: var(--radius-card);
  background: var(--mp2-ivoire); border: 1px solid var(--mp2-line);
}
.stat .dot { position: absolute; top: 14px; right: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--stat-color, var(--mp2-framboise)); }
.stat b { display: block; font-family: var(--serif); font-style: italic; font-size: 56px; line-height: 1; color: var(--stat-color, var(--mp2-framboise)); }
.stat span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--mp2-cacao); text-transform: uppercase; margin-top: 8px; }

/* ---------- 15. Réseaux -------------------------------------------------- */
.reseaux h2 { text-align: center; font-size: clamp(36px, 5vw, 60px); }
.reseaux .meta { text-align: center; display: block; margin-bottom: 14px; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.social-card {
  position: relative; padding: 22px 22px 20px;
  background: var(--mp2-ivoire); border-radius: var(--radius-card);
  box-shadow: 0 10px 26px rgba(91, 49, 72, 0.08);
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--t-std) var(--ease), box-shadow var(--t-std);
}
.social-card:hover { transform: rotate(var(--tilt, 0deg)) translateY(-4px); box-shadow: var(--shadow-card-hover); }
.social-card__arrow {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent, var(--mp2-framboise)); color: var(--mp2-ivoire);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.social-card b { font-family: var(--serif); font-style: italic; font-size: 28px; font-weight: 400; color: var(--mp2-prunefonce); }
.social-card .handle { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--accent, var(--mp2-framboise)); margin-top: 4px; }
.social-card p { font-family: var(--sans); font-size: 13px; color: var(--mp2-cacao); line-height: 1.6; margin-top: 14px; }

/* ---------- 16. Footer --------------------------------------------------- */
.site-footer { color: var(--mp2-ivoire); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-top: 50px; }
.footer__brand .brand__name { color: var(--mp2-ivoire); font-size: 34px; }
.footer__brand .brand__est, .footer h4 { color: var(--mp2-champagne); }
.footer__brand p { font-family: var(--sans); font-size: 13px; line-height: 1.7; color: rgba(250, 243, 232, 0.88); max-width: 360px; margin-top: 16px; }
.footer h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; margin-bottom: 14px; text-transform: uppercase; font-weight: 400; }
.footer__col a, .footer__col span { display: block; font-family: var(--sans); font-size: 13px; line-height: 2; color: rgba(250, 243, 232, 0.9); }
.footer__col a:hover { color: var(--mp2-champagne); }
.footer__sep { height: 1px; background: rgba(250, 243, 232, 0.16); margin: 28px 0 14px; }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-bottom: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--mp2-champagne); }
.footer__base a:hover { color: var(--mp2-ivoire); }

/* ---------- 17. Fil d'ariane --------------------------------------------- */
.breadcrumb {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 12px var(--pad-x);
  border-bottom: 1px solid var(--mp2-line);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mp2-cuivre);
}
.breadcrumb .sep { color: var(--mp2-line); }
.breadcrumb .current { color: var(--mp2-prunefonce); }
.breadcrumb a:hover { color: var(--mp2-prunefonce); }

/* ---------- 18. Page catégorie ------------------------------------------- */
.cat-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; }
.cat-head h1 { font-size: clamp(54px, 8vw, 96px); }
.cat-head .lead { margin-bottom: 14px; }
.subfilters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 24px 0; }
.subfilters .count { margin-left: auto; }
.load-more-wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* ---------- 19. Fiche création ------------------------------------------- */
.detail-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 60px); align-items: center; }
.detail-art { position: relative; aspect-ratio: 1 / 1; }
.detail-art__blob { position: absolute; inset: 20px -10px; background: var(--mp2-framboise); opacity: 0.32; border-radius: 58% 42% 50% 50% / 48% 52% 48% 52%; }
.detail-art__main { position: absolute; inset: 0; border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%; }
.detail-gallery { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.detail-gallery .thumb { width: 72px; height: 72px; border-radius: 14px; border: none; padding: 0; cursor: pointer; }
.detail-gallery .thumb.is-active { outline: 2px solid var(--cat-color); outline-offset: 2px; }
.detail-hero h1 { font-size: clamp(52px, 7vw, 84px); }
.detail-actions { display: flex; gap: 14px; margin-top: 30px; align-items: center; flex-wrap: wrap; }
.info-grid {
  margin-top: 32px; padding: 22px;
  background: var(--mp2-ivoire); border-radius: 18px; border: 1px solid var(--mp2-line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.info-grid .k { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; color: var(--mp2-cuivre); text-transform: uppercase; }
.info-grid .v { font-family: var(--sans); font-size: 13.5px; color: var(--mp2-prunefonce); margin-top: 4px; font-weight: 500; }

.detail-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 60px); }
.detail-text h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 4vw, 40px); letter-spacing: -0.6px; line-height: 1; color: var(--mp2-prunefonce); margin-bottom: 14px; }
.detail-text p { font-family: var(--sans); font-size: 14.5px; line-height: 1.75; color: var(--mp2-cacao); }
.detail-text ul { font-family: var(--sans); font-size: 14.5px; line-height: 1.85; color: var(--mp2-cacao); padding-left: 16px; list-style: disc; }

/* ---------- 20. Contact -------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-intro h1 { font-size: clamp(56px, 8vw, 110px); }
.contact-cards { margin-top: 36px; display: grid; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; background: var(--mp2-ivoire);
  border-radius: 14px; border: 1px solid var(--mp2-line);
}
.contact-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent, var(--mp2-framboise)); flex: 0 0 auto; }
.contact-card .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--mp2-cuivre); text-transform: uppercase; }
.contact-card .v { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--mp2-prunefonce); margin-top: 2px; }

.form-panel {
  position: relative; overflow: hidden;
  background: var(--mp2-ivoire); border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: 0 22px 60px rgba(50, 26, 42, 0.10);
  border: 1px solid var(--mp2-line);
}
.form-panel h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.4vw, 36px); letter-spacing: -0.4px; line-height: 1; color: var(--mp2-prunefonce); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: block; }
.field > span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--mp2-cuivre); margin-bottom: 8px; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; background: var(--mp2-ivoire);
  border-radius: 14px; border: 1px solid var(--mp2-line);
  padding: 14px 18px;
  font-family: var(--serif); font-size: 17px; color: var(--mp2-prunefonce);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(50, 26, 42, 0.4); font-style: italic; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mp2-cuivre); box-shadow: 0 0 0 3px rgba(201, 165, 103, 0.25); }
.field.has-error input, .field.has-error textarea { border-color: var(--mp2-framboise); box-shadow: 0 0 0 3px rgba(199, 90, 110, 0.18); }
.field .err { display: none; font-family: var(--sans); font-size: 11.5px; color: var(--mp2-framboise); margin-top: 6px; }
.field.has-error .err { display: block; }

.consent { display: flex; align-items: flex-start; gap: 10px; font-family: var(--sans); font-size: 11.5px; color: var(--mp2-cacao); line-height: 1.5; margin-top: 2px; }
.consent input { margin-top: 2px; accent-color: var(--mp2-prune); width: 16px; height: 16px; flex: 0 0 auto; }
.consent.has-error { color: var(--mp2-framboise); }
.consent.has-error input { outline: 2px solid var(--mp2-framboise); outline-offset: 2px; }
.form-actions { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-family: var(--sans); font-size: 13px; margin-top: 6px; }
.form-status.is-ok { color: var(--mp2-prune); }
.form-status.is-err { color: var(--mp2-framboise); }
.quote { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--mp2-prunefonce); }
.quote cite { font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--mp2-cuivre); }

/* ---------- 21. Page 404 ------------------------------------------------- */
.err-page { min-height: 100vh; display: flex; flex-direction: column; }
.err-grid { flex: 1; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 60px; }
.err-grid h1 { font-size: clamp(58px, 13vw, 160px); line-height: 0.88; letter-spacing: -0.03em; }
.petal { position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: center; }
.petal__outer { position: absolute; inset: 8%; background: var(--mp2-framboise); opacity: 0.88; border-radius: 58% 42% 50% 50% / 48% 52% 48% 52%; box-shadow: 0 30px 80px rgba(199, 90, 110, 0.32); }
.petal__inner { position: absolute; inset: 17%; background: var(--mp2-prune); border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%; display: flex; align-items: center; justify-content: center; color: var(--mp2-champagne); }
.petal__inner b { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(78px, 18vw, 180px); letter-spacing: -0.04em; line-height: 1; }
.petal__bubble { position: absolute; border-radius: 50%; }
.petal__bubble--1 { top: 6%; right: 8%; width: 60px; height: 60px; background: var(--mp2-champagne); box-shadow: 0 10px 22px rgba(201, 165, 103, 0.36); }
.petal__bubble--2 { bottom: 12%; left: 4%; width: 40px; height: 40px; background: var(--mp2-mauve); box-shadow: 0 8px 18px rgba(142, 106, 138, 0.32); }

/* ---------- 22. Apparition au scroll ------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 23. Responsive ----------------------------------------------- */
@media (max-width: 1023px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin: 8px auto 0; width: 100%; }
  .grid--bento { grid-template-columns: 1fr 1fr; }
  .grid--bento .card--large { grid-column: span 2; grid-row: auto; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .univers__grid { grid-template-columns: 1fr; }
  .univers__art { max-width: 420px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cat-head { grid-template-columns: 1fr; gap: 24px; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-art { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .err-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; padding: 20px 0; }
  .err-grid .err-cta { justify-content: center; }
  .petal { max-width: 340px; }
}

@media (max-width: 920px) {
  .nav-island, .header-actions .btn-follow { display: none; }
  .hamburger { display: inline-flex; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .grid, .grid--bento, .grid--3 { grid-template-columns: 1fr; gap: 22px; }
  .grid--bento .card--large { grid-column: auto; }
  .card { transform: none !important; }
  .card__media { aspect-ratio: 4 / 3; }
  .card--large .card__media { aspect-ratio: 16 / 11; }
  .social-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .univers__cols { grid-template-columns: 1fr; gap: 18px; }
  .detail-text { grid-template-columns: 1fr; gap: 28px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 28px; }
  .subfilters { flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .subfilters::-webkit-scrollbar { display: none; }
  .subfilters .filter { white-space: nowrap; }
  .subfilters .count { display: none; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .breadcrumb::-webkit-scrollbar { display: none; }
  .detail-gallery .thumb { width: 60px; height: 60px; }
}

/* ---------- 24. Reduced motion ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .mobile-menu nav a { opacity: 1; transform: none; }
}
