/* ================================================================
   ZUT! — Feuille de style principale
   Mobile-first · Responsive · Fidèle au site original
   ================================================================ */

/* ── 1. IMPORTS GOOGLE FONTS ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Inter:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── 2. VARIABLES ────────────────────────────────────────────── */
:root {
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Raleway', sans-serif;
  --font-header: 'Inter', sans-serif;
  --color-text:       #1e1e1e;
  --color-muted:      #444;
  --color-light:      #f7f2ee;
  --color-white:      #ffffff;
  --color-accent:     #b87070;
  --color-border:     rgba(0,0,0,0.10);
  --oval-1: rgba(185,196,100,0.62);
  --oval-2: rgba(205,128,148,0.62);
  --oval-3: rgba(120,170,205,0.58);
  --oval-4: rgba(200,148,88,0.58);
  --radius: 2px;
  --shadow-sm: none;
  --shadow-md: none;
  --transition: 0.22s ease;
  --max-width: 1060px;
  --header-h: 68px;
  --dot-color: #000;
}

/* ── 3. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-white);
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; border: none; outline: none; }
a { color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── 4. TYPOGRAPHIE ──────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
h1,h2,h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.25; }
h2 { font-size: clamp(1.58rem, 3.16vw, 2.11rem); }
body h2 { font-size: clamp(1.58rem, 3.16vw, 2.11rem); font-weight: 400; }
.page-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: center;
  padding: 60px 20px 10px;
}

/* ── 5. HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.5);
  transition: background 0.3s ease;
  backdrop-filter: none;
  border-bottom: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
}
.header-logo { justify-self: start; }
.header-social { display: flex; align-items: center; gap: 10px; justify-self: end; }
.header-logo img { height: 48px; width: auto; }
@media (max-width: 599px) {
  :root { --header-h: 40px; }
  .site-header { height: 40px; padding: 0 16px; grid-template-columns: auto 1fr; background: rgba(255,255,255,0.3); }
  .header-logo img { height: 26px; }
  .hamburger { justify-self: end; }
  .nav-drawer { top: 40px; }
}

.main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  justify-self: center;
}
@media (min-width: 1024px) {
  .main-nav  { display: flex; }
  .hamburger { display: none; }
}
.main-nav a {
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  color: var(--color-text);
}
/* Séparateurs | entre les liens (hors E-SHOP) */
.main-nav a:not(.nav-eshop) + a:not(.nav-eshop)::before {
  content: '|';
  margin-right: 10px;
  opacity: 0.35;
  font-weight: 300;
  letter-spacing: 0;
}
.main-nav a:hover, .main-nav a.active { background: transparent; color: #000; font-weight: 900; }
.main-nav .nav-eshop {
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  padding: 6px 14px;
  margin-right: 8px;
}
.main-nav .nav-eshop:hover { background: var(--color-accent); color: var(--color-white); }

.hamburger {
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
@media (hover: hover) { .hamburger:hover { background: var(--color-light); } }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1e1e1e !important;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
  flex-shrink: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: none;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  text-decoration: none;
  font-family: var(--font-header);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
  color: var(--color-text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-drawer a:hover { background: var(--color-light); }
.nav-drawer .nav-eshop {
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  text-align: center;
  margin-bottom: 4px;
}
.nav-drawer .nav-eshop:hover { background: var(--color-accent); color: var(--color-white); }


/* ── VIDÉO HERO PLEINE LARGEUR ───────────────────────────────── */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56.25vw;
  z-index: 0;
  overflow: hidden;
  background-color: #fff;
  background-image:
    linear-gradient(color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
}
@media (max-width: 599px) {
  .hero-video { top: 40px; }

  .hero-home { padding-top: 36px; padding-bottom: 36px; }
  .hero-home .hero-logo { max-height: 80px; }
}
.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Toutes les pages : sections transparentes, pattern continu depuis body::before */
.hero-home,
.gif-grid,
.section,
.site-footer {
  position: relative;
  z-index: 2;
  background-color: transparent;
}

/* index.html : un seul bloc blanc + pattern qui couvre la vidéo, sans raccords */
body.page-index .page-content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  background-image:
    linear-gradient(color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  margin-top: 56.25vw;
}
@media (max-width: 599px) {
  body.page-index .page-content {
    margin-top: calc(40px + 56.25vw);
  }
}
body.page-index .site-footer {
  position: relative;
  z-index: 2;
  background-color: #fff;
  background-image:
    linear-gradient(color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--dot-color) 15%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Sections internes transparentes — le pattern du wrapper remonte */
/* Quadrillage couleur de page sur les pages intérieures */
body:not(.page-index) {
  background-image:
    linear-gradient(color-mix(in srgb, var(--color-accent) 40%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--color-accent) 40%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
}

body.page-index .hero-home,
body.page-index .gif-grid,
body.page-index .section {
  background-color: transparent;
  position: relative;
  z-index: 1;
}
/* Pas de pois dans les cards et steps sur l'index */
body.page-index .card-h__body { background: #fff; }
body.page-index .cards-highlight .card-h:nth-child(1),
body.page-index .cards-highlight .card-h:nth-child(2),
body.page-index .cards-highlight .card-h:nth-child(3) { background: #fff; }
body.page-index .cards-highlight .card-h:nth-child(1) .btn-outline { border-color: rgb(111,195,188); }
body.page-index .cards-highlight .card-h:nth-child(2) .btn-outline { border-color: rgb(220,150,170); }
body.page-index .cards-highlight .card-h:nth-child(3) .btn-outline { border-color: rgb(226,171,100); }
body.page-index .section--light .btn-outline { border-color: rgb(160,210,174); }
body.page-index .text-image .btn-outline { border-color: rgb(207,196,99); }
body.page-index .cards-highlight .card-h:nth-child(1) .card-h__body { border: 1px solid var(--color-border); }
body.page-index .cards-highlight .card-h:nth-child(2) .card-h__body { border: 1px solid var(--color-border); }
body.page-index .cards-highlight .card-h:nth-child(3) .card-h__body { border: 1px solid var(--color-border); }
body.page-index .step { background: #fff; }
body.page-index .steps-grid .step .step__body { border: 1px solid var(--color-border); display: flex; flex-direction: row; align-items: center; gap: .5rem; }
body.page-index .steps-grid .step .step__number { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: rgb(160, 210, 174); color: #fff; font-family: var(--font-sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; flex-shrink: 0; }
body.page-index .steps-grid .step .step__body h3 { border-left: none; padding-left: .4rem; margin: 0; white-space: normal; font-size: .85rem; line-height: 1.3; }
@media (min-width: 600px) { body.page-index .steps-grid .step .step__body h3 { font-size: 1rem; } }
body.page-index .btn { background: #fff; }
body.page-index .section--light .btn-outline:hover,
body.page-index .section--light .btn-outline:active { background: rgb(160,210,174); border-color: rgb(160,210,174); color: #fff; }
body.page-index .text-image .btn-outline:hover,
body.page-index .text-image .btn-outline:active { background: rgb(207,196,99); border-color: rgb(207,196,99); color: #fff; }
body.page-index .text-image .text-image__text { border: 1px solid var(--color-border); }

/* ── 6. HERO ACCUEIL ─────────────────────────────────────────── */
.hero-home {
  min-height: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 50px;
  gap: 40px;
}
.hero-mascotte {
  height: clamp(160px, 22vw, 340px);
  width: auto;
  flex-shrink: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.hero-home .hero-logo { max-height: clamp(72px, 9.6vw, 120px); width: auto; margin-bottom: 20px; }
.hero-home h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  max-width: 600px;
}

/* ── 7. BOUTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 30px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px;
}
.btn-outline { border: 1px solid currentColor; color: var(--color-text); background: #fff; }
.btn-outline:hover { background: var(--color-text); color: var(--color-white); border-color: var(--color-text); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.88); color: rgba(255,255,255,0.95); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.92); color: var(--color-text); }
.btn-accent { background: var(--color-accent); color: var(--color-white); border: 1.5px solid var(--color-accent); }
.btn-accent:hover { background: #a05e5e; border-color: #a05e5e; }

/* ── 8. CARTES GIF ───────────────────────────────────────────── */
.gif-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 600px) { .gif-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .gif-grid { grid-template-columns: 1fr; } }

.gif-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }

.gif-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.gif-card:hover .gif-card__bg { transform: scale(1.04); }

.gif-card__oval {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: min(260px, 80%); height: 170px;
  border-radius: 50%; z-index: 1; pointer-events: none;
}
.gif-card:nth-child(1) .gif-card__oval { background: var(--oval-1); }
.gif-card:nth-child(2) .gif-card__oval { background: var(--oval-2); }
.gif-card:nth-child(3) .gif-card__oval { background: var(--oval-3); }
.gif-card:nth-child(4) .gif-card__oval { background: var(--oval-4); }

.gif-card__label {
  position: absolute;
  bottom: 76px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; text-align: center;
  width: min(230px, 80%); pointer-events: none;
}
.gif-card__label h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.58rem, 3.16vw, 2.11rem);
  color: var(--color-white); line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.18);
}
.gif-card__btn {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  white-space: nowrap; padding: 7px 20px; min-height: 38px;
  border: 1.5px solid rgba(255,255,255,0.88);
  color: rgba(255,255,255,0.95); background: transparent;
  font-family: var(--font-sans); font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius);
}
.gif-card__btn:hover { background: rgba(255,255,255,0.92); color: var(--color-text); }

/* ── 9. SECTIONS ─────────────────────────────────────────────── */
.section { padding: 64px 24px; }
@media (max-width: 767px) {
  .hero-home .hero-logo { max-height: 90px; }
  body:not(.page-index) .section { padding: 36px 0; }
  body:not(.page-index) .section:first-of-type { padding-top: 0; }
  body:not(.page-index) .section__inner { padding-left: 20px; padding-right: 20px; }
  body.page-index .section { padding-left: 0; padding-right: 0; }
  body.page-index .section__inner { padding-left: 20px; padding-right: 20px; }
  body.page-index .section__inner .cards-highlight,
  body.page-index .section__inner .text-image,
  body.page-index .section__inner .steps-grid,
  body.page-index .section__inner .temoignages-wrap {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  body.page-index .card-h { border-radius: 0 !important; }
  body.page-index .cards-highlight { gap: 0 !important; }
  body.page-index .steps-grid,
  body.page-pieces-uniques .steps-grid { gap: 0 !important; }
  body.page-index .step,
  body.page-pieces-uniques .step { border-radius: 0 !important; }
  body.page-index .step:nth-child(odd) .step__body,
  body.page-pieces-uniques .step:nth-child(odd) .step__body { border-right: none; }
  body.page-pieces-uniques .section__inner .steps-grid {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  body:not(.page-index) .section__inner .publics-grid,
  body:not(.page-index) .section__inner .formats-grid,
  body:not(.page-index) .section__inner .coulisses-grid,
  body:not(.page-index) .section__inner .steps-grid,
  body:not(.page-index) .section__inner .temoignages-wrap,
  body:not(.page-index) .section__inner .text-image {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
.section--light { background-color: transparent; }
.section--cream { background-color: transparent; }
.section__title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.58rem, 3.16vw, 2.11rem);
  letter-spacing: 0.05em; text-align: center;
  margin-bottom: 48px; color: var(--color-text);
}
.h2-underline { margin-bottom: 48px; text-align: center; }
.section__title::after,
.h2-underline::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 16px auto 0;
}
.section__title + .divider { display: none; }
.section__inner { max-width: var(--max-width); margin: 0 auto; }

/* ── 10. HIGHLIGHT CARDS ─────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card-color {
  background: rgba(185, 196, 100, 0.6);
  border-radius: 0;
  min-height: 200px;
  /* Breakout jusqu'au bord gauche de la page */
  margin-left: calc(-24px - max(0px, (100vw - 1200px) / 2));
  width: calc(100% + 24px + max(0px, (100vw - 1200px) / 2));
}
@media (min-width: 600px)  { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); }

/* Couleurs de fond par carte — cohérentes avec la palette ZUT! */
.cards-grid .card:nth-child(1) { background: rgba(196, 210, 100, 0.5); }   /* vert olive */
.cards-grid .card:nth-child(2) { background: rgba(220, 150, 170, 0.5); }   /* rose */
.cards-grid .card:nth-child(3) { background: rgba(218, 148, 100, 0.5); }   /* orange saumon */
.cards-grid .card:nth-child(4) { background: rgba(170, 160, 210, 0.5); }   /* lavande */
.card__img { width: 100%; height: 200px; object-fit: cover; }
@media (min-width: 768px) { .card__img { height: 220px; } }
.card__body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; align-items: center; text-align: center; }
.card__body .btn { margin-top: auto; }
.card__body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; }
.card__body p { font-size: 0.88rem; color: var(--color-muted); margin-bottom: 18px; line-height: 1.7; }

/* ── 11. TEXT + IMAGE ────────────────────────────────────────── */
.text-image { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; max-width: 1060px; margin: 0 auto; }
/* Sur mobile : texte toujours en premier, image en second */
.text-image__text { order: 2; }
.text-image__img  { order: 1; }
@media (min-width: 768px) {
  .text-image { grid-template-columns: 1fr 1fr; gap: 0; }
  .text-image__text, .text-image__img { order: unset; }
  .text-image--reverse { direction: rtl; }
  .text-image--reverse > * { direction: ltr; }
}
.text-image__text h2 { font-family: var(--font-serif); font-size: clamp(1.58rem, 3.16vw, 2.11rem); font-weight: 400; margin-bottom: 20px; }
.text-image__text p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 14px; line-height: 1.8; text-align: justify; }
.text-image__text .btn { margin-top: auto; align-self: center; padding-top: 16px; }
.text-image__img { border-radius: 0; overflow: hidden; border: none; }
.text-image__text { border: 1px solid color-mix(in srgb, var(--dot-color) 60%, transparent); padding: 28px; border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
body:not(.page-index) .text-image__text .divider { margin-left: auto; margin-right: auto; }
body:not(.page-index) .text-image__text h2 { text-align: center; align-self: stretch; }
body:not(.page-index) .text-image__text .section__tag { text-align: left; align-self: flex-start; margin-left: 0; margin-right: 0; }
.text-image__img img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; }
@media (min-width: 768px) { .text-image__img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center; display: block; } }
/* Index "La créatrice" : photo carrée (largeur = hauteur), le texte s'aligne sur sa hauteur */
@media (min-width: 768px) {
  body.page-index .text-image__img { aspect-ratio: 1 / 1; height: auto !important; width: 100%; overflow: hidden; }
  body.page-index .text-image__img img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
}

/* ── 12. MASONRY ─────────────────────────────────────────────── */
.masonry { columns: 2; column-gap: 12px; max-width: 1060px; margin: 0 auto; }
@media (min-width: 768px)  { .masonry { columns: 3; column-gap: 16px; } }
@media (min-width: 1024px) { .masonry { columns: 4; } }
.masonry__item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
@media (min-width: 768px) { .masonry__item { margin-bottom: 16px; } }
.masonry__item img { width: 100%; display: block; transition: transform var(--transition), opacity var(--transition); }
.masonry__item:hover img { transform: scale(1.03); opacity: 0.88; }

/* ── 13. LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 2000;
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 8px 48px rgba(0,0,0,0.5); }
.lightbox__close {
  position: absolute; top: 16px; right: 20px;
  color: #fff; font-size: 2rem; background: none; border: none;
  cursor: pointer; line-height: 1; padding: 8px; opacity: 0.85;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* ── 14. QUOTE ───────────────────────────────────────────────── */
.quote-wrap { max-width: 820px; margin: 0 auto; text-align: center; padding: 20px 0; }
.quote-wrap blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem); color: #555; line-height: 1.75;
  border-left: 3px solid var(--color-accent); padding: 4px 0 4px 24px; text-align: left;
}

