/* ================================================
   BAUME & CŒUR — style.css (VERSION FINALE 2026)
   Fixes complets Safari iOS + Chrome Android
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Cardo:ital,wght@0,400;0,700;1,400&family=Arimo:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --lin:      #e8e6df;
  --lin-pale: #f2f0eb;
  --sauge:    #8b8a72;
  --sauge-dk: #6d6c58;
  --sauge-pale: #b8b8a0;
  --ardoise:  #8fa3b1;
  --ardoise-pale: #c0d0da;
  --brun:     #3d2a1e;
  --brun-mid: #5c4a35;
  --brun-lt:  #8a7252;
  --cream:    #f5f2ec;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --body:  'Arimo', Arial, sans-serif;
  --cta:   'Cardo', Georgia, serif;

  --nav-h: 74px;
  --max:   1160px;
  --px:    clamp(1.4rem, 6vw, 5rem);
  --px-inner: clamp(1.4rem, 4vw, 3.5rem);
}

/* ====================== FIXES GLOBAUX (priorité haute) ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--body);
  background: var(--lin-pale);
  color: var(--brun);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe {
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  display: block;
}

/* Safari iOS Dynamic Viewport */
@supports (-webkit-touch-callout: none) {
  .hero-index, .hero-aina, .promesse-section, .epreuve-section, .temoignage-section,
  .exp-section-1, .creations-hero, .exp-festival {
    min-height: 100dvh !important;
  }
}

/* Safe Area pour iPhone (Dynamic Island / notch) */
.nav {
  padding-top: env(safe-area-inset-top) !important;
  height: calc(var(--nav-h) + env(safe-area-inset-top)) !important;
}

/* Hero inset & overlays Safari */
.hero-inset, .hero-aina-right-book {
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
  display: block !important;
  min-height: 1px !important;
}

/* Vidéos et images parfaites sur mobile */
.epreuve-video-wrap, .exp-index-right, .seances-left, .creations-right {
  overflow: hidden !important;
}
.epreuve-video-wrap video,
.epreuve-video-wrap iframe {
  width: 100% !important;
  height: 100% !important;
}

/* Grilles mobiles sécurisées */
.promesse-ig-grid, .rencontres-photos {
  gap: 12px !important;
}
@media (max-width: 600px) {
  .promesse-ig-grid { grid-template-columns: 1fr !important; }
}

/* ====================== TON CSS ORIGINAL ====================== */

.nav { 
  position: fixed; 
  top: 0; left: 0; right: 0; 
  z-index: 600; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 var(--px); 
  transition: background .35s, box-shadow .35s; 
}

.nav.solid {
  background: rgba(242,240,235,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(61,42,30,.09);
}
.nav.over { background: rgba(242,240,235,.88); backdrop-filter: blur(10px); }

.nav-logo { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.nav-logo img { height: 46px; width: auto; }

/* ── TYPO ── */
h1,h2,h3,h4,.serif { font-family: var(--serif); font-weight: 400; }
p, li, span, div { font-family: var(--body); }

.eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--body);
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brun-lt); margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--brun-lt);
  flex-shrink: 0;
}
.eyebrow.light { color: rgba(242,240,235,.6); }
.eyebrow.light::before { background: rgba(242,240,235,.4); }

/* Séparateur central */
.nav-sep {
  width: 1px; height: 28px;
  background: rgba(61,42,30,.18);
  flex-shrink: 0;
}
.nav.over .nav-sep { background: rgba(61,42,30,.18); }

.nav-links {
  display: flex; align-items: center; gap: 0; list-style: none; flex: 1;
}
.nav-left  { justify-content: flex-start; gap: 2rem; padding-right: 2rem; }
.nav-right { justify-content: flex-end;   gap: 2rem; padding-left:  2rem; flex: 1; }

.nav-links a {
  font-family: var(--body);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brun); opacity: .8;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.nav.over .nav-links a { color: var(--brun); opacity: .85; }
