/* ══════════════════════════════════════════
   CROTAL MEDICAL — Styles des pages SEO
   (à charger EN PLUS de crotal.css)
   ══════════════════════════════════════════ */

/* ── NAV : MENUS DÉROULANTS ── */
.nav-links li.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 248px;
  background: var(--white);
  border: 1px solid rgba(42, 191, 191, 0.14);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(26, 31, 94, 0.14);
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 120;
}

.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy);
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: rgba(42, 191, 191, 0.08); color: var(--teal-dark); }

.nav-dropdown .dd-sep {
  height: 1px;
  background: rgba(26, 31, 94, 0.07);
  margin: 6px 8px;
}

.nav-caret { display: inline-block; margin-left: 4px; font-size: 9px; opacity: 0.6; vertical-align: middle; }

/* sous-titres mobile */
.mobile-group-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 18px 0 4px;
  font-weight: 600;
}
.mobile-menu ul li a.mobile-sub {
  font-size: 14px;
  padding: 11px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
}

/* ── BREADCRUMB ── */
.breadcrumb-wrap {
  padding: 110px 80px 0;
  background: var(--off-white);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-light);
  list-style: none;
}
.breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal-dark); }
.breadcrumb .sep { color: rgba(26,31,94,0.25); }
.breadcrumb [aria-current] { color: var(--teal-dark); font-weight: 500; }

/* ── HERO PAGE INTERNE ── */
.page-hero {
  background: var(--off-white);
  padding: 40px 80px 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.page-hero-text { max-width: 620px; }
.page-hero .hero-badge { animation: none; opacity: 1; transform: none; margin-bottom: 22px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero .lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 30px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 30px 70px rgba(26, 31, 94, 0.16);
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,31,94,0.18), rgba(42,191,191,0.12));
}
.page-hero-img .float-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: 4px;
  border-left: 4px solid var(--teal);
  box-shadow: 0 16px 40px rgba(26,31,94,0.15);
}
.page-hero-img .float-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}
.page-hero-img .float-badge span { font-size: 11.5px; color: var(--text-mid); letter-spacing: 0.05em; }