/* ── 15. CORÉE — ateliers grid ───────────────────────────────── */
.ateliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 600px)  { .ateliers-grid { grid-template-columns: repeat(6, 1fr); } }
.atelier-pill {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  transition: transform var(--transition);
  word-break: break-word;
}
.atelier-pill:hover,
.atelier-pill:active { transform: scale(1.06); background: rgb(226, 171, 100); }
.atelier-pill a { color: var(--color-text); text-decoration: none; line-height: 1.3; transition: color var(--transition); }
.atelier-pill:hover a,
.atelier-pill:active a { color: #fff; }

/* ── 16. STATS ───────────────────────────────────────────────── */
.stats-row { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; text-align: center; }
.stat__num { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2.8rem, 6vw, 4rem); color: var(--color-accent); line-height: 1; }
.stat__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--color-muted); margin-top: 8px; }

/* ── 17. KOREA QUOTES ────────────────────────────────────────── */
.korea-quotes { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
@media (min-width: 768px) { .korea-quotes { grid-template-columns: 1fr 1fr; } }
.korea-quote {
  background: #fff; padding: 28px 28px 24px;
  border-radius: var(--radius); border-left: 3px solid var(--color-accent);
  font-family: var(--font-serif); font-style: italic; font-size: 1rem;
  color: #555; line-height: 1.75;
  display: flex; flex-direction: column; justify-content: space-between;
}
.korea-quote cite {
  display: block; margin-top: 14px; font-style: normal;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text);
}

