/* =========================================================
   MUMMY BOOM — Feuille de style
   ========================================================= */

:root {
  --rose:         #F9A8C4;
  --rose-deep:    #F06292;
  --rose-light:   #FDE8F0;
  --vert:         #ECFDF5;
  --vert-doux:    #D1FAE5;
  --vert-accent:  #6EE7B7;
  --ink:          #2D1B2E;
  --ink-soft:     #7A5C6E;
  --muted:        #C4A8B4;
  --white:        #FFFFFF;

  --teal:         #1F8A9B;

  --shadow-rose:  0 6px 28px rgba(249, 168, 196, .15);
  --shadow-rose-strong: 0 18px 48px rgba(249, 168, 196, .32);
  --border-rose:  1.5px solid rgba(249, 168, 196, .25);
  --radius-card:  20px;
  --radius-pill:  999px;

  --ff-title:  'Playfair Display', Georgia, serif;
  --ff-body:   'Nunito', system-ui, -apple-system, sans-serif;
  --ff-script: 'Dancing Script', cursive;
}

/* --------- Reset --------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-title); color: var(--ink); margin: 0 0 .6em; line-height: 1.2; text-wrap: balance; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* --------- Buttons --------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid var(--rose);
}
.btn-primary {
  background: var(--vert-accent);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(110, 231, 183, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(110, 231, 183, .42); background: #4dd9a0; }
.btn-outline {
  background: transparent;
  color: var(--vert-accent);
  border: 2px solid var(--vert-accent);
}
.btn-outline:hover { background: var(--vert-doux); transform: translateY(-2px); color: var(--ink); border-color: var(--vert-accent); }
.btn-soft {
  background: var(--rose-light);
  color: var(--rose-deep);
}
.btn-soft:hover { background: var(--vert-doux); color: var(--ink); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(45, 27, 46, .04);
  border-bottom: 1px solid rgba(249, 168, 196, .15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.logo {
  font-family: var(--ff-script);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
  white-space: nowrap;
}
.logo-sparkle { display: inline-block; font-size: .9em; transform: translateY(-2px); }
.main-nav {
  display: flex; gap: 32px;
  flex: 1; justify-content: flex-end;
}
.main-nav a {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--rose-deep); }
.main-nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; border-radius: 2px;
  background: var(--rose-deep);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-magazine { padding: 10px 22px; font-size: 0.9rem; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(249, 168, 196, .2);
  background: #fff;
}
.mobile-drawer a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(249, 168, 196, .15);
}
.mobile-drawer a.btn { margin-top: 12px; justify-content: center; border-bottom: none; color: #fff; }
.mobile-drawer.open { display: flex; }

/* =========================================================
   APP ROOT
   ========================================================= */
.app-root { min-height: 60vh; }

/* =========================================================
   HERO (modernisé avec éléments flottants)
   ========================================================= */
.hero {
  background: linear-gradient(135deg, #FDE8F0 0%, #FFFFFF 50%, #ECFDF5 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: visible;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .5); filter: blur(50px);
  pointer-events: none;
}
.hero::before { width: 320px; height: 320px; top: -80px; right: -80px; }
.hero::after  { width: 240px; height: 240px; bottom: -100px; left: -60px; }

/* Polaroïds flottantes */
.hero-polaroid {
  position: absolute;
  background: #fff;
  padding: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-radius: 4px;
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
}
.hero-polaroid:nth-child(1) { top: 60px; left: 10%; width: 120px; animation-delay: 0s; transform: rotate(-8deg); }
.hero-polaroid:nth-child(2) { top: 120px; right: 8%; width: 130px; animation-delay: 0.5s; transform: rotate(6deg); }

.hero-polaroid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 6px;
}
.hero-polaroid p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}

/* Nuages colorés flottants */
.hero-cloud {
  position: absolute;
  font-size: 3rem;
  opacity: 0.6;
  animation: cloudFloat 8s ease-in-out infinite;
}
.hero-cloud:nth-child(3) { top: 40px; left: 5%; animation-delay: 0s; }
.hero-cloud:nth-child(4) { bottom: 80px; right: 12%; animation-delay: 1s; }
.hero-cloud:nth-child(5) { top: 50%; left: 15%; animation-delay: 2s; }