/* ── CORPS D'ARTICLE / PROSE ── */
.prose-section { background: var(--white); }
.prose-wrap { max-width: 1180px; margin: 0 auto; }
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.prose { max-width: 760px; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin: 48px 0 18px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--teal); }
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 32px 0 12px;
}
.prose p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.prose ul, .prose ol {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(42,191,191,0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231a9898' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}
.prose ol { counter-reset: li; }
.prose ol li {
  position: relative;
  padding-left: 38px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  counter-increment: li;
}
.prose ol li::before {
  content: counter(li);
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.prose strong { color: var(--navy); font-weight: 600; }
.prose a.inline-link { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

.callout {
  background: rgba(42,191,191,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
  padding: 22px 26px;
  margin: 28px 0;
}
.callout p { margin: 0; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.callout strong { color: var(--navy); }

/* ── SIDEBAR STICKY ── */
.prose-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.aside-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 30px 26px;
  color: #fff;
}
.aside-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.aside-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; }
.aside-card .aside-btn {
  display: block; text-align: center;
  background: var(--teal); color: #fff;
  padding: 13px; border-radius: 2px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background 0.3s;
}
.aside-card .aside-btn:hover { background: var(--teal-light); }
.aside-card .aside-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px;
  background: #25d366; color: #fff;
  padding: 12px; border-radius: 2px;
  font-size: 13px; text-decoration: none; font-weight: 500;
  transition: opacity 0.3s;
}
.aside-card .aside-wa:hover { opacity: 0.9; }

.aside-links {
  background: var(--off-white);
  border: 1px solid rgba(26,31,94,0.07);
  border-radius: 6px;
  padding: 24px;
}
.aside-links h5 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 14px;
}
.aside-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aside-links ul a {
  font-size: 13.5px; color: var(--text-mid); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.aside-links ul a::before { content: '→'; color: var(--teal); }
.aside-links ul a:hover { color: var(--teal-dark); }

/* ── TABLEAU DE PRIX ── */
.price-table-wrap { overflow-x: auto; margin: 26px 0; border-radius: 6px; border: 1px solid rgba(26,31,94,0.08); }
.price-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.price-table thead { background: var(--navy); }
.price-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
  padding: 15px 20px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(26,31,94,0.06);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(42,191,191,0.04); }
.price-table td:first-child { color: var(--navy); font-weight: 500; }
.price-table .price-cell { color: var(--teal-dark); font-weight: 600; white-space: nowrap; }
.price-note { font-size: 12.5px; color: var(--text-light); font-style: italic; margin-top: 10px; }

/* ── GRILLE INFO / FEATURES (réutilisable) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(26,31,94,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin: 30px 0;
}
.info-cell {
  background: var(--white);
  padding: 28px 24px;
}
.info-cell .ic-icon {
  width: 42px; height: 42px;
  background: rgba(42,191,191,0.08);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 14px;
}
.info-cell h4 { font-size: 15px; color: var(--navy); font-weight: 600; margin-bottom: 6px; }
.info-cell p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ── TABLEAU COMPARATIF ── */
.compare-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 6px; border: 1px solid rgba(26,31,94,0.08); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th {
  padding: 16px 18px; font-size: 13px; text-align: left;
  background: var(--off-white); color: var(--navy); font-weight: 600;
  border-bottom: 2px solid rgba(42,191,191,0.3);
}
.compare-table th.highlight { background: rgba(42,191,191,0.1); color: var(--teal-dark); }
.compare-table td {
  padding: 14px 18px; font-size: 13.5px; color: var(--text-mid);
  border-bottom: 1px solid rgba(26,31,94,0.06);
}
.compare-table td:first-child { font-weight: 500; color: var(--navy); }
.compare-table td.highlight { background: rgba(42,191,191,0.04); color: var(--teal-dark); font-weight: 500; }

/* ── BANDE CTA ── */
.cta-band {
  background: var(--navy);
  padding: 70px 80px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-band h2 em { font-style: italic; color: var(--teal-light); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--teal); }
.cta-band .btn-primary::before { background: var(--teal-light); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ── GRILLE PAGES LIÉES ── */
.related-section { background: var(--off-white); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.related-card {
  background: var(--white);
  border: 1px solid rgba(26,31,94,0.06);
  border-radius: 6px;
  padding: 30px 28px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.related-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--teal); transition: width 0.4s;
}
.related-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,31,94,0.1); }
.related-card:hover::after { width: 100%; }
.related-card .rc-eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px;
}
.related-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin: 0; }
.related-card .rc-arrow { margin-top: 16px; color: var(--teal-dark); font-size: 13px; font-weight: 500; }

/* ── PILLS / CITY LIST (pays) ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.pill {
  background: rgba(42,191,191,0.08);
  border: 1px solid rgba(42,191,191,0.2);
  color: var(--teal-dark);
  padding: 7px 16px; border-radius: 2px;
  font-size: 12.5px; letter-spacing: 0.04em;
}

/* ── MINI-STATS pays ── */
.factbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(26,31,94,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin: 30px 0;
}
.fact {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
}
.fact .fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--teal-dark); font-weight: 600; line-height: 1;
  margin-bottom: 6px;
}
.fact .fact-label { font-size: 12px; color: var(--text-mid); letter-spacing: 0.04em; }

/* ── FAQ sur pages internes (reprend le style, version simple) ── */
.page-faq { background: var(--white); }
.page-faq .faq-items { max-width: 860px; margin: 44px auto 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .breadcrumb-wrap { padding: 100px 40px 0; }
  .page-hero { grid-template-columns: 1fr; padding: 30px 40px 50px; gap: 36px; }
  .page-hero-img { height: 300px; }
  .prose-grid { grid-template-columns: 1fr; gap: 40px; }
  .prose-aside { position: static; }
  .cta-band { padding: 56px 40px; }
}
@media (max-width: 640px) {
  .breadcrumb-wrap { padding: 92px 20px 0; }
  .page-hero { padding: 24px 20px 40px; }
  .cta-band { padding: 48px 20px; }
}

/* ══════════════════════════════════════════
   PAGES SPÉCIALES — FORMULES / TÉMOIGNAGES
   ══════════════════════════════════════════ */

.lead-note {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.8;
  background: rgba(42,191,191,0.05);
  border-left: 3px solid var(--teal);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}

/* ── FORMULES ── */
.formules-section,
.temoignages-section { padding: 64px 40px 24px; background: var(--white); }
.formules-intro { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.formules-intro h2 { margin-bottom: 14px; }

.packages-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 32px;
}