.nav-links a:hover, .nav-links a.active { opacity: 1; border-bottom-color: currentColor; }

.nav-icon-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(61,42,30,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--brun);
  cursor: pointer; background: transparent; transition: all .2s;
}
.nav.over .nav-icon-btn { color: var(--brun); border-color: rgba(61,42,30,.2); }
.nav-icon-btn:hover { background: var(--brun); color: var(--cream); }

#netlify-identity-btn {
  font-family: var(--body); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; background: transparent;
  border: 1px solid rgba(61,42,30,.2); color: var(--brun);
  padding: .4rem .9rem; border-radius: 1px; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.nav.over #netlify-identity-btn { color: var(--brun); border-color: rgba(61,42,30,.2); }
#netlify-identity-btn:hover { background: var(--brun); color: var(--cream); border-color: var(--brun); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--brun); transition: all .3s; }
.nav.over .nav-burger span { background: var(--brun); }

.nav-mobile {
  display: none; flex-direction: column; gap: 1.4rem;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 599;
  background: rgba(242,240,235,.98); backdrop-filter: blur(16px);
  padding: 2rem var(--px); border-bottom: 1px solid rgba(61,42,30,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--body); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brun); opacity: .75;
  transition: opacity .2s;
}
.nav-mobile a:hover { opacity: 1; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--cta); font-size: .75rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 1px;
  cursor: pointer; border: none; transition: all .22s; white-space: nowrap;
  text-decoration: none; line-height: 1;
}
.btn-brun  { background: var(--brun);   color: var(--cream); }
.btn-brun:hover  { background: var(--brun-mid); transform: translateY(-1px); }

.btn-sauge { background: var(--brun);  color: var(--cream); }
.btn-sauge:hover { background: var(--brun-mid); transform: translateY(-1px); }

.btn-ghost { background: var(--brun); color: var(--cream); border: 1px solid var(--brun); }
.btn-ghost:hover { background: var(--brun-mid); transform: translateY(-1px); }

.btn-ghost-lt { background: var(--brun); color: var(--cream); border: 1px solid var(--brun); }
.btn-ghost-lt:hover { background: var(--brun-mid); transform: translateY(-1px); }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.section   { padding: 7rem var(--px); }
.section-sm{ padding: 4.5rem var(--px); }

.bg-lin   { background: var(--lin-pale); }
.bg-lin2  { background: var(--lin); }
.bg-sauge { background: var(--sauge); }
.bg-ardoise { background: var(--ardoise); }
.bg-brun  { background: var(--brun); }
.bg-cream { background: var(--cream); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .36s; }

