/* Masque TOUT élément contenant "Téléchargements" */
*:contains("Téléchargements") {
    display: none !important;
}

.wp-caption {
  max-width: 100% !important;
  width: auto !important;
}

.wp-caption img {
  width: 100% !important;
  height: auto;
}

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


  :root {
    --bg:     #ffffff;
    --bg2:    #f7f8fa;
    --navy:   #0c1828;
    --gold:   #c9a84c;
    --gold2:  #a8882e;
    --text:   #1a2035;
    --sub:    #4a5568;
    --muted:  #8a97b0;
    --border: #e2e8f0;
    --blue:   #2563a8;
    --green:  #1a7a52;
    --r:      6px;
    --max:    880px;
  }

  .fy-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px 80px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
  }

  /* HERO */
  .fy-hero {
    padding: 56px 0 44px;
    border-bottom: 1px solid var(--border);
  }

  .fy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--gold2);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .fy-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .fy-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 18px;
    max-width: 660px;
  }
  .fy-hero h1 em { font-style: italic; color: var(--gold2); }

  .fy-hero .lead {
    font-size: 16px;
    color: var(--sub);
    max-width: 580px;
    line-height: 1.8;
  }

  /* STATS */
  .fy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 0;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
  }
  .fy-stat {
    background: var(--bg2);
    padding: 26px 20px;
    text-align: center;
    transition: background .2s;
  }
  .fy-stat:hover { background: #edf0f5; }
  .fy-stat + .fy-stat { border-left: 1px solid var(--border); }
  .fy-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
  }
  .fy-stat-num em { font-style: normal; color: var(--gold2); }
  .fy-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--sub);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .fy-stat-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

  /* SECTIONS */
  .fy-section { margin-top: 50px; }

  .fy-tag {
    display: inline-block;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold2);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .fy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .fy-section-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }

  /* PROFILES */
  .fy-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fy-profile {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    border-radius: var(--r);
    padding: 13px 17px;
    transition: border-left-color .2s, background .2s;
  }
  .fy-profile:hover { border-left-color: var(--gold); background: #f0f4f9; }
  .fy-profile-title { font-size: 13.5px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
  .fy-profile-sector { font-size: 12px; color: var(--muted); font-style: italic; }

  /* OFFERS */
  .fy-offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .fy-offer {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bg);
    transition: box-shadow .2s, transform .2s;
  }
  .fy-offer:hover {
    box-shadow: 0 6px 20px rgba(12,24,40,.08);
    transform: translateY(-2px);
  }
  .fy-offer-head {
    padding: 13px 18px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
  }
  .fy-offer-head.blue  { background: var(--blue); }
  .fy-offer-head.navy  { background: var(--navy); }
  .fy-offer-head.green { background: var(--green); }

  .fy-offer-body { padding: 4px 18px 12px; }
  .fy-offer-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
    gap: 8px;
  }
  .fy-offer-item:last-child { border-bottom: none; }
  .fy-offer-item span { color: var(--sub); }
  .fy-offer-price { font-weight: 500; white-space: nowrap; }
  .fy-offer-price.blue  { color: var(--blue); }
  .fy-offer-price.navy  { color: var(--gold2); }
  .fy-offer-price.green { color: var(--green); }

  /* CTA */
  .fy-cta {
    margin: 50px 0;
    background: var(--navy);
    border-radius: 8px;
    padding: 44px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .fy-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e8c97a, var(--gold));
  }
  .fy-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .fy-cta p {
    font-size: 14.5px;
    color: #8a97b0;
    max-width: 440px;
    margin: 0 auto 28px;
    line-height: 1.65;
  }
  .fy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--r);
    text-decoration: none;
    transition: background .2s, transform .15s;
  }
  .fy-btn:hover { background: #e8c97a; transform: translateY(-1px); color: var(--navy); text-decoration: none; }
  .fy-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
  .fy-btn-note { display: block; font-size: 11.5px; color: #5a6a82; margin-top: 12px; }

  /* CONTACTS */
  .fy-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
  }
  .fy-contact-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 22px 24px;
  }
  .fy-contact-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .fy-contact-role { font-size: 12px; color: var(--gold2); font-style: italic; margin-bottom: 14px; }
  a.fy-contact-line {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--sub);
    margin-bottom: 6px;
    text-decoration: none;
    transition: color .15s;
  }
  a.fy-contact-line:hover { color: var(--navy); text-decoration: none; }
  .fy-ico { width: 13px; height: 13px; color: var(--muted); flex-shrink: 0; }

  /* EDITORIAL */
  .fy-editorial {
    margin-top: 48px;
    padding: 22px 26px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 13.5px;
    color: var(--sub);
    line-height: 1.65;
  }
  .fy-editorial strong { color: var(--navy); }
  .fy-editorial a { color: var(--blue); text-decoration: none; }
  .fy-editorial a:hover { text-decoration: underline; }

  /* RESPONSIVE */
  @media (max-width: 640px) {
    .fy-stats, .fy-profiles, .fy-offers, .fy-contacts { grid-template-columns: 1fr; }
    .fy-stat + .fy-stat { border-left: none; border-top: 1px solid var(--border); }
    .fy-cta { padding: 32px 20px; }
    .fy-hero { padding: 36px 0 32px; }
  }