/* ── 18. QUOTES GRID ─────────────────────────────────────────── */
.quotes-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
@media (min-width: 768px) { .quotes-grid { grid-template-columns: 1fr 1fr; } }
.quote-card {
  background: #fff; padding: 28px 28px 24px;
  border-radius: var(--radius); border-left: 3px solid var(--color-accent);
  font-family: var(--font-serif); font-style: italic; font-size: 1rem;
  color: #555; line-height: 1.75;
}
.quote-card cite {
  display: block; margin-top: 14px; font-style: normal;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text);
}

/* ── 19. PARTENAIRES ─────────────────────────────────────────── */
.partners { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
.partners img { height: 64px; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter var(--transition), transform var(--transition); }
.partners img:hover { filter: none; transform: scale(1.06); }

/* ── 20. CONTACT FORM ────────────────────────────────────────── */
.contact-card { max-width: 680px; margin: 0 auto; background: rgba(255,255,255,0.94); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.contact-info { background: var(--color-light); padding: 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.contact-info__row { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); }
.contact-info__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.contact-info__row a { color: var(--color-accent); text-decoration: none; }
.contact-form { padding: 32px; }
.contact-form h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.58rem, 3.16vw, 2.11rem); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); }
.form-field input,
.form-field textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd;
  border-radius: var(--radius); font-size: 0.92rem; font-family: var(--font-sans);
  color: var(--color-text); background: var(--color-white);
  transition: border-color var(--transition); min-height: 44px;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-accent); }