/* ── CAROUSEL ── */
.carousel-wrap { overflow: hidden; }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 2.5rem; }
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(61,42,30,.22); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active { background: var(--sauge); transform: scale(1.25); }
.carousel-nav { display: flex; gap: .5rem; }
.carousel-btn {
  width: 38px; height: 38px; border-radius: 1px;
  border: 1px solid rgba(61,42,30,.2);
  background: transparent; cursor: pointer; font-size: .9rem;
  color: var(--brun); display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.carousel-btn:hover { background: var(--brun); color: var(--cream); border-color: var(--brun); }

/* ── MODAL EMAIL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(61,42,30,.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); border-radius: 2px; padding: 3rem 2.5rem;
  max-width: 460px; width: 100%; position: relative;
  box-shadow: 0 24px 64px rgba(61,42,30,.25);
}
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 1.4rem;
  color: var(--brun-lt); cursor: pointer; transition: color .2s;
}
.modal-close:hover { color: var(--brun); }
.modal-title {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  font-style: italic; color: var(--brun); margin-bottom: .6rem;
}
.modal-sub {
  font-family: var(--body); font-size: .95rem; line-height: 1.75;
  color: var(--brun-mid); margin-bottom: 2rem;
}
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-label {
  font-family: var(--body); font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brun-lt);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--body); font-size: 1rem; color: var(--brun);
  background: var(--lin-pale); border: 1px solid rgba(61,42,30,.15);
  border-radius: 1px; padding: .7rem 1rem; outline: none;
  transition: border-color .2s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--sauge); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px){ .form-row { grid-template-columns: 1fr; } }
.form-note {
  font-family: var(--body); font-size: .72rem; font-style: italic;
  color: var(--brun-lt); text-align: center; margin-top: .5rem;
}

/* ── INDEX — HERO ── */
.hero-index {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--lin);
  padding: calc(var(--nav-h) + 6rem) var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right {
  position: relative; overflow: hidden; background: var(--lin);
}
.hero-right-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(139,138,114,.18) 0%, rgba(61,42,30,.12) 100%);
}
/* Encart overlay hero — renommé .hero-inset (ex .hero-right-inset) */
.hero-inset {
  position: absolute; top: 3rem; right: 2rem;
  background: rgba(61,42,30,.72); backdrop-filter: blur(8px);-webkit-backdrop-filter: blur(8px); /* AJOUT : Pour Safari */
  padding: 1.6rem; max-width: 300px; z-index: 2; border-radius: 1px;display: block !important; /* AJOUT : Force l'affichage */
  min-height: 1px;           /* AJOUT : Force le calcul sur Safari */
}
.hero-inset-label {
  font-family: var(--body); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sauge-pale); margin-bottom: .7rem;
}
.hero-inset p {
  font-family: var(--body); font-size: .9rem; line-height: 1.72;
  color: rgba(242,240,235,.78);
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3.2rem,6vw,5.5rem);
  font-weight: 400; line-height: .95; color: var(--brun);
  margin-bottom: .8rem;
}
.hero-title em { font-style: italic; display: block; }
.hero-tagline {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--brun-lt); margin-bottom: 2.5rem; letter-spacing: .04em;
}
/* Barre latérale gauche du texte hero */
.hero-body-text {
  position: relative; padding-left: 1.2rem; margin-bottom: 2.5rem;
}
.hero-body-text::before {
  content: ''; position: absolute; left: 0; top: .3em; bottom: .3em;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--sauge), var(--brun-lt));
  opacity: .5; border-radius: 2px;
}

/* ── INDEX — SECTION LA PROMESSE ── */
.promesse-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sauge);
  min-height: 80vh;
}
.promesse-left {
  padding: 6rem var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.promesse-right {
  padding: 5rem clamp(1.5rem,5vw,4rem) 5rem var(--px-inner);
  display: flex; flex-direction: column; gap: 1.2rem;width:100%
}
.promesse-main-photo {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: 1px; display: block;
}
.promesse-ig-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 15px;
}
.promesse-ig-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  object-fit: cover;
  border-radius: 2px;
  min-width: 0;
  min-height: 0;
}
.promesse-ig-label {
  display: flex; align-items: center; gap: .6rem;
  justify-content: flex-end; margin-top: .2rem;
}
.promesse-ig-label svg { width: 16px; height: 16px; fill: rgba(242,240,235,.55); }
.promesse-ig-label span {
  font-family: var(--body); font-size: .72rem; letter-spacing: .1em;
  color: rgba(242,240,235,.55);
}
.promesse-list {
  list-style: none; margin: 1.4rem 0 2.2rem;
}
.promesse-list li {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: rgba(242,240,235,.82); line-height: 1.7;
  padding: .25rem 0 .25rem 1.2rem; position: relative;
}
.promesse-list li::before {
  content: '•'; position: absolute; left: 0;
  color: rgba(242,240,235,.4); font-style: normal;
}
.promesse-newsletter-row {
  display: flex; align-items: center; gap: 1.2rem; margin-top: .5rem;
  flex-wrap: wrap;
}
.promesse-newsletter-row .newsletter-icon {
  width: 28px; height: 22px; flex-shrink: 0; fill: rgba(242,240,235,.55);
}
.promesse-newsletter-free {
  font-family: var(--body); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,240,235,.45);
}

