/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #F2EEE4;
  --bg-white:     #FFFFFF;
  --ink:          #2D281E;
  --ink-muted:    #6E695F;
  --gold:         #C8A05C;
  --border:       #DCD7CD;
  --black:        #000000;
  --sable-200:    #EBE6DC;
  --text-secondary: #6E7A84;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:    8px;
  --radius-btn:   12px;
  --radius-md:    16px;
  --radius-card:  32px;

  --max-w:        1440px;
  --gutter:       80px;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav-wrapper.scrolled { border-color: var(--border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

/* Mareva : Cormorant Garamond 40px Regular */
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

/* Tagline : DM Sans 16px, letter-spacing serré */
.nav-logo-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--ink-muted);
  letter-spacing: -0.04em;
}

.btn-appstore-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-appstore-nav:hover { opacity: .85; }

.btn-appstore-nav img {
  height: 16px;
  width: auto;
  flex-shrink: 0;
}

/* Desktop: texte long visible, mobile caché */
.nav-btn-desktop { display: inline; }
.nav-btn-mobile  { display: none; }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 720px;
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 1;
  flex: 0 0 55%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.047em;
}

.hero-title .line-1 {
  color: var(--ink);
  font-weight: 500;
}

.hero-title .line-2 {
  color: var(--gold);
  font-weight: 700;
}

.hero-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 100%;
}

/* CTA aligné sur lui-même, disclaimer centré par rapport au bouton */
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Image en arrière-plan, ferrée à droite, aucun impact sur le layout */
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  pointer-events: none;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 0 30px;
  height: 60px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: opacity .2s;
}
.btn-appstore:hover { opacity: .85; }

.btn-appstore img {
  height: 20px;
  width: auto;
  flex-shrink: 0;
}

/* Disclaimer centré par rapport au bouton via width: 100% sur le wrapper */
.hero-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  text-align: center;
  width: 100%;
}

/* ─── Content wrapper ────────────────────────────────────── */
.content {
  display: flex;
  flex-direction: column;
  gap: 104px;
  padding: 64px var(--gutter) 104px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── Reviews banner ─────────────────────────────────────── */
.reviews-wrapper {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.review-card {
  flex: 1;
  min-width: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-stars {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}

.review-stars img {
  width: 16px;
  height: 16px;
}

.review-quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.review-quote strong { font-weight: 600; color: inherit; }

.review-author {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-muted);
}

.review-author strong { font-weight: 600; color: inherit; }

/* ─── Features wrapper ───────────────────────────────────── */
.features-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--ink);
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.feature-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
}

.feature-img {
  flex-shrink: 0;
  width: 700px;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 48px;
}

.feature-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.feature-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.05em;
  /* couleur muted — le strong ne change PAS de couleur */
  color: var(--ink-muted);
}

/* strong dans feature-body : même couleur que le pavé, pas d'override */
.feature-body strong {
  font-weight: 600;
  color: inherit;
}

.testimonial {
  border-left: 2px solid var(--border);
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.testimonial-quote strong { font-weight: 600; }

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink-muted);
}

.testimonial-author strong {
  font-weight: 600;
  color: var(--ink-muted);
}

/* ─── Benefits wrapper ───────────────────────────────────── */
.benefits-wrapper {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.benefit-card {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-illu {
  height: 66px;
  display: flex;
  align-items: center;
}

.benefit-illu img {
  max-height: 66px;
  width: auto;
  object-fit: contain;
}

.benefit-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.benefit-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.benefit-body strong { font-weight: 600; }

/* ─── Bandeau ─────────────────────────────────────────────── */
.bandeau {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.bandeau-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.047em;
  color: var(--ink);
}

.bandeau-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: var(--ink-muted);
}

/* même gap que entre titre et sous-titre → 16px */
.bandeau-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-top: 0;
}

.bandeau-disclaimer {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  text-align: center;
  max-width: 480px;
}

/* ─── Hero — note Android sous le CTA App Store ──────── */
.hero-android-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  text-align: center;
  width: 100%;
}
.hero-android-note a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-android-note a:hover { color: var(--ink); }