/* Cartes formules sur fond clair (variantes navy lisibles) */
.packages-grid-page .pkg-card {
  background: var(--navy);
  border: 1px solid rgba(26,31,94,0.12);
  border-radius: 6px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.packages-grid-page .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,31,94,0.18); }
.packages-grid-page .pkg-card.featured { background: var(--teal); border-color: var(--teal); }
.packages-grid-page .pkg-name { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.packages-grid-page .pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 6px; }
.packages-grid-page .pkg-currency { font-size: 22px; vertical-align: super; font-family: 'DM Sans', sans-serif; font-weight: 300; }
.packages-grid-page .pkg-desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 24px; font-style: italic; }
.packages-grid-page .pkg-divider { height: 1px; background: rgba(255,255,255,0.14); margin-bottom: 24px; }
.packages-grid-page .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; padding: 0; }
.packages-grid-page .pkg-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.5; }
.packages-grid-page .pkg-features li::before {
  content: ''; width: 16px; height: 16px; min-width: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; margin-top: 2px;
}
.packages-grid-page .pkg-badge { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.2); color: #fff; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; }
.packages-grid-page .pkg-btn { display: block; text-align: center; text-decoration: none; padding: 14px; border-radius: 2px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
.packages-grid-page .pkg-btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }
.packages-grid-page .pkg-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.packages-grid-page .pkg-btn-solid { background: var(--navy); color: #fff; }
.packages-grid-page .pkg-btn-solid:hover { opacity: 0.88; }

.addons-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.addons-grid-page .addon-card {
  background: var(--white); padding: 24px; border-radius: 6px;
  border: 1px solid rgba(26,31,94,0.08); display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.3s;
}
.addons-grid-page .addon-card:hover { border-color: rgba(42,191,191,0.35); box-shadow: 0 8px 30px rgba(26,31,94,0.07); transform: translateY(-3px); }
.addons-grid-page .addon-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(42,191,191,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.addons-grid-page .addon-body h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.addons-grid-page .addon-body p { font-size: 12.5px; color: var(--text-mid); line-height: 1.55; margin-bottom: 8px; }
.addons-grid-page .addon-price { font-size: 13px; font-weight: 600; color: var(--teal-dark); }

/* ── TÉMOIGNAGES ── */
.testimonials-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonials-grid-page .testi-card {
  background: var(--off-white); padding: 36px; border-radius: 6px;
  border: 1px solid rgba(26,31,94,0.06); transition: all 0.3s; position: relative;
}
.testimonials-grid-page .testi-card:hover { box-shadow: 0 12px 40px rgba(26,31,94,0.08); transform: translateY(-4px); }
.testimonials-grid-page .testi-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 72px; color: rgba(42,191,191,0.15); line-height: 0.7; margin-bottom: 12px; display: block; }
.testimonials-grid-page .testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 8px; }
.testimonials-grid-page .testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonials-grid-page .testi-author { display: flex; align-items: center; gap: 12px; }
.testimonials-grid-page .testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(42,191,191,0.2); }
.testimonials-grid-page .testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonials-grid-page .testi-origin { font-size: 12px; color: var(--text-light); }

.patients-gallery-page { background: var(--off-white); padding: 72px 0; overflow: hidden; }
.patients-gallery-page .patients-header { max-width: 600px; margin: 0 auto 44px; padding: 0 40px; }

@media (max-width: 1024px) {
  .packages-grid-page { grid-template-columns: 1fr; max-width: 440px; }
  .addons-grid-page { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid-page { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 640px) {
  .formules-section, .temoignages-section { padding: 48px 20px 16px; }
  .addons-grid-page { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CORRECTIF MENU DÉROULANT
   La barre `nav` d'origine a `overflow:hidden` (pour recadrer le
   grand logo), ce qui coupait aussi les menus déroulants.
   On rend la barre `overflow:visible` et on déplace le recadrage
   du logo sur son propre conteneur : apparence du logo identique,
   menus déroulants enfin visibles en entier.
   ══════════════════════════════════════════ */
nav { overflow: visible; }

.nav-logo {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Le menu déroulant passe au-dessus de tout le contenu de la page */
.nav-links { overflow: visible; }
.nav-dropdown { z-index: 1000; }