/* ── INDEX — SECTION AU CŒUR DE L'ÉPREUVE ── */
.epreuve-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--lin-pale);
  min-height: 80vh;
}
.epreuve-left {
  padding: 6rem var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.epreuve-right {
  padding: 6rem clamp(1.5rem,5vw,4rem) 5rem var(--px-inner);
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.epreuve-video-wrap {
  position: relative; width: 100%;
  height: 100%;overflow: hidden; border-radius: 1px;
  background: var(--brun); aspect-ratio: 16/10;
}
.epreuve-video-wrap video,
.epreuve-video-wrap iframe {
  width: 100% !important; height: 100% !important; object-fit: cover; display: block; opacity: .9;
}
.epreuve-video-header {
  font-family: var(--serif); font-size: .95rem; font-style: italic;
  color: var(--brun-mid); text-align: right; margin-bottom: -.4rem;
}
.epreuve-video-caption {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: var(--brun-lt); text-align: right; padding-right: .5rem;
}
.epreuve-list {
  list-style: none; margin: 1.4rem 0 2rem;
}
.epreuve-list li {
  font-family: var(--body); font-size: .95rem;
  color: var(--brun-mid); line-height: 1.75;
  padding: .25rem 0 .25rem 1.4rem; position: relative;
}
.epreuve-list li::before {
  content: '•'; position: absolute; left: .2rem;
  color: var(--sauge); font-weight: 700;
}

/* ── INDEX — SECTION TÉMOIGNAGE AINA ── */
.temoignage-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sauge);
  min-height: 70vh;
}
.temoignage-left {
  padding: 6rem var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.temoignage-right {
  position: relative; overflow: hidden;
}
.temoignage-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
}

/* ── INDEX — SECTION MOT DE L'AUTEURE ── */
.mot-section {
  background: var(--lin);
  padding: 7rem var(--px);
  text-align: center;
}
.mot-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem,3vw,2rem);
  font-style: italic; font-weight: 300;
  color: var(--brun); max-width: 800px;
  margin: 1.5rem auto 2rem; line-height: 1.55;
}
.mot-sep {
  width: 60px; height: 1px; background: var(--brun-lt);
  margin: 1.5rem auto 2.5rem; opacity: .4;
}
.mot-rejoindre-title {
  font-family: var(--body); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brun-lt); margin-bottom: 1.5rem;
}
.mot-links {
  list-style: none; margin: 0 auto; max-width: 500px;
}
.mot-links li { margin-bottom: .6rem; }
.mot-links a {
  font-family: var(--body); font-size: .92rem;
  color: var(--brun-mid);
  text-decoration: underline;
  text-decoration-color: rgba(61,42,30,.25);
  text-underline-offset: 3px;
  transition: color .2s;
}
.mot-links a:hover { color: var(--brun); }