/* ─── Waitlist Android (specs Figma node 7252:4765) ──── */
.android-waitlist {
  background: var(--sable-200);
  border-radius: var(--radius-card);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.android-logo {
  width: 92px;
  height: 51px;
}
.android-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.android-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  text-align: center;
}
.android-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.042em;
  color: var(--ink);
}
.android-intro {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-muted);
}
/* Pilule blanche qui contient champ + bouton — 448x48, bouton 40px */
.android-form {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-white);
  border-radius: var(--radius-btn);
  height: 48px;
  padding-left: 12px;
  padding-right: 4px;
  width: 448px;
  max-width: 100%;
}
.android-form input[type="email"] {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.android-form input[type="email"]::placeholder { color: var(--text-secondary); }
/* Retire toute apparence de remplissage automatique du navigateur */
.android-form input[type="email"]:-webkit-autofill,
.android-form input[type="email"]:-webkit-autofill:hover,
.android-form input[type="email"]:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-white) inset;
  box-shadow: 0 0 0 1000px var(--bg-white) inset;
  transition: background-color 9999s ease-in-out 0s;
}
.android-form button {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: var(--text-secondary);
  border: none;
  border-radius: var(--radius-sm);
  height: 40px;
  padding: 0 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.android-form button:hover { opacity: 0.88; }
.android-form button:disabled { opacity: 0.5; cursor: default; }
.android-notice {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
}
.android-status {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
/* Vide = pas de ligne réservée → évite un padding bas fantôme */
.android-status:empty { display: none; }
.android-status.error { color: #B4402E; }

/* ─── Footer ──────────────────────────────────────────────── */

/* Ligne séparatrice full-width — en dehors du max-width */
.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Tout le footer dans le même style — DM Sans 13px ink-muted */
.footer-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink-muted);
}

.footer-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  transition: color .2s;
}
.footer-link:hover { color: var(--ink); }

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.footer-insta svg { display: block; flex-shrink: 0; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }

  .hero { min-height: auto; padding: 0 24px 0 40px; }
  .hero-image { width: 48vw; height: 48vw; }
  .hero-title { font-size: 48px; }
  .hero-desc { font-size: 18px; max-width: 100%; }
  .section-title { font-size: 48px; }
  .bandeau-title { font-size: 48px; }

  .feature-row { max-width: 100%; }
  .feature-img { width: 50%; height: auto; min-height: 400px; }
  .feature-heading { font-size: 36px; }
}

.mob-br { display: none; }

@media (max-width: 768px) {
  .mob-br { display: block; }
  :root { --gutter: 24px; }

  .nav { padding: 16px 24px; }
  .nav-logo { justify-content: center; }
  .nav-logo-name { font-size: 30px; }
  .nav-logo-tagline { display: none; }
  .btn-appstore-nav { font-size: 13px; padding: 10px 14px; }
  .nav-btn-desktop { display: none; }
  .nav-btn-mobile  { display: inline; }

  .hero {
    flex-direction: column;
    padding: 40px 24px 0;
    min-height: auto;
    gap: 40px;
    overflow: visible;
  }
  .hero-text {
    position: static;
    flex: none;
    max-width: 100%;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .hero-title { font-size: 40px; }
  .hero-desc { font-size: 17px; max-width: 100%; text-align: center; }
  .hero-cta { align-items: center; }
  .hero-cta-inner { align-items: center; }
  .btn-appstore { justify-content: center; font-size: 16px; }
  /* Image sort du background et s'affiche en dessous du texte */
  .hero-image {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    z-index: 0;
  }

  .content { gap: 64px; padding: 48px 24px 64px; }

  .section-title { font-size: 36px; }

  .feature-row {
    flex-direction: column !important;
    gap: 32px;
    max-width: 100%;
  }
  .feature-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    min-height: auto;
  }
  .feature-text { padding: 0; }
  .feature-heading { font-size: 36px; }
  .feature-body { font-size: 17px; }

  .benefits-wrapper { flex-direction: column; }
  .benefit-heading { font-size: 36px; }

  /* Cartes témoignages : swipe horizontal au lieu de l'empilement */
  .reviews-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px;
    /* scroll-padding, pas margin sur les cartes : c'est la seule valeur
       que le moteur de scroll-snap respecte réellement pour positionner
       le repos après un swipe, y compris sur la 1ère et la dernière carte. */
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
  }
  .reviews-wrapper::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .bandeau-title { font-size: 36px; }
  .bandeau-subtitle { font-size: 17px; }
  .btn-appstore { font-size: 16px; justify-content: center; width: 100%; max-width: 320px; }

  .android-waitlist { padding: 48px 24px; gap: 24px; }
  .android-text h2 { font-size: 36px; }
  /* Mobile : on éclate la pilule — champ pleine largeur, bouton dessous */
  .android-form {
    flex-direction: column;
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    gap: 8px;
  }
  .android-form input[type="email"] {
    flex: none;
    width: 100%;
    height: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-btn);
    padding: 0 16px;
  }
  .android-form button {
    width: 100%;
    height: 48px;
    border-radius: var(--radius-btn);
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    text-align: center;
  }
  .footer-left { justify-content: center; }
  .footer-right { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .footer-insta { flex-basis: 100%; justify-content: center; margin-top: 4px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .bandeau-title { font-size: 28px; }
  .android-text h2 { font-size: 28px; }
  .feature-heading { font-size: 28px; }
  .benefit-heading { font-size: 28px; }
}

a.nav-logo { text-decoration: none; }

/* ─── Blog / Ressources ───────────────────────────────── */
.blog-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px 80px;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--ink-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--ink); }

