/* Eyenabel V2 — feuille de style principale */
:root {
  --ink: #15151b;
  --muted: #62626e;
  --paper: #ffffff;
  --soft: #f7f7f9;
  --soft-yellow: #fff8d7;
  --yellow: #ffd719;
  --yellow-dark: #e4b900;
  --red: #ef3e45;
  --red-dark: #c92b32;
  --line: #e7e7ec;
  --success: #117a53;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(18, 18, 25, .07);
  --shadow-lg: 0 24px 70px rgba(18, 18, 25, .14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 12px 16px; border-radius: 10px; background: var(--ink); color: #fff;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--dark { color: #fff; background: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 14px; color: var(--red-dark); font-size: .78rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 9px; background: var(--yellow); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); }

.topbar { background: var(--ink); color: #fff; font-size: .86rem; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: center; text-align: center; }
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(231,231,236,.9); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 142px; height: 62px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; color: #3f3f49; font-weight: 700; font-size: .94rem; }
.nav a:not(.btn):hover { color: var(--red-dark); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 21px; height: 2px; background: var(--ink); border-radius: 9px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 850; line-height: 1; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--ink); background: var(--yellow); box-shadow: 0 10px 28px rgba(255, 215, 25, .27); }
.btn--primary:hover { background: #ffe14e; box-shadow: 0 15px 35px rgba(255, 215, 25, .36); }
.btn--dark { color: #fff; background: var(--ink); }
.btn--dark:hover { background: #2b2b34; }
.btn--ghost { color: var(--ink); background: #fff; border-color: var(--line); }
.btn--light { color: var(--ink); background: #fff; }
.btn--wide { width: 100%; }

.hero {
  position: relative; isolation: isolate; min-height: 720px; overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,215,25,.34), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(239,62,69,.16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fbfbfd 50%, #fff7d0 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .45;
  background-image: linear-gradient(rgba(20,20,27,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(20,20,27,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding: 80px 0; }
.hero-copy { max-width: 730px; }
.hero-copy h1 span { color: var(--red); }
.hero-copy .lead { max-width: 650px; margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; color: #4a4a55; font-weight: 700; font-size: .92rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--soft-yellow); color: var(--red-dark); font-size: .78rem; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.eye-stage {
  position: relative; width: min(500px, 100%); aspect-ratio: 1 / 1; border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
  background: linear-gradient(145deg, #17171e 0 52%, #ef3e45 52% 68%, #ffd719 68% 100%);
  box-shadow: var(--shadow-lg); transform: rotate(-5deg); overflow: hidden;
}
.eye-stage::before {
  content: ""; position: absolute; width: 72%; height: 50%; left: 14%; top: 25%;
  border-radius: 50% 50% 48% 48% / 60% 60% 40% 40%; background: #fff; transform: rotate(7deg);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.04);
}
.eye-stage::after {
  content: ""; position: absolute; width: 24%; aspect-ratio: 1; left: 38%; top: 38%; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fff 0 8%, #ffd719 9% 54%, #17171e 55% 100%);
  box-shadow: 0 0 0 14px rgba(255,215,25,.14);
}
.floating-card {
  position: absolute; background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); padding: 18px 20px;
}
.floating-card strong { display: block; font-size: 1.55rem; letter-spacing: -.04em; }
.floating-card small { color: var(--muted); font-weight: 700; }
.floating-card--one { left: -18px; bottom: 52px; }
.floating-card--two { right: -12px; top: 58px; }

.stats { position: relative; margin-top: -40px; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.stat { padding: 28px 34px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -.045em; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-weight: 700; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: 0 3px 0 rgba(20,20,27,.02); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); border-color: #d7d7de; box-shadow: var(--shadow-sm); }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; background: var(--soft-yellow); color: var(--red-dark); }
.card-icon svg { width: 27px; height: 27px; }
.card p { margin-top: 14px; color: var(--muted); }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.video-shell { position: relative; border-radius: 28px; overflow: hidden; background: #111; box-shadow: var(--shadow-lg); }
.video-shell::after { content: ""; display: block; padding-top: 56.25%; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.story-card { margin-top: 24px; padding: 24px; border-left: 5px solid var(--yellow); background: var(--soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; border-radius: 32px; padding: 62px; background: var(--ink); color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 270px; height: 270px; right: -75px; top: -95px; border-radius: 50%; background: var(--yellow); opacity: .95; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .lead { color: #d0d0d7; max-width: 650px; margin-top: 15px; }
.cta-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; background: var(--soft-yellow); border-radius: 13px; }
.contact-item strong { display: block; }
.contact-item a, .contact-item span { color: var(--muted); text-decoration: none; }
.form-card { padding: 36px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; gap: 20px; }
.field label { display: block; margin-bottom: 8px; font-weight: 800; font-size: .92rem; }
.field input, .field textarea {
  width: 100%; border: 1px solid #dcdce3; border-radius: 13px; background: #fff; color: var(--ink); padding: 13px 15px; outline: none;
  transition: box-shadow .2s, border-color .2s;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 4px rgba(255,215,25,.2); }
.form-note { color: var(--muted); font-size: .85rem; }
.form-status { display: none; padding: 13px 15px; border-radius: 12px; font-weight: 750; }
.form-status.show { display: block; }
.form-status.success { color: #07583c; background: #eaf8f2; }
.form-status.error { color: #8f1c14; background: #fff0ee; }
.consent-row { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: left; }
.consent-row input { width: 20px; height: 20px; accent-color: var(--yellow-dark); }

.partner-card { max-width: 350px; margin: 0 auto; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.partner-card img { width: 180px; margin: 0 auto; }

.site-footer { background: #111118; color: #fff; padding: 68px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 60px; }
.footer-brand img { width: 160px; padding: 8px; background: #fff; border-radius: 14px; }
.footer-brand p { color: #b8b8c2; max-width: 430px; margin-top: 18px; }
.footer-title { margin-bottom: 16px; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #c6c6cf; text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.newsletter { display: flex; gap: 8px; }
.newsletter input { min-width: 0; width: 100%; padding: 12px 13px; border: 1px solid #363640; border-radius: 12px; color: #fff; background: #202029; outline: none; }
.newsletter button { min-width: 104px; border: 0; border-radius: 12px; background: var(--yellow); color: var(--ink); font-weight: 850; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid #2e2e37; display: flex; justify-content: space-between; gap: 20px; color: #92929d; font-size: .86rem; }
.iban-copy { border: 0; color: #fff; background: transparent; padding: 0; font-weight: 800; text-align: left; }
.iban-copy:hover { color: var(--yellow); }

.page-hero { padding: 82px 0 62px; background: linear-gradient(140deg, var(--soft) 0%, #fff7d4 100%); border-bottom: 1px solid var(--line); }
.page-hero .lead { max-width: 720px; margin-top: 20px; }
.page-main { padding: 70px 0 100px; }
.narrow { max-width: 780px; }

.donation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.payment-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.payment-card h2 { font-size: 1.6rem; }
.payment-card p { margin: 13px 0 25px; color: var(--muted); }
.payment-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; margin-bottom: 20px; color: var(--red-dark); background: var(--soft-yellow); font-size: .78rem; font-weight: 850; }
.bank-card { grid-column: auto; display: grid; grid-template-columns: 1fr; align-items: start; gap: 24px; background: var(--ink); color: #fff; }
.bank-card p { color: #c7c7d0; margin-bottom: 0; }
.bank-number { display: grid; gap: 4px; width: 100%; align-items: center; justify-items: center; padding: 14px 18px; border-radius: 14px; background: #fff; color: var(--ink); border: 0; font-weight: 900; white-space: nowrap; text-align: center; }
.bank-number span { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.bank-number strong { font-size: 1.05rem; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 54px; align-items: start; }
.legal-toc { position: sticky; top: 118px; padding: 20px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); }
.legal-toc strong { display: block; margin-bottom: 12px; }
.legal-toc ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.legal-toc a { color: var(--muted); font-size: .88rem; text-decoration: none; }
.legal-toc a:hover { color: var(--red-dark); }
.legal-content { min-width: 0; }
.legal-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-content h2 { margin-top: 42px; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #454550; }
.legal-content p { margin-top: 12px; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: #a7272d; text-underline-offset: 3px; }
.legal-meta { margin: 18px 0 30px; color: var(--muted); }
.legal-info { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.legal-related { margin: 18px 0 34px; }
.legal-document-footer { margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.legal-content table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.legal-content th, .legal-content td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); padding: 18px;
    flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 12px; border-radius: 10px; }
  .nav .btn { margin-top: 6px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 72px 0 100px; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 430px; }
  .eye-stage { width: min(420px, 88vw); }
  .stats { margin-top: -55px; }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 118px; height: 52px; }
  .hero-grid { padding-top: 58px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 350px; }
  .floating-card { padding: 14px 16px; }
  .floating-card--one { left: 0; bottom: 18px; }
  .floating-card--two { right: 0; top: 20px; }
  .stats-grid, .grid-3, .donation-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .card, .form-card, .payment-card { padding: 25px; }
  .cta-band { padding: 38px 26px; border-radius: 24px; }
  .cta-band::after { width: 150px; height: 150px; right: -55px; top: -60px; }
  .bank-card { grid-column: auto; grid-template-columns: 1fr; }
  .bank-number { white-space: normal; justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; }
  .newsletter { flex-direction: column; }
  .newsletter button { min-height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Sélecteur de langue */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: -8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}
.nav .language-switcher a {
  min-width: 34px;
  padding: 7px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.nav .language-switcher a:hover {
  color: var(--ink);
  background: #fff;
}
.nav .language-switcher a.active {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 4px 12px rgba(255, 215, 25, .24);
}
@media (max-width: 980px) {
  .language-switcher {
    align-self: flex-start;
    margin: 8px 12px 2px;
  }
  .nav .language-switcher a {
    padding: 9px 11px;
  }
}


/* En-tête : langues toujours visibles, y compris sur mobile */
.nav-wrap {
  justify-content: flex-start;
}
.brand {
  flex: 0 0 auto;
}
.nav {
  margin-left: auto;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.header-tools .language-switcher {
  margin-left: 0;
}
.header-tools .language-switcher a {
  min-width: 34px;
  padding: 7px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.header-tools .language-switcher a:hover {
  color: var(--ink);
  background: #fff;
}
.header-tools .language-switcher a.active {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 4px 12px rgba(255, 215, 25, .24);
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 74px;
    gap: 12px;
  }
  .brand {
    margin-right: auto;
  }
  .header-tools {
    margin-left: auto;
    gap: 8px;
  }
  .header-tools .language-switcher {
    display: inline-flex;
    align-self: center;
    margin: 0;
    padding: 3px;
    gap: 2px;
  }
  .header-tools .language-switcher a {
    min-width: 31px;
    padding: 8px 6px;
    font-size: .72rem;
  }
  .nav-toggle {
    flex: 0 0 auto;
  }
  .nav {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .brand img {
    max-width: 116px;
  }
  .nav-wrap {
    gap: 8px;
  }
  .header-tools {
    gap: 6px;
  }
  .header-tools .language-switcher a {
    min-width: 28px;
    padding: 7px 5px;
    font-size: .68rem;
  }
}


/* WhatsApp */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.whatsapp-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}
.contact-item .whatsapp-link {
  font-weight: 800;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 8px 17px 8px 8px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: #128C7E;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18,140,126,.32);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background: #087f70;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(18,140,126,.4);
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.whatsapp-float img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 7px;
    justify-content: center;
  }
  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
  .whatsapp-float img {
    width: 40px;
    height: 40px;
  }
}


/* Partenaires */
.partner-intro {
  max-width: 720px;
  margin: 14px auto 32px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 310px));
  justify-content: center;
  gap: 24px;
}
.partner-card {
  max-width: none;
  margin: 0;
  min-height: 280px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(17, 39, 72, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.partner-card:hover {
  color: var(--ink);
  transform: translateY(-5px);
  border-color: rgba(20, 65, 145, .24);
  box-shadow: 0 20px 44px rgba(17, 39, 72, .13);
}
.partner-logo-wrap {
  width: 100%;
  min-height: 130px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
}
.partner-card .partner-logo-wrap img {
  width: auto;
  max-width: 165px;
  max-height: 105px;
  margin: 0 auto;
  object-fit: contain;
}
.partner-name {
  display: block;
  font-size: 1.14rem;
  font-weight: 900;
}
.partner-meta {
  display: block;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .partner-grid {
    grid-template-columns: minmax(0, 360px);
  }
  .partner-card {
    min-height: 220px;
  }
  .partner-card .partner-logo-wrap img {
    max-width: 145px;
    max-height: 92px;
  }
}





/* Short YouTube — partenariat CESNa */
.short-feature {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 6vw, 84px);
}
.short-shell {
  width: min(100%, 350px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 28px;
  background: #0d1b2f;
  box-shadow: 0 24px 60px rgba(17, 39, 72, .18);
}
.short-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.short-copy .lead {
  margin-top: 18px;
}
.short-copy .story-card {
  margin-top: 24px;
}
.short-youtube-link {
  margin-top: 24px;
}
@media (max-width: 820px) {
  .short-feature {
    grid-template-columns: 1fr;
  }
  .short-copy {
    text-align: center;
  }
  .short-copy .story-card {
    text-align: left;
  }
  .short-shell {
    width: min(82vw, 330px);
  }
}


/* Centre Zena Optique */
.partner-card--static {
  cursor: default;
}
.partner-card--static:hover {
  color: var(--ink);
  transform: none;
  border-color: var(--line);
  box-shadow: 0 14px 34px rgba(17, 39, 72, .07);
}
.partner-zena .partner-logo-wrap img {
  max-width: 235px;
  max-height: 105px;
}

@media (max-width: 1040px) and (min-width: 721px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
  }
  .partner-zena {
    grid-column: 1 / -1;
    width: min(100%, 330px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .partner-zena .partner-logo-wrap img {
    max-width: 210px;
    max-height: 92px;
  }
}
