/* ============================================================
   INISSE — design v4 « Bento éditorial »
   Même palette que v3 (couleurs du logo) : rouge cœur, noir
   doux, blanc/ivoire et voiles rosés. Nouvelle architecture :
   hero en mosaïque bento, produits en galerie, frise parcours,
   blog. Typo : Marcellus (titres) · Mulish (texte) · Sacramento.
   ============================================================ */

:root {
  --red: #e0474c;
  --red-deep: #c93a3f;
  --blush: #fdf0ee;
  --blush-deep: #f9dfdd;
  --rose: #f3c2c4;
  --white: #ffffff;
  --ivory: #fffcfa;
  --ink: #2b2222;
  --muted: #8b7676;

  --font-display: "Marcellus", serif;
  --font-body: "Mulish", sans-serif;
  --font-script: "Sacramento", cursive;

  --radius: 24px;
  --radius-lg: 36px;
  --shadow-soft: 0 24px 60px -28px rgba(224, 71, 76, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.is-loading, html.is-loading body { overflow: hidden; height: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--red); color: var(--white); }

img { max-width: 100%; display: block; }

.wrap { max-width: 1140px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; text-align: center; }

.script-red {
  font-family: var(--font-script);
  color: var(--red);
  font-size: 1.4em;
  line-height: 0.5;
  font-weight: 400;
}
.script-ivory {
  font-family: var(--font-script);
  color: var(--white);
  font-size: 1.4em;
  line-height: 0.5;
  font-weight: 400;
}

/* ---------- Révélations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.5s; }

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

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.96rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px -12px rgba(224, 71, 76, 0.55);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-3px); }
.btn-line {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--blush-deep);
}
.btn-line:hover { box-shadow: inset 0 0 0 2px var(--red); color: var(--red-deep); transform: translateY(-3px); }
.btn-white {
  background: var(--white);
  color: var(--red-deep);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.25);
}
.btn-white:hover { transform: translateY(-3px); }
.btn-full { width: 100%; text-align: center; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, var(--blush) 0%, var(--ivory) 72%);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.loader-heart {
  width: 84px;
  filter: drop-shadow(0 14px 26px rgba(224, 71, 76, 0.35));
  animation: loader-beat 1.5s ease-in-out infinite;
}
.loader-heart path {
  fill: var(--red);
  stroke: var(--red-deep);
  stroke-width: 2;
}
@keyframes loader-beat {
  0%, 100% { transform: scale(1); }
  22% { transform: scale(1.14); }
  40% { transform: scale(0.97); }
  55% { transform: scale(1.08); }
  70% { transform: scale(1); }
}
.loader-name {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.01em;
}
.loader-bar {
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background: var(--blush-deep);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: var(--red);
  animation: loader-slide 1.15s ease-in-out infinite;
}
@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(140%); }
  100% { transform: translateX(140%); }
}
@media (prefers-reduced-motion: reduce) {
  .loader-heart, .loader-bar span { animation: none; }
}

/* ---------- Barre de marque ---------- */
.topbar {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 1rem 0.55rem;
  line-height: 1;
}
.topbar-heart { font-size: 0.95rem; transform: translateY(1px); animation: beat 2.6s ease-in-out infinite; }
@keyframes beat {
  0%, 100% { transform: translateY(1px) scale(1); }
  10% { transform: translateY(1px) scale(1.25); }
  20% { transform: translateY(1px) scale(1); }
  30% { transform: translateY(1px) scale(1.18); }
  40% { transform: translateY(1px) scale(1); }
}
.topbar-name {
  font-family: var(--font-script);
  font-size: 1.45rem;
}
.topbar-sep { opacity: 0.6; font-size: 0.85rem; }
.topbar-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

/* ---------- Emblème inisse (cœur + script, comme le logo) ---------- */
.brand-mark {
  position: relative;
  width: 128px;
  height: 112px;
  margin-bottom: 1.1rem;
}
.bm-heart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bm-heart path { fill: var(--red); }
.bm-name {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.bm-dot {
  position: absolute;
  left: 57%;
  top: 26%;
  font-size: 0.8rem;
  color: var(--white);
  transform: rotate(-8deg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem clamp(1.2rem, 4vw, 3rem);
  /* fond opaque requis pour que le multiply du logo efface son blanc */
  background: var(--ivory);
  border-bottom: 1px solid rgba(224, 71, 76, 0.12);
}
.brand-logo { height: 54px; mix-blend-mode: multiply; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(224, 71, 76, 0.55);
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ---------- Hero bento ---------- */
.hero {
  padding: clamp(1.6rem, 4vh, 3rem) clamp(1.2rem, 4vw, 3rem) clamp(3rem, 7vh, 5rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, var(--blush), transparent 70%),
    var(--ivory);
}
.hero-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-intro {
  background: var(--blush);
  padding: clamp(2rem, 4.5vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.card-intro h1, .blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0.005em;
}
.hero-sub {
  margin-top: 1.2rem;
  max-width: 30rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--muted);
}
.hero-actions { margin-top: 1.8rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

.bento-left { display: flex; flex-direction: column; gap: 1.1rem; }
.bento-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.1rem;
}
.card-mali {
  background: var(--red);
  color: var(--white);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
}
.mali-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1;
}
.mali-num small { font-size: 0.55em; }
.mali-txt { margin-top: 0.5rem; font-weight: 700; font-size: 0.95rem; line-height: 1.4; opacity: 0.94; }

.card-photo-sm { min-height: 190px; }
.card-photo-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card-photo-sm:hover img { transform: scale(1.05); }

.card-photo-main { position: relative; min-height: clamp(420px, 58vh, 620px); }
.card-photo-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card-photo-main:hover img { transform: scale(1.04); }
.card-photo-main figcaption {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  background: rgba(255, 252, 250, 0.92);
  color: var(--red-deep);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}

.hero-strip {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.hero-strip li {
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--red-deep);
}
.hero-strip li::before { content: "♥ "; color: var(--red); }

/* ---------- Sections communes ---------- */
.section { padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 4vw, 3rem); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.88); }
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vh, 3.2rem);
  flex-wrap: wrap;
}
.section-side {
  max-width: 24rem;
  color: var(--muted);
  font-size: 1rem;
  padding-bottom: 0.4rem;
}
.section-side a { color: var(--red-deep); font-weight: 800; text-decoration: none; }
.section-side a:hover { text-decoration: underline; }