@keyframes cloudFloat {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(20px); }
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; align-items: center;
}
.hero-tag {
  font-family: var(--ff-script);
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-bottom: 8px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 em { color: var(--rose-deep); font-style: italic; }
.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero image / magazine cover */
.cover-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(249, 168, 196, .3);
  transition: transform .4s, box-shadow .4s;
  background: #fff;
}
.cover-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(249, 168, 196, .42);
}
.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover-badge {
  position: absolute;
  top: 18px; right: -8px;
  background: var(--vert-accent);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(110, 231, 183, .5);
  transform: rotate(8deg);
  z-index: 2;
}

/* =========================================================
   SECTIONS GÉNÉRIQUES
   ========================================================= */
section.section { padding: 80px 0; }
section.section--alt { background: #fff; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.section-head .lede {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --------- Stats --------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid rgba(249, 168, 196, .25);
  border-bottom: 1px solid rgba(249, 168, 196, .25);
}
.stat-num {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --------- Rubriques grid --------- */
.rubriques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.rubrique-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: var(--radius-card);
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 3px solid #E66BA1;
}
.rubrique-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,46,0.5), rgba(45,27,46,0.3));
  z-index: 0;
  opacity: 1;
}
.rubrique-card:hover::before {
  opacity: 0.6;
}
.rubrique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(230, 107, 161, 0.3);
  border-color: #d54a8a;
}
.rubrique-icon { display: none; }
.rubrique-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  color: #6EE7B7;
  margin-bottom: 16px;
  font-weight: 700;
}
.rubrique-card p {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 0 20px 0;
}
.rubrique-footer {
  position: relative;
  z-index: 1;
}
.rubrique-btn {
  background: #E66BA1;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(230, 107, 161, 0.3);
}
.rubrique-btn:hover {
  background: #d54a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 107, 161, 0.5);
}
.rubrique-link { display: none; }
.rubrique-badge { display: none; }
.rubrique-content { display: none; }
.rubrique-cta { display: none; }
.rubrique-card:hover .rubrique-link { gap: 10px; color: var(--rose-deep); }