.blog-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
  max-width: 620px;
  margin: 48px auto 40px;
}

/* Grille — 1280 max, centrée, cartes de hauteur égale, gap 16 */
.post-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.post-card-img {
  aspect-ratio: 416 / 280;
  overflow: hidden;
  background: var(--bg-white);
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.03); }

.post-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 32px 32px;
}

.post-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--ink);
  transition: color .2s;
}
.post-card:hover .post-card-title { color: var(--gold); }

.post-card-excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.post-card-link {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gold);
}

/* Section CTA bas de page = hero de la home, titre réduit à 48 */
.hero-title--sm { font-size: 48px; }

/* Blog — responsive */
@media (max-width: 1100px) {
  .hero-title--sm { font-size: 40px; }
}
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-wrap { padding: 16px 24px 48px; }
  .blog-hero-title { font-size: 32px; margin: 32px auto 32px; }
  .post-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .hero-title--sm { font-size: 34px; }
}
@media (max-width: 480px) {
  .blog-hero-title { font-size: 28px; }
  .hero-title--sm { font-size: 28px; }
}

/* ─── Article ─────────────────────────────────────────── */
.article-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px 80px;
}
.breadcrumb { flex-wrap: wrap; row-gap: 4px; }

.article { max-width: 768px; margin: 48px auto 0; }

.article-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.article-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
}
.article-readtime {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
}

/* Image hero — angles carrés, pas de radius */
.article-hero {
  aspect-ratio: 768 / 517;
  margin-top: 32px;
  overflow: hidden;
  background: var(--bg-white);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

/* Corps */
.article-body { margin-top: 40px; }
.article-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--ink-muted);
  margin: 0 0 24px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 48px 0 20px;
}
.article-body ul {
  margin: 0 0 24px;
  padding-left: 28px;
  list-style: disc;
}
.article-body li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.article-body li::marker { color: var(--ink-muted); }
.article-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.article-body a:hover { color: var(--gold); }
.article-body > *:last-child { margin-bottom: 0; }

/* Bloc Mareva — réutilise le bloc feature de la home (grande image + texte) */
.mareva-cta { max-width: 1280px; margin: 104px auto 0; }
.mareva-cta-title { font-size: 36px; }
.mareva-cta-p1 { font-weight: 600; }
.mareva-cta-button {
  align-self: flex-start;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mareva-cta-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  text-align: center;
}

/* À lire également */
.related { max-width: 1280px; margin: 104px auto 0; }
.related-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 40px;
}

/* Article — responsive */
@media (max-width: 768px) {
  .article-wrap { padding: 16px 24px 48px; }
  .article { margin-top: 32px; }
  .article-title { font-size: 32px; letter-spacing: -1px; }
  .article-hero { margin-top: 24px; }
  .article-body { margin-top: 32px; }
  .article-body p, .article-body li { font-size: 18px; }
  .article-body h2 { font-size: 28px; letter-spacing: -1px; margin: 40px 0 16px; }
  .mareva-cta { margin-top: 72px; }
  .mareva-cta-title { font-size: 30px; }
  .mareva-cta-button { align-self: center; }
  .related { margin-top: 72px; }
  .related-title { font-size: 30px; margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .mareva-cta-title { font-size: 28px; }
}

/* ─── Pages légales (CGU, confidentialité, mentions légales) ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 104px;
}

.legal-date {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.047em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.legal-page ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--ink-muted);
}

.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .legal-page { padding: 40px 24px 64px; }
  .legal-page h1 { font-size: 36px; }
}