/* ---------- Mission éditoriale ---------- */
.mission { text-align: left; }
.mission-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  max-width: 54rem;
}
.mission-statement em { font-style: normal; color: var(--red); }
.mission-cols {
  margin-top: clamp(2.4rem, 6vh, 3.6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
.mcol { border-top: 2px solid var(--blush-deep); padding-top: 1.4rem; }
.mcol-num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.6rem;
}
.mcol h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; margin-bottom: 0.4rem; }
.mcol p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Produits mosaïque ---------- */
.products { background: var(--blush); border-radius: var(--radius-lg); margin: 0 clamp(0.6rem, 2vw, 2rem); }
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 30vh));
  gap: 1.1rem;
}
.mosaic-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--white);
}
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(43, 34, 34, 0.82));
}
.mosaic-cap h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}
.mosaic-cap p {
  font-size: 0.92rem;
  opacity: 0.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), margin 0.5s var(--ease);
}
.mosaic-item:hover .mosaic-cap p { max-height: 6em; margin-bottom: 0.5rem; }
.mosaic-cta {
  display: inline-block;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-top: 0.4rem;
}

/* ---------- Chiffres (bande rouge) ---------- */
.numbers {
  background: linear-gradient(140deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  padding: clamp(3rem, 7vh, 4.5rem) clamp(1.2rem, 4vw, 3rem);
  margin: clamp(3rem, 7vh, 5rem) 0 0;
}
.numbers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.num-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.num p { font-size: 0.95rem; opacity: 0.92; line-height: 1.5; max-width: 16rem; margin: 0 auto; }

/* ---------- Vidéos ---------- */
.videos { background: var(--ivory); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

/* ---------- Fil TikTok intégré ---------- */
.tiktok-feed {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tiktok-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 1.4rem;
}
.tiktok-embed {
  margin: 0 auto !important;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.tiktok-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}
.tiktok-note a { color: var(--red-deep); font-weight: 800; text-decoration: none; }
.tiktok-note a:hover { text-decoration: underline; }

/* ---------- Blog (aperçu + page) ---------- */
.blogteaser { background: var(--ivory); padding-top: 0; }
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--rose);
}
.blog-tag {
  align-self: flex-start;
  background: var(--blush);
  color: var(--red-deep);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}
.blog-card h3, .blog-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
}
.blog-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.blog-read { color: var(--red-deep); font-weight: 800; font-size: 0.92rem; }

/* page blog */
.blog-hero { padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 9vh, 6rem); }
.blog-hero-sub { color: var(--muted); max-width: 34rem; margin: 1.2rem auto 0; }
.blog-list {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.blog-card.big { grid-column: 1 / -1; background: var(--blush); border-color: transparent; }
.blog-card.big h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); max-width: 40rem; }

/* article */
.article-full { padding: clamp(2.5rem, 6vh, 4rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 9vh, 6rem); }
.wrap-article { max-width: 720px; margin: 0 auto; }
.back-blog {
  display: inline-block;
  color: var(--red-deep);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 1.6rem;
}
.back-blog:hover { text-decoration: underline; }
.article-full h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.18;
  margin: 0.9rem 0 1.4rem;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}