.form-field textarea { height: 130px; resize: vertical; min-height: 80px; }
.form-field--full { grid-column: 1 / -1; }
.form-submit { margin-top: 20px; }
.form-success { display: none; margin-top: 16px; padding: 12px 18px; background: #e8f5e9; border-radius: var(--radius); color: #388e3c; font-size: 0.9rem; font-weight: 600; }

/* ── 20. PRESSE ──────────────────────────────────────────────── */
.presse-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px)  { .presse-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .presse-grid { grid-template-columns: repeat(3, 1fr); } }
.presse-card { background: rgba(255,255,255,0.9); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition); }
.presse-card:hover { transform: translateY(-3px); }
.presse-card img { width: 100%; height: 220px; object-fit: cover; }
.presse-card__caption { padding: 14px 18px; }
.presse-card__caption h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.presse-card__caption p { font-size: 0.82rem; color: var(--color-muted); }

/* ── 21. PIECES UNIQUES — process ────────────────────────────── */
.process-steps { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 840px; margin: 0 auto; }
@media (min-width: 600px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
.process-step { text-align: center; padding: 28px 20px; background: rgba(255,255,255,0.9); border-radius: var(--radius); }
.process-step__icon { font-size: 2.4rem; margin-bottom: 14px; }
.process-step__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 10px; }
.process-step__text { font-size: 0.88rem; color: var(--color-muted); line-height: 1.6; }