/* ── SECTION EXPÉRIENCES INDEX (autres pages) ── */
.exp-index {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.exp-index-left {
  background: var(--lin-pale);
  padding: 6rem var(--px-inner);
  display: flex; flex-direction: column; justify-content: center;
}
.exp-index-right {
  position: relative; overflow: hidden; background: var(--brun);
}
.exp-index-right video,
.exp-index-right img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.exp-index-caption {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: rgba(242,240,235,.7); text-align: right;
}
.exp-index-caption::before {
  content: ''; display: block; width: 36px; height: 1px;
  background: rgba(242,240,235,.35); margin: 0 0 .6rem auto;
}

/* ── HERO AINA PAGE ── */
.hero-aina {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--sauge); min-height: 100vh;
}
.hero-aina-left {
  padding: calc(var(--nav-h) + 5rem) var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-aina-right { position: relative; overflow: hidden;transform: translateZ(0);
  -webkit-transform: translateZ(0) }
.hero-aina-right img { width: 100%; height: 100%; object-fit: cover; object-position: top;display: block;}
.hero-aina-right-book {
  position: absolute; bottom: -20px; right: 10px;
  background: rgba(61,42,30,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.2rem; border-radius: 1px; display: flex !important; gap: .9rem; align-items: center;
  max-width: 240px; z-index: 2;
  transform: translateZ(0);
}
.hero-aina-right-book img {
  width: 52px; height: 72px; object-fit: cover; flex-shrink: 0; min-width: 52px;
}
@media (max-width: 992px) {
  .hero-aina-right-book {
    display: none; /* Masque le livre en superposition sur mobile */
  }
}

/* ── OUVRAGES SECTION ── */
.ouvrages-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.ouvrages-images { position: relative; }
.ouvrages-img-main {
  width: 200px; height: 280px;
  object-fit: cover;
  box-shadow: -4px 0 0 rgba(61,42,30,.22), 0 16px 40px rgba(61,42,30,.2);
  display: block;
}
.ouvrages-img-festival {
  position: absolute; bottom: -2rem; right: -1rem;
  width: 130px; height: 100px; object-fit: cover;
  box-shadow: 0 8px 24px rgba(61,42,30,.2);
  border: 3px solid var(--cream);
}
.ouvrages-festival-label {
  position: absolute; bottom: -4.5rem; right: -1rem;
  font-family: var(--body); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brun-lt); text-align: center; width: 130px;
}

/* ── AVIS CAROUSEL CARDS ── */
.avis-card {
  background: var(--ardoise);
  padding: 2.2rem 1.8rem; border-radius: 1px;
  flex: 0 0 calc(33.33% - 1.5rem); margin-right: 2.2rem;
  min-height: 200px; display: flex; flex-direction: column;
}
.avis-stars { display: flex; gap: 2px; margin-bottom: 1.2rem; }
.avis-star {
  width: 12px; height: 12px; background: var(--cream);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.avis-text {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  line-height: 1.7; color: var(--cream); flex: 1; margin-bottom: 1.2rem;
}
.avis-author {
  font-family: var(--body); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(242,240,235,.6);
}
@media(max-width:760px){ .avis-card { flex: 0 0 88%; } }

/* ── SÉANCES ── */
.seances-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 580px;
}
.seances-left {
  position: relative; overflow: hidden;
}
.seances-left img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.seances-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(61,42,30,.3), transparent);
}
.seances-left-label {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(242,240,235,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(242,240,235,.2); border-radius: 1px;
  padding: .5rem 1rem;
  font-family: var(--body); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,240,235,.8);
}
.seances-right {
  background: var(--ardoise);
  padding: 5rem var(--px-inner);
  display: flex; flex-direction: column; justify-content: center;
}
.seances-list { list-style: none; margin: 2rem 0; }
.seances-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(242,240,235,.12);
  text-align: center;
}
.seances-item:last-child { border-bottom: none; }
.seances-item-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: .3rem;
}
.seances-item-detail {
  font-family: var(--body); font-size: .8rem;
  color: rgba(242,240,235,.65); margin-bottom: .2rem;
}
.seances-item-price {
  font-family: var(--serif); font-size: 1rem; font-style: italic;
  color: rgba(242,240,235,.5);
}

/* ── CRÉATIONS ── */
.creations-hero {
  min-height: 80vh;
  display: grid; grid-template-columns: 1fr 1fr;
}
.creations-left {
  background: var(--lin-pale);
  padding: calc(var(--nav-h) + 5rem) var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  display: flex; flex-direction: column; justify-content: center;
}
.creations-right {
  width: 100%;
    height: 100%;
    max-height: 80vh; /* Empêche l'image de dépasser en hauteur */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;background: var(--lin);
}
.creations-right img {
  width: 100%; height: 100%; object-fit: cover;
  transform: rotate(3deg) scale(1.1);
  transition: transform 8s ease;
}
.creations-right:hover img { transform: rotate(1deg) scale(1.05); }
.shopify-placeholder {
  background: var(--lin-pale); border: 1px dashed rgba(61,42,30,.2);
  border-radius: 1px; padding: 1.5rem; margin-top: 1.5rem;
  font-family: var(--body); font-size: .8rem; color: var(--brun-lt);
  font-style: italic; text-align: center;
}