.article-cover img { width: 100%; height: clamp(260px, 40vh, 420px); object-fit: cover; }
.article-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.article-full h2 {
  font-size: 1.45rem;
  margin: 1.8rem 0 0.6rem;
}
.article-full p { color: #5d4f4f; margin-bottom: 1rem; }
.article-full ul { margin: 0 0 1rem 1.2rem; color: #5d4f4f; }
.article-full li { margin-bottom: 0.5rem; }
.article-full blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--rose);
  padding-left: 1.2rem;
  margin: 1.6rem 0;
}
.article-cta {
  margin-top: 2.4rem;
  background: var(--blush);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.article-cta p { margin-bottom: 1rem; color: var(--ink); font-weight: 600; }

/* ---------- Sensibilisation pleine image ---------- */
.awareness {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 4vw, 3rem);
  color: var(--white);
}
.awareness-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.awareness-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(201, 58, 63, 0.92) 0%, rgba(224, 71, 76, 0.72) 55%, rgba(224, 71, 76, 0.35) 100%);
}
.awareness-content { position: relative; z-index: 1; max-width: 560px; }
.awareness-content h2 { color: var(--white); margin-bottom: 1rem; }
.awareness-content p { color: rgba(255, 255, 255, 0.94); margin-bottom: 1.8rem; font-size: 1.05rem; }

/* ---------- Fondatrice + frise ---------- */
.founder { background: var(--ivory); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 96px;
}
.founder-photo img { width: 100%; height: clamp(380px, 60vh, 560px); object-fit: cover; }
.founder-text h2 { margin-bottom: 0.8rem; }
.founder-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.5;
  border-left: 3px solid var(--rose);
  padding-left: 1.2rem;
  margin: 1rem 0 1.8rem;
}

.timeline { list-style: none; position: relative; margin: 0 0 1.6rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--blush-deep);
}
.timeline li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.5rem;
}
.tl-dot {
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--blush);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.3;
}
.timeline p { color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }

.founder-socials { display: flex; gap: 0.7rem; }
.founder-socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blush-deep);
  color: var(--red-deep);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.founder-socials a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.founder-socials svg { width: 19px; height: 19px; }

/* ---------- Contact ---------- */
.contact { background: var(--blush); border-radius: var(--radius-lg); margin: 0 clamp(0.6rem, 2vw, 2rem) clamp(2rem, 5vh, 3rem); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.contact-text h2 { margin-bottom: 0.9rem; }
.contact-text > p { color: var(--muted); font-size: 1.02rem; }
.contact-list { list-style: none; margin-top: 1.6rem; }
.contact-list li { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.c-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.1rem;
}
.contact-list a, .contact-list li > span:not(.c-label) {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.06rem;
  text-decoration: none;
}
.contact-list a:hover { color: var(--red); }

.contact-socials { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--red-deep);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.social-pill:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.social-pill svg { width: 17px; height: 17px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: fit-content;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.9rem;
}
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid var(--blush-deep);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 71, 76, 0.12);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.2rem, 4vw, 3rem) 2rem;
  background: var(--ivory);
  border-top: 1px solid var(--blush-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 2rem;
}
.footer-logo { height: 64px; mix-blend-mode: multiply; }
.footer-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--red);
  line-height: 1;
  margin-top: 0.3rem;
}
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}
.footer-nav a:hover { color: var(--red); }
.footer-social-col { display: flex; gap: 0.7rem; }
.footer-social-col a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--red-deep);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-social-col a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }
.footer-social-col svg { width: 19px; height: 19px; }
.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid var(--blush-deep);
  padding-top: 1.6rem;
}

/* ---------- Badge du créateur du site ---------- */
.maker-badge {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.maker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.maker-pill:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  box-shadow: 0 10px 22px -14px rgba(224, 71, 76, 0.4);
}
.maker-pill strong { color: var(--red-deep); font-weight: 800; }
.maker-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1;
}
.maker-wa { color: #25D366; font-weight: 800; padding-left: 0.9rem; }
.maker-wa svg { width: 16px; height: 16px; }
.maker-wa .maker-text { color: var(--ink); font-weight: 700; }

/* ---------- Retour en haut ---------- */
.back-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 16px 34px -12px rgba(224, 71, 76, 0.6);
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s;
}
.back-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-top:hover { background: var(--red-deep); transform: translateY(-3px) scale(1.05); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-bento { grid-template-columns: 1fr; }
  .card-photo-main { min-height: clamp(320px, 48vh, 480px); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .mission-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .mosaic-item { min-height: 300px; }
  .mosaic-item.tall { grid-row: auto; min-height: 380px; }
  .mosaic-cap p { max-height: 6em; }
  .numbers-row { grid-template-columns: 1fr; gap: 2rem; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 640px; margin: 0 auto; }
  .blog-cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .blog-list { grid-template-columns: 1fr; }
  .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .founder-photo { position: static; max-width: 440px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: minmax(0, 380px); }
  .bento-row { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 71px;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 40;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1.25rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