/* =========================================================
   ARTICLES
   ========================================================= */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.article-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  position: relative;
  border: 2px solid var(--rose);
}
.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}
.article-card:hover .article-card-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.9) 100%);
}
.article-card:hover .article-card-title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 180, 136, 0.6);
}
.article-card-bg {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 400px;
}
.article-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.article-card-content {
  width: 100%;
  color: white;
}
.article-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  color: #6EE7B7;
}
.article-card-excerpt {
  font-size: 0.95rem;
  margin: 0 0 16px;
  line-height: 1.5;
  opacity: 0.98;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-card-cta {
  background: #E66BA1;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(230, 107, 161, 0.3);
}
.article-card-cta:hover {
  background: #d54a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 107, 161, 0.5);
}
.article-thumb-icon { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,.15)); }
.article-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--rose-deep);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .3px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.article-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.article-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); display: inline-block; }
.article-card h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.article-excerpt {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-read-btn {
  background: var(--rose-light);
  color: var(--rose-deep);
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  transition: all .3s ease;
}
.article-card:hover .article-read-btn {
  background: var(--vert-doux);
  color: var(--ink);
}

/* Article thumbs by category — pastel gradients */
.thumb-dossiers      { background: linear-gradient(135deg, #c2a3c7, #f4b6cd); }
.thumb-psycho        { background: linear-gradient(135deg, #f4b6cd, #b8dac6); }
.thumb-voyager       { background: linear-gradient(135deg, #b8dac6, #97c8d8); }
.thumb-sorties       { background: linear-gradient(135deg, #f5c98f, #f4b6cd); }
.thumb-agenda        { background: linear-gradient(135deg, #cdb8e0, #b8dac6); }
.thumb-paroles       { background: linear-gradient(135deg, #f4b6cd, #f5c98f); }
.thumb-coup-de-coeur { background: linear-gradient(135deg, #f4b6cd, #c2a3c7); }

/* See-all button row */
.center-cta { text-align: center; margin-top: 50px; }

/* =========================================================
   NOTRE HISTOIRE SECTION (HOME)
   ========================================================= */
.about-section-home {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-col-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
  color: var(--rose-deep);
}
.about-col-visual {
  position: relative;
}
.about-visual-box {
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #FDE8F0 0%, #ECFDF5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(249, 168, 196, .2);
  border: 1.5px solid rgba(249, 168, 196, .3);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .about-section-home { grid-template-columns: 1fr; gap: 40px; }
  .about-visual-box { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .about-visual-box { max-width: 100%; }
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter-block {
  background: linear-gradient(135deg, #FDE8F0, #ECFDF5);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  margin: 60px 40px 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 168, 196, .3);
}
.newsletter-block::before, .newsletter-block::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5;
}
.newsletter-block::before { background: var(--rose); width: 200px; height: 200px; top: -60px; left: -60px; }
.newsletter-block::after  { background: var(--vert-accent); width: 240px; height: 240px; bottom: -80px; right: -80px; }
.newsletter-block > * { position: relative; z-index: 1; }
.newsletter-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.newsletter-block p { color: var(--ink-soft); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap;
  max-width: 580px; margin: 0 auto;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1; min-width: 180px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(249, 168, 196, .4);
  background: #fff;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px rgba(240, 98, 146, .15);
}
.newsletter-feedback {
  min-height: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  margin-top: 6px;
}
.newsletter-rgpd {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* =========================================================
   BLOG — Filter bar
   ========================================================= */
.filter-bar {
  background: var(--ink);
  position: relative;
  z-index: 50;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.filter-scroll {
  display: flex; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 24px;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all .25s ease;
  white-space: nowrap;
}
.filter-chip:hover { background: rgba(249, 168, 196, .2); color: #fff; border-color: rgba(249, 168, 196, .5); }
.filter-chip.active {
  background: var(--rose);
  color: var(--ink);
  border-color: var(--rose);
  font-weight: 700;
}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-top: 32px;
}
.breadcrumb a:hover { color: var(--rose-deep); }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }

.article-page-hero {
  padding: 0 0 40px;
  text-align: center;
  max-width: 820px; margin: 0 auto;
}
.article-page-hero .article-cat-badge {
  display: inline-block;
  background: var(--rose-deep); color: #fff;
  font-weight: 700; font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.article-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.article-page-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
}
.article-page-meta strong { color: var(--rose-deep); font-weight: 700; }
.article-page-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  margin: 40px 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  color: #fff;
  box-shadow: var(--shadow-rose);
}
.article-content {
  max-width: 760px; margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}
.article-content h2 {
  font-size: 1.6rem;
  color: var(--rose-deep);
  margin-top: 2em;
  margin-bottom: .6em;
}
.article-content p { margin: 0 0 1.2em; }
.article-content blockquote {
  border-left: 4px solid var(--rose);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.article-content .placeholder-note {
  background: var(--rose-light);
  border: 1.5px dashed var(--rose);
  border-radius: 14px;
  padding: 18px 22px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}

.author-card {
  display: flex; align-items: center; gap: 20px;
  max-width: 760px; margin: 60px auto 0;
  padding: 24px;
  background: linear-gradient(135deg, var(--rose-light), var(--vert));
  border-radius: 18px;
  border: var(--border-rose);
}
.author-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--vert-accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(240, 98, 146, .3);
}
.author-name { font-family: var(--ff-title); font-size: 1.3rem; margin-bottom: 4px; }
.author-role { color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   CATEGORY HERO
   ========================================================= */
.category-hero {
  text-align: center;
  background: linear-gradient(135deg, #FDE8F0 0%, #ECFDF5 100%);
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.category-hero::before, .category-hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.5); filter: blur(60px); pointer-events: none;
}
.category-hero::before { width: 280px; height: 280px; top: -100px; left: -100px; }
.category-hero::after  { width: 320px; height: 320px; bottom: -130px; right: -100px; }
.category-hero > * { position: relative; z-index: 1; }
.category-hero .cat-icon {
  font-size: 4.5rem;
  margin-bottom: 16px;
  display: inline-block;
}
.category-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}
.category-hero .cat-desc {
  color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 18px;
  font-size: 1.1rem;
}
.category-hero .cat-count {
  display: inline-block;
  padding: 6px 18px;
  background: var(--white);
  border-radius: var(--radius-pill);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1.5px solid var(--rose);
}

/* =========================================================
   NOTRE HISTOIRE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.anne-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.4), transparent 50%),
    linear-gradient(160deg, #F9A8C4 0%, #FDE8F0 50%, #6EE7B7 100%);
  display: flex; align-items: flex-end; justify-content: center;
  font-size: 7rem;
  padding-bottom: 30px;
  color: rgba(255,255,255,.95);
  box-shadow: 0 24px 60px rgba(240, 98, 146, .25);
}
.about-quote {
  background: var(--rose-light);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  margin: 80px auto;
  max-width: 900px;
  border: var(--border-rose);
  position: relative;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: 10px; left: 30px;
  font-family: var(--ff-title);
  font-size: 8rem;
  color: var(--rose);
  line-height: 1;
  opacity: .5;
}
.about-quote q {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
  quotes: none;
}
.about-quote q::before, .about-quote q::after { content: none; }
.about-quote .quote-author {
  margin-top: 24px;
  font-family: var(--ff-script);
  font-size: 1.4rem;
  color: var(--rose-deep);
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: var(--border-rose);
  box-shadow: var(--shadow-rose);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-rose-strong); }
.value-card .value-icon {
  font-size: 2.4rem;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--rose-light), var(--vert));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* Value card with real photo */
.value-card--photo { 
  padding: 0; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column;
  position: relative;
  min-height: 300px;
  align-items: flex-start;
  justify-content: flex-start;
}
.value-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.7) 100%);
  z-index: 1;
  opacity: 1;
}
.value-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.value-photo img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.value-photo::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: rgba(249, 168, 196, 0);
  transition: background .35s ease;
  pointer-events: none;
}
.value-card--photo:hover .value-photo img { transform: scale(1.06); }
.value-card--photo:hover .value-photo::after { background: rgba(249, 168, 196, .15); }
.value-body { 
  padding: 28px 28px 32px; 
  text-align: left;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.value-body h3 { 
  margin-bottom: 10px;
  color: #ffffff;
}
.value-body p { 
  color: #ffffff; 
  margin: 0;
}

/* Valeurs — texte simple (sans cards) */
.about-values-text {
  max-width: 720px;
  margin: 0 auto;
}
.about-values-text h3 {
  font-family: var(--ff-title);
  font-size: 1.2rem;
  color: var(--rose-deep);
  margin: 28px 0 8px;
}
.about-values-text h3:first-child { margin-top: 0; }
.about-values-text p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   BANDEAU CONSENTEMENT COOKIES
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, calc(100vw - 32px));
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(249, 168, 196, .35);
  box-shadow: 0 16px 48px rgba(45, 27, 46, .18);
  z-index: 9000;
  padding: 20px 24px;
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
.cookie-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.cookie-text strong {
  font-family: var(--ff-title);
  font-size: 1rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.cookie-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cookie-link {
  color: var(--rose-deep);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}
.cookie-accept {
  background: var(--vert-accent);
  color: #fff;
  border-color: var(--vert-accent);
}
.cookie-accept:hover { background: #4dd9a0; transform: translateY(-1px); }
.cookie-refuse {
  background: transparent;
  color: var(--ink-soft);
  border-color: rgba(149, 115, 130, .35);
}
.cookie-refuse:hover { border-color: var(--rose-deep); color: var(--rose-deep); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* =========================================================
   COVER STACK (card swiper 3D)
   ========================================================= */
.cover-stack {
  position: relative;
  width: 362px;
  height: 482px;
  touch-action: none;
  cursor: grab;
  user-select: none;
  /* variables partagées par les cartes enfants */
  --card-perspective: 700px;
  --card-z-offset:    12px;
  --card-y-offset:    8px;
  --card-swap-dur:    350ms;
}
.cover-stack:active { cursor: grabbing; }

.image-card {
  position: absolute;
  top: 16px; left: 16px;
  width: 330px;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(200, 150, 170, .25);
  box-shadow: 0 8px 32px rgba(249, 168, 196, .28);
  will-change: transform, opacity;
  transform:
    perspective(var(--card-perspective))
    translateZ(calc(-1 * var(--card-z-offset) * var(--i, 1)))
    translateY(calc(var(--card-y-offset) * var(--i, 1)))
    translateX(var(--swipe-x, 0px))
    rotateY(var(--swipe-rotate, 0deg));
  transition:
    transform var(--card-swap-dur) ease,
    opacity   var(--card-swap-dur) ease;
}
.image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* =========================================================
   CONTACT
   ========================================================= */
.partnership-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 60px;
}
.partnership-card {
  background: transparent;
  border-radius: var(--radius-card);
  border: none;
  box-shadow: none;
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.partnership-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-rose-strong); }
.partnership-card .pcard-icon {
  font-size: 2.2rem;
  width: 0;
  height: 0;
  display: none;
}
.partnership-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.partnership-card p { color: #000; margin: 0; }

.contact-form {
  max-width: 720px; margin: 0 auto;
  background: #FDE8F0;
  border: 2px solid #6EE7B7;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-rose);
  padding: 40px;
}
.contact-feedback {
  min-height: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0 4px;
  border-radius: 8px;
}
.contact-feedback--success { color: #059669; }
.contact-feedback--error   { color: var(--rose-deep); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000000;
  margin-bottom: 8px;
  letter-spacing: .2px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #6EE7B7;
  border-radius: 12px;
  background: #ffffff;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .12);
}
.contact-coords {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  margin: 40px auto 0;
  text-align: center;
  color: var(--ink-soft);
}
.contact-coords a { color: var(--rose-deep); font-weight: 700; }
.contact-coords a:hover { text-decoration: underline; }

/* =========================================================
   MENTIONS LÉGALES
   ========================================================= */
.legal-page {
  max-width: 820px; margin: 0 auto;
  padding: 60px 24px;
}
.legal-page h1 { font-size: 2.4rem; margin-bottom: 12px; }
.legal-page h2 {
  font-size: 1.4rem;
  color: var(--rose-deep);
  margin-top: 2.2em;
  margin-bottom: .6em;
}
.legal-page p, .legal-page li { color: var(--ink); line-height: 1.7; }
.legal-page hr {
  border: none;
  height: 1px;
  background: rgba(249, 168, 196, .3);
  margin: 32px 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 70px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--ff-script);
  font-size: 2rem;
  color: var(--rose);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.95);
  margin: 0 0 14px;
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  max-width: 360px;
  margin: 0;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255, 255, 255, .7);
  font-size: 0.92rem;
  transition: color .25s;
}
.footer-col li a:hover { color: var(--vert-accent); }
.footer-handle { color: rgba(255,255,255,.45); font-size: 0.82rem; }
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}
.footer-social a {
  color: rgba(255,255,255,.65);
  transition: color .25s, transform .25s;
  display: flex;
}
.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  background: rgba(0, 0, 0, .2);
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}
.footer-bottom a:hover { color: var(--vert-accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-inner .cover-frame { max-width: 320px; margin: 0 auto; }
  .cover-stack { width: 320px; height: 430px; margin: 0 auto; }
  .rubriques-grid, .articles-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .anne-photo { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .main-nav, .btn-magazine { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 12px 0; }
  .logo { font-size: 1.7rem; }
  .hero { padding: 50px 0 60px; }
  section.section { padding: 56px 0; }
  .stats { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .rubriques-grid, .articles-grid, .values-grid, .partnership-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .newsletter-block { margin: 40px 20px 60px; padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-quote { padding: 40px 24px; }
}

/* =========================================================
   PRESS / PARTNERS MARQUEE
   ========================================================= */
.press-section {
  background: #FDE8F0;
  padding: 70px 0 80px;
  border-top: 1px solid rgba(249, 168, 196, .25);
  border-bottom: 1px solid rgba(249, 168, 196, .25);
  position: relative;
  overflow: hidden;
}
.press-section .section-head { margin-bottom: 36px; }

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: pressMarquee 25s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes pressMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.press-logo {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid rgba(249, 168, 196, .3);
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
  letter-spacing: .2px;
  white-space: nowrap;
  transition: color .25s, border-color .25s, transform .25s;
}
.press-logo:hover {
  color: var(--rose-deep);
  border-color: var(--rose);
  transform: translateY(-2px);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.fade-in { animation: fadeUp .55s ease both; }
.fade-in-d1 { animation: fadeUp .55s ease .08s both; }
.fade-in-d2 { animation: fadeUp .55s ease .16s both; }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.pag-btn {
  padding: 10px 24px;
  border: 2px solid var(--rose);
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-deep);
  background: transparent;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.pag-btn:hover:not(:disabled) {
  background: var(--rose-light);
  transform: translateY(-2px);
}
.pag-btn:disabled {
  opacity: .32;
  cursor: not-allowed;
}
.pag-pages {
  display: flex;
  gap: 8px;
}
.pag-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-deep);
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s;
}
.pag-num:hover:not(.active) {
  background: var(--rose-light);
  transform: translateY(-2px);
}
.pag-num.active {
  background: var(--rose-deep);
  color: #fff;
  border-color: var(--rose-deep);
  box-shadow: 0 6px 18px rgba(240, 98, 146, .3);
}

/* =========================================================
   PÉTALES EN ARRIÈRE-PLAN
   ========================================================= */
.petal {
  position: absolute;
  top: -50px;
  animation: fall linear infinite;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

@keyframes fall {
  0%   { transform: translateY(0)    translateX(0)    rotate(0deg);   opacity: 0; }
  8%   { opacity: var(--peak-opacity, 0.4); }
  92%  { opacity: var(--peak-opacity, 0.4); }
  100% { transform: translateY(105vh) translateX(30px) rotate(540deg); opacity: 0; }
}

/* Article images - centered and medium size */
.article-content div[style*="margin:40px"] img {
  display: block !important;
  margin: 40px auto !important;
  max-width: 450px !important;
  width: 100% !important;
}