/* ── 22. HERO PAGE INTERIEURE ────────────────────────────────── */
.hero-page { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding-top: 70px; }
@media (min-width: 768px) { .hero-page { min-height: 360px; } }
@media (max-width: 599px) { .hero-page { padding-top: 0; } }
.hero-page__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.5); }
.hero-page__content { position: relative; z-index: 2; padding: 40px 60px; color: var(--color-white); text-align: center; width: 100%; }
@media (max-width: 767px) { body:not(.page-index) .hero-page__content { padding: 72px 20px 36px; } }
.hero-page__content h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 5vw, 3.2rem); text-shadow: 0 2px 16px rgba(0,0,0,0.18); margin-bottom: 14px; }
.hero-page__title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem) !important; font-weight: 400; line-height: 1.15; margin: 0 0 .75rem; text-align: center; width: 100%; max-width: 1400px; display: block; color: #fff; background: none; }
.hero-page__content p { font-size: clamp(0.9rem, 2vw, 1.1rem); opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ── 23. DIVIDER ─────────────────────────────────────────────── */
/* body text normalization */
.section p { font-size: 0.93rem; line-height: 1.75; }
.section p + p { margin-top: 1rem; }

.divider { width: 60px; height: 2px; background: var(--color-accent); margin: 0 auto 32px; }

/* ── 23b. SECTION HEADER (tag + title + divider) ─────────────── */
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__tag {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15.6px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px;
}
.section__subtitle {
  font-size: 0.92rem; color: var(--color-muted); margin-top: .75rem;
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.section__header .divider { margin-top: 1rem; margin-bottom: 0; }

/* ── 23c. STEPS (4 étapes du concept) ───────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1060px; margin: 0 auto; }
@media (min-width: 600px)  { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center; padding: 0;
  background: #fff;
  border-radius: var(--radius); border: none;
  overflow: hidden;
  transition: transform var(--transition);
  display: flex; flex-direction: column;
}
.step:hover { transform: none; }
.step__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  display: block; margin-bottom: 0;
}
.step__body { border: 1px solid var(--dot-color); border-radius: 0 0 var(--radius) var(--radius); padding: 16px 16px 20px; flex: 1; background: #fff; }
.step__number { display: none; }
.step h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; padding: 0 16px; }
.step p  { font-size: 0.88rem; color: var(--color-muted); line-height: 1.65; padding: 0 16px; }

/* ── 23d. HIGHLIGHT CARDS (univers ZUT!) ─────────────────────── */
.cards-highlight { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px)  { .cards-highlight { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-highlight { grid-template-columns: repeat(3, 1fr); } }

.card-h {
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition); border: none;
}
.card-h:hover { transform: none; }
.cards-highlight .card-h:nth-child(1) { background: rgba(196,210,100,0.50); }
.cards-highlight .card-h:nth-child(2) { background: rgba(220,150,170,0.50); }
.cards-highlight .card-h:nth-child(3) { background: rgba(218,148,100,0.50); }
.cards-highlight .card-h:nth-child(4) { background: rgba(170,160,210,0.50); }

/* Carte large (2 colonnes) */
.card-h--wide { grid-column: span 2; flex-direction: row; }
.card-h--wide .card-h__img { width: 49%; flex-shrink: 0; height: auto; object-fit: cover; }
@media (max-width: 599px) {
  .card-h--wide { flex-direction: column; grid-column: span 1; }
  .card-h--wide .card-h__img { width: 100%; height: 200px; }
}

.card-h__img { width: 100%; height: 320px; object-fit: cover; }
@media (min-width: 768px) { .card-h__img { height: 340px; } }
.card-h__body {
  padding: 28px 20px 36px; display: flex; flex-direction: column; flex: 1;
  align-items: center; text-align: center;
  border: 1px solid var(--color-accent); border-radius: 0 0 var(--radius) var(--radius);
}
.card-h--wide .card-h__body { justify-content: center; }
.card-h__tag {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; font-weight: 700; margin-bottom: 8px;
}
.card-h__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card-h__text { font-size: 0.88rem; color: var(--color-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.card-h__body .btn { align-self: center; margin-top: auto; }

/* Hover bouton = couleur de la card à 100% */
.cards-highlight .card-h:nth-child(1) .btn-outline:hover,
.cards-highlight .card-h:nth-child(1) .btn-outline:active { background: rgb(111,195,188); border-color: rgb(111,195,188); color: #fff; }
.cards-highlight .card-h:nth-child(2) .btn-outline:hover,
.cards-highlight .card-h:nth-child(2) .btn-outline:active { background: rgb(220,150,170); border-color: rgb(220,150,170); color: #fff; }
.cards-highlight .card-h:nth-child(3) .btn-outline:hover,
.cards-highlight .card-h:nth-child(3) .btn-outline:active { background: rgb(226,171,100); border-color: rgb(226,171,100); color: #fff; }
.cards-highlight .card-h:nth-child(4) .btn-outline:hover { background: rgb(170,160,210); border-color: rgb(170,160,210); color: var(--color-text); }
.cards-highlight .card-h:nth-child(5) .btn-outline:hover { background: rgb(196,210,100); border-color: rgb(196,210,100); color: var(--color-text); }

/* ── UNIVERS ZUT! : 1ère ligne 1/3 texte + 2/3 carte ── */
.univers-featured {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .univers-featured { grid-template-columns: 1fr; }
  .univers-featured__text { display: none; }
}
.univers-featured__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.univers-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-align: left;
}
.univers-featured__card {
  background: rgba(196,210,100,0.50);
}
.univers-featured__img {
  height: 320px;
  object-fit: cover;
}

/* ── 24. UTILITAIRES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile  { display: revert; }
  .hide-desktop { display: none !important; }
}

/* ── 25. FOOTER ──────────────────────────────────────────────── */
.site-footer { background: transparent; color: var(--color-muted); border-top: 1px solid var(--color-border); padding: 48px 24px 28px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 32px; text-align: right; }
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: auto 1fr auto; text-align: left; align-items: start; gap: 40px; }
}
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; margin: 0 auto; }
@media (min-width: 768px) { .footer-logo img { margin: 0; } }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
@media (min-width: 768px) { .footer-nav { justify-content: flex-start; } }
.footer-nav a {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-muted); text-decoration: none; padding: 6px 10px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  min-height: 36px; display: inline-flex; align-items: center;
}
.footer-nav a:hover { color: var(--color-text); background: rgba(0,0,0,0.05); }
.footer-right { text-align: right; }
.footer-legal { display: flex; gap: 12px; justify-content: flex-end; margin-bottom: 8px; }
.footer-legal a { font-size: .68rem; color: var(--color-muted); text-decoration: none; letter-spacing: .04em; }
.footer-legal a:hover { color: var(--color-text); }
.footer-social { justify-content: flex-end; }
.footer-social { display: flex; gap: 16px; justify-content: flex-end; margin-bottom: 16px; }
@media (min-width: 768px) { .footer-social { justify-content: flex-end; } }
.footer-social a { display: flex; align-items: center; color: var(--color-text); text-decoration: none; transition: color var(--transition); }
.footer-social a:hover { color: var(--color-accent); }
.footer-social svg { width: 40px; height: 40px; }
/* ── PAYSAGE IPHONE ──────────────────────────────────────────── */
/* ── TOUS APPAREILS TACTILES (mobiles + tablettes) ───────────── */
@media (pointer: coarse) {
  /* Header : logo à gauche, social + hamburger à droite, pas de nav texte */
  .site-header { grid-template-columns: auto 1fr; }
  .main-nav { display: none !important; }
  /* Footer : tout justifié à droite */
  .footer-inner { grid-template-columns: 1fr !important; text-align: right !important; }
  .footer-nav { justify-content: flex-end !important; }
  .footer-logo img { margin: 0 0 0 auto !important; }
  .footer-social { justify-content: flex-end !important; }
}
.site-header.header--solid { background: rgba(255,255,255,1); }
body:not(.page-index) .site-header { background: rgba(255,255,255,1); }

/* ── VIDEO YOUTUBE PLEINE HAUTEUR ────────────────────────────── */
.yt-fullwidth {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.yt-fullwidth iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Couvre le conteneur en mode "cover" : toujours plein écran sans bandes noires */
  width: 100vw;
  height: 56.25vw;   /* 16/9 × largeur */
  min-height: 100vh;
  min-width: 177.78vh; /* 16/9 × hauteur */
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* ── 26. PAGE EXPOSITIONS ────────────────────────────────────── */
.section--sand { background-color: rgba(247,242,238,0.85); }
.section--dark { background-color: #1e1e1e; color: var(--color-white); }
.section--dark .section__title { color: var(--color-white); }
body.page-expositions .text-image__img img { height: 100%; object-fit: cover; }
body.page-expositions .section--sand { background-color: transparent; }
body.page-expositions .section--dark { background-color: transparent; color: var(--color-text); }
body.page-expositions .section--dark .section__title { color: var(--color-text); }
body.page-expositions .section--dark .section__tag { color: var(--color-accent); }
body.page-expositions .expo-item { color: var(--color-text); background: transparent; border-color: transparent; }
body.page-expositions .steps-grid { grid-template-columns: repeat(2, 1fr); }
body.page-expositions .steps-grid .step .step__body { border: 1px solid color-mix(in srgb, var(--dot-color) 60%, transparent); display: flex; flex-direction: row; align-items: center; gap: .5rem; }
body.page-expositions .steps-grid .step .step__number { display: flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border-radius: 50%; background: rgb(220, 150, 170); color: #fff; font-family: var(--font-sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; flex-shrink: 0; }
body.page-expositions .steps-grid .step .step__body h3 { border-left: none; padding-left: .4rem; margin: 0; white-space: normal; font-size: .85rem; line-height: 1.3; }
@media (min-width: 600px) { body.page-expositions .steps-grid .step .step__body h3 { font-size: 1rem; } }
@media (max-width: 767px) {
  body.page-expositions .section { padding-left: 0; padding-right: 0; }
  body.page-expositions .section__inner { padding-left: 20px; padding-right: 20px; }
  body.page-expositions .section__inner .steps-grid {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    gap: 0;
  }
  body.page-expositions .step { border-radius: 0 !important; }
  body.page-expositions .step__body { border: 1px solid var(--dot-color); border-radius: 0 !important; }
  body.page-expositions .step:nth-child(odd) .step__body { border-right: none; }
}
@media (min-width: 768px)  { body.page-expositions .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { body.page-expositions .steps-grid { grid-template-columns: repeat(3, 1fr); } }
body.page-expositions .step { padding: 0; border: none; border-radius: var(--radius); background: #fff; overflow: hidden; }
body.page-expositions .step h3 { padding: 0; font-weight: 500; }
body.page-expositions .step p  { padding: 0; }
body.page-expositions .expo-item:hover { background: transparent; }
body.page-expositions .expo-item__name { color: var(--color-text); }
@media (max-width: 767px) { body.page-expositions .gif-plaquette { max-width: 100% !important; } }
body.page-expositions .expo-item__place { color: var(--color-muted); }

.expo-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 2rem; margin-top: 2rem; max-width: 900px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .expo-list { grid-template-columns: 1fr; } }
.expo-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--color-border);
}
.expo-item:last-child { border-bottom: none; }
.expo-item__year {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
}
.expo-item__name { font-size: 1rem; font-weight: 700; color: var(--color-text); }
.expo-item__place { font-size: .88rem; color: var(--color-muted); }

.cta-banner {
  background: var(--color-accent);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-banner::before {
  content: none;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.58rem, 3.16vw, 2.11rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}
.btn-white-fill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 30px; min-height: 44px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--color-white); color: var(--color-accent);
  border: 1.5px solid var(--color-white); border-radius: var(--radius);
  transition: all var(--transition); margin: .4rem; text-decoration: none;
}
.btn-white-fill:hover { background: var(--color-text); color: var(--color-white); border-color: var(--color-text); }
.btn-white-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 30px; min-height: 44px;
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(255,255,255,0.88); border-radius: var(--radius);
  transition: all var(--transition); margin: .4rem; text-decoration: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.92); color: var(--color-text); }


/* ── PAGE PIÈCES UNIQUES : image carrée (hauteur = largeur) ──── */
body.page-pieces-uniques .text-image__img { aspect-ratio: 1 / 1; height: auto !important; overflow: hidden; width: 100%; }
@media (max-width: 767px) { body.page-pieces-uniques .text-image:first-of-type .text-image__img { aspect-ratio: unset; }
body.page-pieces-uniques .text-image:first-of-type .text-image__img img { aspect-ratio: unset; height: auto; object-fit: contain; } }
body.page-pieces-uniques .text-image { overflow: hidden; }
body.page-pieces-uniques .text-image__img img,
body.page-pieces-uniques .slider-wrap { height: 100% !important; min-height: unset !important; }

/* ── PAGE PIÈCES UNIQUES : texte condensé ────────────────────── */
body.page-pieces-uniques .text-image__text { font-size: 0.85rem; display: flex; flex-direction: column; }
body.page-pieces-uniques .text-image__text p { margin-bottom: 4px; line-height: 1.4; }
body.page-pieces-uniques .text-image__text ul { margin: 6px 0; line-height: 1.5; font-size: 0.82rem; }
body.page-pieces-uniques .text-image__text h2 { font-size: clamp(1.58rem, 3.16vw, 2.11rem); margin-bottom: 20px; }
body.page-pieces-uniques .text-image__text .btn { margin-top: auto; align-self: center; margin-bottom: 0; }

/* Cartes de format */
.format-cards { display: flex; gap: 12px; margin: 14px 0; }
.format-card {
  flex: 1; aspect-ratio: 1 / 1;
  border: 1px solid color-mix(in srgb, var(--dot-color) 60%, transparent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: .8rem;
  color: var(--color-text); padding: 8px;
  background: #fff;
}


body.page-expositions .text-image__text { order: 1; }
body.page-expositions .text-image__img  { order: 2; }
/* ── COULEURS PAR PAGE ───────────────────────────────── */
body.page-index          { --color-accent: #999; }
body.page-histoire       { --color-accent: rgba(235,219,135,1); --dot-color: rgba(235,219,135,1); }
body.page-expositions    { --color-accent: rgba(204,136,153,1); --dot-color: rgba(204,136,153,1); }
body.page-ateliers       { --color-accent: rgba(90,170,176,1);  --dot-color: rgba(90,170,176,1);  }
body.page-coree          { --color-accent: rgba(236,162,100,1); --dot-color: rgba(236,162,100,1); }
body.page-contact        { --color-accent: rgba(180,160,210,1); --dot-color: rgba(180,160,210,1); }
body.page-galerie        { --color-accent: rgba(180,160,210,1); --dot-color: rgba(180,160,210,1); }
body.page-videos         { --color-accent: rgba(180,160,210,1); --dot-color: rgba(180,160,210,1); }
body.page-pieces-uniques { --color-accent: rgba(158,207,176,1); --dot-color: rgba(158,207,176,1); }

/* ── EXPO SLIDER ──────────────────────────────────────── */
.expo-slider { position: relative; overflow: hidden; border-radius: 0; width: 100%; height: 320px; }
@media (max-width: 767px) { .expo-slider { height: auto; aspect-ratio: 1 / 1; } }
@media (min-width: 768px) { .expo-slider { height: 100%; min-height: 320px; } }
.expo-slider__track { display: flex; height: 100%; transition: transform 0.45s ease; }
.expo-slider__track img { min-width: 100%; width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.expo-slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.75); border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; padding: 8px 14px;
  color: var(--color-text); transition: background var(--transition); z-index: 2;
  border-radius: var(--radius);
}
.expo-slider__btn:hover { background: rgba(255,255,255,0.95); }
.expo-slider__btn--prev { left: 8px; }
.expo-slider__btn--next { right: 8px; }
.expo-slider__dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.expo-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0; transition: background var(--transition); }
.expo-slider__dot.active { background: #fff; }
.expo-slider__pause {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.75); border: none; cursor: pointer;
  font-size: 0.75rem; line-height: 1; padding: 4px 8px;
  color: var(--color-text); transition: background var(--transition); z-index: 2;
  border-radius: var(--radius); font-family: var(--font-sans);
}
.expo-slider__pause:hover { background: rgba(255,255,255,0.95); }

/* ── Spinner chargement hero ── */
#hero-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #1e1e1e;
  pointer-events: none;
}
.lds-spinner, .lds-spinner div, .lds-spinner div:after { box-sizing: border-box; }
.lds-spinner {
  color: currentColor;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1)  { transform: rotate(0deg);   animation-delay: -1.1s; }