/* ── EXPÉRIENCES PAGE ── */
.exp-section-1 {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; position: relative;
}
.exp-section-1-left {
  padding: calc(var(--nav-h) + 6rem) var(--px-inner) 5rem clamp(1.5rem,8vw,6rem);
  background: var(--lin-pale); display: flex; flex-direction: column; justify-content: center;
}
.exp-section-1-right {
  position: relative; overflow: hidden;
  background: var(--brun);height: 100%;
}
/* La vidéo seule en plein écran */
.video-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* Remplit tout l'espace sans déformer */
  z-index: 1;
}

/* Position de la légende */
.exp-caption {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(242,240,235, 0.8) !important;
  white-space: nowrap;
}

/* Fix spécifique pour PC */
@media (min-width: 861px) {
  .exp-section-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh; /* Force la hauteur de l'écran */
  }
}

/* Expérience festival */
.exp-festival {
  background: var(--sauge);
  text-align: center;
  padding: 7rem var(--px);
}
.exp-festival-steps {
  display: flex; gap: 0; margin: 4rem 0;
}
.exp-festival-step {
  flex: 1; padding: 0 2rem;
  border-right: 1px solid rgba(242,240,235,.15);
  text-align: center;
}
.exp-festival-step:last-child { border-right: none; }
.exp-festival-step-num {
  font-family: var(--serif); font-size: 2.5rem; font-style: italic;
  color: rgba(242,240,235,.2); line-height: 1; margin-bottom: .5rem; display: block;
}
.exp-festival-step-title {
  font-family: var(--body); font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(242,240,235,.6); margin-bottom: .5rem;
}
.exp-festival-step-text {
  font-family: var(--body); font-size: .95rem; color: rgba(242,240,235,.55); line-height: 1.6;
}
.exp-butterfly-frame {
  max-width: 540px; margin: 0 auto;
  position: relative; overflow: hidden; border-radius: 1px;
}
.exp-butterfly-frame img { width: 100%; height: 360px; object-fit: cover; display: block; }
.exp-butterfly-btn {
  position: absolute; bottom: 50%; right: 50%; transform: translate(50%,50%);
}

/* Nos rencontres */
.rencontres-section {
  background: var(--lin-pale);
  padding: 7rem var(--px);
}
.rencontres-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem;
}
.rencontres-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  height: 380px;
}
.rencontres-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: 1px; }