.lds-spinner div:nth-child(2)  { transform: rotate(30deg);  animation-delay: -1.0s; }
.lds-spinner div:nth-child(3)  { transform: rotate(60deg);  animation-delay: -0.9s; }
.lds-spinner div:nth-child(4)  { transform: rotate(90deg);  animation-delay: -0.8s; }
.lds-spinner div:nth-child(5)  { transform: rotate(120deg); animation-delay: -0.7s; }
.lds-spinner div:nth-child(6)  { transform: rotate(150deg); animation-delay: -0.6s; }
.lds-spinner div:nth-child(7)  { transform: rotate(180deg); animation-delay: -0.5s; }
.lds-spinner div:nth-child(8)  { transform: rotate(210deg); animation-delay: -0.4s; }
.lds-spinner div:nth-child(9)  { transform: rotate(240deg); animation-delay: -0.3s; }
.lds-spinner div:nth-child(10) { transform: rotate(270deg); animation-delay: -0.2s; }
.lds-spinner div:nth-child(11) { transform: rotate(300deg); animation-delay: -0.1s; }
.lds-spinner div:nth-child(12) { transform: rotate(330deg); animation-delay:  0.0s; }
@keyframes lds-spinner {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}



/* ── Hover boutons par page ── */
body.page-ateliers .btn-outline:hover,
body.page-ateliers .btn-outline:active { background: rgba(90,170,176,1); border-color: rgba(90,170,176,1); color: #fff; }
body.page-ateliers .text-image__img img { aspect-ratio: unset; height: auto; object-fit: contain; }
body.page-pieces-uniques .btn-outline:hover,
body.page-pieces-uniques .btn-outline:active { background: rgba(158,207,176,1); border-color: rgba(158,207,176,1); color: #fff; }
body.page-expositions .btn-outline:hover,
body.page-expositions .btn-outline:active { background: rgba(204,136,153,1); border-color: rgba(204,136,153,1); color: #fff; }