/* ── FOOTER ── */
.footer {
  background: var(--brun);
  padding: 5rem var(--px) 3rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .6; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--body); font-size: .95rem; line-height: 1.72;
  color: rgba(242,240,235,.4); max-width: 220px;
}
.footer-col-title {
  font-family: var(--body); font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(242,240,235,.3); margin-bottom: 1.4rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a {
  font-family: var(--body); font-size: .95rem;
  color: rgba(242,240,235,.4); transition: color .2s;
}
.footer-links a:hover { color: rgba(242,240,235,.85); }
.footer-social-link {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem;
  font-family: var(--body); font-size: .8rem; color: rgba(242,240,235,.4);
  transition: color .2s;
}
.footer-social-link:hover { color: rgba(242,240,235,.8); }
.footer-social-link svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.footer-social-name { font-family: var(--serif); font-style: italic; font-size: .95rem; }
.footer-social-arrow { margin-left: auto; opacity: .3; transition: opacity .2s, transform .2s; }
.footer-social-link:hover .footer-social-arrow { opacity: 1; transform: translateX(3px); }
.footer-sep { max-width: var(--max); margin: 0 auto 2rem; height: 1px; background: rgba(242,240,235,.06); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--body); font-size: .72rem; color: rgba(242,240,235,.2); }
.footer-verse { font-family: var(--serif); font-size: .95rem; font-style: italic; color: rgba(242,240,235,.18); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  /* Anciennes classes (autres pages) */
  .promesse-grid { grid-template-columns: 1fr 1fr; }
  .promesse-center { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  /* Réduire padding des sections index sur tablette */
  .promesse-left,
  .epreuve-left,
  .temoignage-left { padding-left: var(--px-inner); }
}

@media(max-width:860px){
  /* ── NAV ── */
  .nav-links { display: none; }
  .nav-sep { display: none; }
  .nav-burger { display: flex; }

  /* ── INDEX : toutes sections en colonne ── */
  .hero-index,
  .promesse-section,
  .epreuve-section,
  .temoignage-section { grid-template-columns: 1fr !important; }

  /* Hero photo devient hauteur fixe */
  .hero-right { height: 55vw; min-height: 260px; max-height: 380px; }

  /* Encart overlay : repositionné en bas sur mobile */
  .hero-inset {
    top: auto; bottom: 1rem; right: 1rem; left: 1rem;
    max-width: 100%; padding: 1rem;
  }

  /* Padding sections index */
  .hero-left {
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 3rem;
  }
  .promesse-left  { padding: 4rem var(--px) 2rem; }
  .promesse-right { padding: 0 var(--px) 4rem; }
  .epreuve-left   { padding: 4rem var(--px) 2rem; }
  .epreuve-right  { padding: 0 var(--px) 4rem; }
  .temoignage-left { padding: 4rem var(--px) 3rem; }

  /* Portrait Aina — hauteur fixe */
  .temoignage-right { height: 55vw; min-height: 280px; }

  /* Grille IG 2 colonnes conservée, réduite */
  .promesse-main-photo { aspect-ratio: 16/8; }

  /* Vidéo ratio conservé naturellement avec aspect-ratio */
  .epreuve-video-header { text-align: left; }
  .epreuve-video-caption { text-align: left; }

  /* Mot de l'auteure */
  .mot-section { padding: 5rem var(--px); }
  .mot-quote { font-size: clamp(1.1rem,4vw,1.6rem); }
  .mot-links { max-width: 100%; }

  /* Autres pages */
  .hero-aina, .ouvrages-grid,
  .seances-split, .creations-hero,
  .exp-section-1, .exp-index,
  .rencontres-header { grid-template-columns: 1fr !important; }
  .hero-aina-right, .exp-section-1-right,
  .seances-left, .creations-right { height: 55vw; min-height: 260px; max-height: 380px; }
  .promesse-grid { grid-template-columns: 1fr; }
  .exp-festival-steps { flex-direction: column; gap: 2rem; }
  .exp-festival-step { border-right: none; border-bottom: 1px solid rgba(242,240,235,.15); padding: 1.5rem 0; }
  .exp-festival-step:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .avis-card { flex: 0 0 90%; }
  .section { padding: 4rem var(--px); }
  .section-sm { padding: 3rem var(--px); }
  .exp-section-1-left, .creations-left, .seances-right {
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 3rem;
  }
  .hero-title { font-size: clamp(2.8rem,10vw,4.5rem); }
  .ouvrages-grid > * { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .rencontres-photos { grid-template-columns: 1fr 1fr; height: 240px; }
  .exp-butterfly-frame { max-width: 100%; }
  img { max-width: 100%; height: auto; }
}

@media(max-width:600px){
  :root { --px: 1.2rem; --px-inner: 1.2rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem,11vw,3.5rem); }
  .hero-right { height: 65vw; min-height: 220px; }
  .hero-inset { display: none; } /* Masqué sur très petit écran — info déjà dans le texte */

  /* Promesse */
  .promesse-left  { padding: 3.5rem var(--px) 1.5rem; }
  .promesse-right { padding: 0 var(--px) 3rem; }
  .promesse-ig-grid { gap: .5rem; }
  .promesse-list li { font-size: .9rem; }

  /* Épreuve */
  .epreuve-left  { padding: 3.5rem var(--px) 1.5rem; }
  .epreuve-right { padding: 0 var(--px) 3rem; }
  .epreuve-list li { font-size: .9rem; }

  /* Témoignage */
  .temoignage-left  { padding: 3.5rem var(--px) 3rem; }
  .temoignage-right { height: 65vw; min-height: 240px; }

  /* Mot auteure */
  .mot-section { padding: 4rem var(--px); }
  .mot-quote { font-size: 1.05rem; }
  .mot-links a { font-size: .85rem; }

  /* Boutons pleine largeur */
  .btn { font-size: .7rem; padding: .8rem 1.5rem; white-space: normal; text-align: center; }
  .promesse-newsletter-row { flex-direction: column; align-items: flex-start; gap: .8rem; }

  /* Autres pages */
  .nav-logo img { height: 36px; }
  .modal-box { padding: 2rem 1.4rem; }
  .footer-inner { gap: 2rem; }
  .hero-aina-right, .exp-section-1-right,
  .seances-left, .creations-right { height: 60vw; min-height: 220px; }
  .section { padding: 3rem var(--px); }
  .creations-left, .seances-right, .exp-section-1-left {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }
  .rencontres-photos { grid-template-columns: 1fr; height: auto; }
  .rencontres-photos img { height: 200px; }
}

@media(max-width:480px){
  :root { --px: 1.1rem; --px-inner: 1.1rem; }
  .section { padding: 2.5rem var(--px); }
  .mot-section { padding: 3rem var(--px); }
  .footer-inner { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; justify-content: center; }
  .promesse-ig-grid { grid-template-columns: 1fr 1fr; }
  .carousel-wrap { overflow-x: hidden; }
  .avis-card { flex: 0 0 95%; }
  .ouvrages-grid { gap: 2rem; }
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Images ne dépassent pas sur mobile */
@media(max-width:860px){
  .creations-right img { transform: none; }
  .exp-butterfly-frame img { height: 280px; }
}
/* ====================== FIXES FINAUX (priorité maximale) ====================== */

/* Hauteurs sécurisées sur mobile */
@media (max-width: 860px) {
  .hero-right, .temoignage-right, .hero-aina-right, .exp-section-1-right,
  .seances-left, .creations-right {
    height: 55dvh !important;
    min-height: 280px !important;
  }
  .promesse-main-photo, .temoignage-right img {
    height: 100% !important;
    width: 100% !important;
  }
}

/* ====================== HERO INSET - FIX DÉFINITIF ====================== */
.hero-inset {
  position: absolute !important;
  top: 3rem;
  right: 2rem;
  z-index: 15 !important;
  background: rgba(61,42,30,.78) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  padding: 1.8rem 1.6rem;
  max-width: 320px;
  border-radius: 2px;
  box-shadow: 10px 10px 30px rgba(61,42,30,.25);
  display: block !important;
}

.hero-inset-label {
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d4d0c4;
  margin-bottom: .8rem;
}

.hero-inset p {
  font-size: .95rem;
  line-height: 1.75;
  color: #f2f0eb;
  margin-bottom: 1rem;
}

.hero-inset p:last-child {
  margin-bottom: 0;
}

/* Version mobile de l'encart */
@media (max-width: 860px) {
  .hero-inset {
    top: auto;
    bottom: 1.8rem;
    right: 1.2rem;
    left: 1.2rem;
    max-width: none;
    padding: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-inset {
    display: none !important;
  }
}

/* ====================== PROMESSE IG GRID - FIX DÉFINITIF ====================== */
.promesse-ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 1.4rem;
}

.promesse-ig-grid img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  border-radius: 3px;
  display: block;
}

.promesse-main-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  display: block;
}

/* Sur très petits écrans */
@media (max-width: 480px) {
  .promesse-ig-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}
