/*
Theme Name:  Croisières Conseils
Theme URI:   https://croisieresconseils.com
Author:      Nicolas & Jimmy
Author URI:  https://croisieresconseils.com
Description: Thème officiel Croisières Conseils — Blog croisières & voyages
Version:     1.0.2
License:     GNU General Public License v2 or later
Text Domain: deuxabord
Tags:        travel, cruise, blog, dark, mobile-first
*/

/* ═══════════════════════════════════════════════════════
   1. VARIABLES
═══════════════════════════════════════════════════════ */
:root {
  --ink:    #08080e;
  --ink-2:  #0f0f18;
  --salt:   #f4efe6;
  --ocean:  #0050a0;
  --wave:   #00b8d9;
  --coral:  #ff4f2a;
  --gold:   #f2b705;
  --muted:  rgba(244,239,230,0.55);
  --border: rgba(255,255,255,0.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --r-card:  8px;
  --r-btn:   3px;
  --shadow:  0 4px 24px rgba(0,0,0,0.25);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  background: var(--ink);
  color: var(--salt);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--wave); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
button, input, textarea, select { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHIE
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  line-height: .95;
}
h1 { font-size: clamp(52px, 14vw, 80px); }
h2 { font-size: clamp(36px, 9vw, 52px); }
h3 { font-size: clamp(24px, 6vw, 34px); }
h4 { font-size: clamp(18px, 4vw, 24px); font-family: var(--font-ui); font-weight: 700; line-height: 1.3; }

p { margin-bottom: 1em; font-weight: 300; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--wave);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--wave);
  display: block;
}

/* ═══════════════════════════════════════════════════════
   4. LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 64px 0; }
.section--light { background: var(--salt); color: var(--ink); }
.section--light .label { color: var(--ocean); }
.section--light .label::before { background: var(--ocean); }
.section--light a { color: var(--ocean); }
.section--ocean { background: var(--ocean); }
.section--coral { background: var(--coral); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ═══════════════════════════════════════════════════════
   5. BOUTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn--primary   { background: var(--coral); color: #fff; box-shadow: 0 4px 20px rgba(255,79,42,.35); }
.btn--primary:hover { box-shadow: 0 8px 30px rgba(255,79,42,.5); }
.btn--ocean     { background: var(--ocean); color: #fff; }
.btn--wave      { background: var(--wave);  color: var(--ink); }
.btn--ghost     { background: transparent; color: var(--salt); border: 1px solid rgba(244,239,230,.2); }
.btn--ghost-dark { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,.2); }
.btn--white     { background: #fff; color: var(--coral); }

/* ═══════════════════════════════════════════════════════
   6. TAGS / BADGES
═══════════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.tag--wave   { background: rgba(0,184,217,.15); color: var(--wave); }
.tag--coral  { background: rgba(255,79,42,.15);  color: var(--coral); }
.tag--gold   { background: var(--gold); color: var(--ink); }
.tag--ocean  { background: rgba(0,80,160,.12); color: var(--ocean); }
.tag--muted  { background: rgba(255,255,255,.08); color: var(--muted); }
.section--light .tag--ocean { background: rgba(0,80,160,.1); }

/* ═══════════════════════════════════════════════════════
   7. NAVIGATION
═══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(8,8,14,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 32px; } }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--salt);
}
.nav-logo:hover { opacity: 1; }
.nav-logo__mark {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--wave);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo__text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo__main {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--salt);
}
.nav-logo__sub {
  font-family: var(--font-ui);
  font-size: 7.5px;
  letter-spacing: 3px;
  color: var(--wave);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .nav-logo__main { font-size: 22px; }
  .nav-logo__sub  { font-size: 9px; }
}

/* Desktop menu */
.nav-menu {
  display: none;
  list-style: none;
  gap: 4px;
}
.nav-menu a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244,239,230,.7);
  padding: 8px 12px;
  border-radius: var(--r-btn);
  display: block;
  transition: color .2s, background .2s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--salt); background: rgba(255,255,255,.06); }
@media (min-width: 768px) { .nav-menu { display: flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 600;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--salt);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 20px; }
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 22px; }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 22px; }
@media (min-width: 768px) { .nav-hamburger { display: none; } }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8,8,14,.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-drawer.is-open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: 3px;
  color: var(--salt);
  text-transform: uppercase;
  padding: 8px 0;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--wave); opacity: 1; }
.nav-drawer__socials {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}
.nav-drawer__socials a {
  font-size: 0;
  color: var(--muted);
  transition: color .2s;
}
.nav-drawer__socials a:hover { color: var(--wave); }

/* ═══════════════════════════════════════════════════════
   8. HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 130% 80% at 65% 5%, #003776 0%, #001a40 45%, var(--ink) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wave) 1px, transparent 1px),
    linear-gradient(90deg, var(--wave) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .06;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.hero__compass {
  position: absolute;
  right: -80px;
  top: 20px;
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  border: 1px solid rgba(0,184,217,.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero__compass::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(0,184,217,.07);
  border-radius: 50%;
}
.hero__horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,184,217,.35) 30%, rgba(0,184,217,.35) 70%, transparent);
}
.hero__ship {
  position: absolute;
  bottom: 196px;
  right: min(60px, 8vw);
  opacity: .18;
}
.hero__badge {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0%, #ffd060 50%, var(--gold) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
  transform: rotate(14deg);
  box-shadow: 0 4px 24px rgba(242,183,5,.4);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 10;
}
.hero__badge-symbol { font-size: 20px; }
.hero__badge-text   { font-size: 10px; letter-spacing: .5px; }
.hero__content {
  position: relative;
  z-index: 10;
  padding: 0 20px 50px;
  width: 100%;
  max-width: 700px;
}
@media (min-width: 768px) { .hero__content { padding: 0 48px 80px; } }
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--wave);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero__eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--wave); display: block; }
.hero__title { margin-bottom: 6px; font-size: clamp(44px, 13vw, 76px); }
.hero__title .t-filled  { color: var(--salt); display: block; }
.hero__title .t-outline { color: transparent; -webkit-text-stroke: 1.5px var(--wave); display: block; }
.hero__title .t-coral   { color: var(--coral); display: block; }
.hero__desc {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--muted);
  max-width: 340px;
  margin: 18px 0 30px;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   9. STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar { background: var(--ocean); display: flex; }
.stats-bar__item {
  flex: 1;
  padding: 18px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stats-bar__item:last-child { border: none; }
.stats-bar__num {
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════
   10. CARDS — ARTICLE
═══════════════════════════════════════════════════════ */
.card-article {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.card-article:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.card-article__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(140deg, #001533, #0050a0);
  position: relative;
}
.card-article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card-article:hover .card-article__img img { transform: scale(1.04); }
.card-article__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: .4;
}
.card-article__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card-article__tag  { margin-bottom: 10px; }
.card-article__title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--salt);
  margin-bottom: 8px;
  flex: 1;
}
.card-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

/* Article list (horizontal) */
.card-article--list {
  flex-direction: row;
}
.card-article--list .card-article__img {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 120px;
}
.card-article--list .card-article__title { font-size: 14px; }

/* ═══════════════════════════════════════════════════════
   11. CARDS — VIDÉO
═══════════════════════════════════════════════════════ */
.card-video {
  border-radius: var(--r-card);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.card-video:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); opacity: 1; }
.card-video__thumb {
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(140deg, #001533, #0050a0);
  overflow: hidden;
}
.card-video__thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,14,.9) 0%, rgba(8,8,14,.1) 60%);
}
.card-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255,79,42,.18), 0 8px 28px rgba(255,79,42,.45);
  transition: transform .2s, box-shadow .2s;
}
.card-video:hover .card-video__play { transform: translate(-50%,-60%) scale(1.1); }
.card-video__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; }
.card-video__tag  { margin-bottom: 6px; }
.card-video__title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 4px;
}
.card-video__meta { font-size: 11px; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════
   12. CARDS — COMPAGNIE
═══════════════════════════════════════════════════════ */
.card-compagnie {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none;
  color: var(--salt);
}
.card-compagnie:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,217,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  opacity: 1;
}
/* Logo sur fond clair → fonctionne avec TOUS les logos (couleur, photo, transparent) */
.card-compagnie__logo-box {
  height: 110px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.card-compagnie__logo-img {
  max-height: 70px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
}
.card-compagnie__logo-placeholder {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--ocean);
}
.card-compagnie__content {
  padding: 18px 20px 8px;
  flex: 1;
}
.card-compagnie__name {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--salt);
}
.card-compagnie__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}
.card-compagnie__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-compagnie__meta-item svg { opacity: .6; flex-shrink: 0; }
.card-compagnie__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.card-compagnie__cta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wave);
}
.card-compagnie__arrow {
  color: var(--wave);
  display: flex;
  transition: transform .2s;
}
.card-compagnie:hover .card-compagnie__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   13. CARDS — NAVIRE
═══════════════════════════════════════════════════════ */
.card-navire {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none;
  color: var(--salt);
}
.card-navire:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); opacity: 1; }
.card-navire__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(140deg, #001533, #003e80);
  position: relative;
}
.card-navire__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card-navire:hover .card-navire__img img { transform: scale(1.04); }
.card-navire__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: .3;
}
.card-navire__body { padding: 16px 18px 20px; flex: 1; }
.card-navire__name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card-navire__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
}
.card-navire__spec { display: flex; align-items: center; gap: 4px; }
.card-navire__spec svg { opacity: .6; }

/* Navire list (dans single-compagnie) */
.card-navire--list {
  flex-direction: row;
  align-items: center;
}
.card-navire--list .card-navire__img {
  width: 100px;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 80px;
}
.card-navire--list .card-navire__body { padding: 12px 14px; }
.card-navire--list .card-navire__name { font-size: 14px; margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════
   14. PAGE D'ACCUEIL
═══════════════════════════════════════════════════════ */
.home-articles  { padding: 64px 0; }
.home-videos    { padding: 64px 0; }
.home-compagnies { padding: 64px 0 80px; }
.home-about     { padding: 64px 24px; background: var(--coral); position: relative; overflow: hidden; }
.home-about__deco {
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--font-display);
  font-size: clamp(120px, 30vw, 220px);
  line-height: 1;
  color: rgba(255,255,255,.06);
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
}
.home-about__inner { position: relative; z-index: 2; max-width: 600px; }
.home-about .label { color: rgba(255,255,255,.6); }
.home-about .label::before { background: rgba(255,255,255,.6); }
.home-about__title {
  font-family: var(--font-display);
  font-size: clamp(44px,11vw,64px);
  line-height: .93;
  color: #fff;
  margin-bottom: 20px;
}
.home-about__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.88); margin-bottom: 28px; }
.home-about__duo  { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.home-about__avatars { display: flex; }
.home-about__av {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.home-about__av:last-child { margin-left: -12px; }
.home-about__duo-info .duo-names { font-family: var(--font-ui); font-size: 15px; font-weight: 800; color: #fff; }
.home-about__duo-info .duo-role  { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.65); }

/* Newsletter */
.home-nl { padding: 64px 20px; text-align: center; background: #0c0c14; border-top: 1px solid rgba(0,184,217,.12); }
.home-nl__icon { width: 52px; height: 52px; border: 1.5px solid var(--wave); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--wave); }
.home-nl__title { font-family: var(--font-display); font-size: clamp(36px,9vw,52px); letter-spacing: 1px; line-height: 1; margin-bottom: 12px; }
.home-nl__title span { color: var(--wave); }
.home-nl__sub { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 340px; margin-left: auto; margin-right: auto; }
.home-nl__form { max-width: 440px; margin: 0 auto; }
.home-nl__input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(0,184,217,.18);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.home-nl__input:focus { border-color: var(--wave); }
.home-nl__input::placeholder { color: rgba(255,255,255,.3); }
.home-nl__btn { width: 100%; justify-content: center; }

/* Section title + see all */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.section-header .see-all {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wave);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.section-header h2 { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   15. ARCHIVES
═══════════════════════════════════════════════════════ */
.archive-header {
  background: linear-gradient(140deg, #001533 0%, var(--ocean) 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.archive-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--wave) 1px, transparent 1px), linear-gradient(90deg, var(--wave) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .05;
}
.archive-header__inner { position: relative; z-index: 2; max-width: 600px; }
.archive-header .label { color: rgba(255,255,255,.6); }
.archive-header .label::before { background: rgba(255,255,255,.6); }
.archive-header__title { font-family: var(--font-display); font-size: clamp(48px,12vw,80px); color: #fff; line-height: .93; }
.archive-header__title span { color: var(--wave); }
.archive-header__desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.7); margin-top: 16px; max-width: 440px; }

.archive-wave { display: block; width: 100%; }

.archive-body { padding: 56px 0 80px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-btn);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--ink-2);
  transition: .2s;
}
.pagination a:hover { color: var(--salt); border-color: rgba(0,184,217,.3); opacity: 1; }
.pagination .current { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.section--light .pagination a, .section--light .pagination span { background: #fff; color: #555; border-color: #ddd; }
.section--light .pagination a:hover { color: var(--ocean); border-color: var(--ocean); }
.section--light .pagination .current { background: var(--ocean); color: #fff; border-color: var(--ocean); }

/* ═══════════════════════════════════════════════════════
   16. SINGLE ARTICLE
═══════════════════════════════════════════════════════ */
.single-hero {
  aspect-ratio: 21/9;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #001533, #0050a0);
}
.single-hero img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,14,.8) 0%, transparent 60%); }

.single-header {
  padding: 40px 20px 0;
  max-width: 780px;
  margin: 0 auto;
}
.single-header__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.single-header__date { font-size: 12px; color: var(--muted); }
.single-header__title { font-family: var(--font-display); font-size: clamp(36px,9vw,64px); line-height: .93; margin-bottom: 20px; }
.single-header__excerpt { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.single-content {
  padding: 40px 20px 64px;
  max-width: 780px;
  margin: 0 auto;
}
.single-content p  { font-size: 16px; font-weight: 300; line-height: 1.8; margin-bottom: 1.4em; color: rgba(244,239,230,.88); }
.single-content h2 { margin: 40px 0 16px; font-size: clamp(28px,7vw,42px); }
.single-content h3 { margin: 32px 0 12px; font-size: clamp(22px,5vw,32px); }
.single-content img   { border-radius: var(--r-card); margin: 24px 0; }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 1.4em; }
.single-content li { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(244,239,230,.88); margin-bottom: 6px; }
.single-content a  { color: var(--wave); }
.single-content blockquote {
  border-left: 3px solid var(--wave);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(0,184,217,.06);
  border-radius: 0 var(--r-card) var(--r-card) 0;
}
.single-content blockquote p { color: var(--salt); font-style: italic; margin: 0; }

/* section--light versions */
.section--light .single-content p    { color: rgba(8,8,14,.8); }
.section--light .single-content h2,
.section--light .single-content h3   { color: var(--ink); }
.section--light .single-content li   { color: rgba(8,8,14,.8); }

/* ═══════════════════════════════════════════════════════
   17. SINGLE COMPAGNIE
═══════════════════════════════════════════════════════ */
.compagnie-hero {
  background: linear-gradient(140deg, #001533 0%, #003e80 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.compagnie-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--wave) 1px, transparent 1px), linear-gradient(90deg, var(--wave) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .05;
}
.compagnie-hero__inner { position: relative; z-index: 2; }
.compagnie-hero__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--r-card);
  padding: 18px 28px;
  margin-bottom: 24px;
  max-width: 280px;
}
.compagnie-hero__logo img {
  max-height: 60px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}
.compagnie-hero__name { font-family: var(--font-display); font-size: clamp(48px,12vw,80px); color: #fff; line-height: .93; }
.compagnie-hero__name span { color: var(--wave); }

.compagnie-infos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 40px 0;
}
@media (min-width: 640px) { .compagnie-infos { grid-template-columns: repeat(4,1fr); } }

.compagnie-info-item {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 20px;
  text-align: center;
}
.compagnie-info-item__num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--wave);
  letter-spacing: 1px;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.compagnie-info-item__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   22. 404 & SEARCH
═══════════════════════════════════════════════════════ */
.error404-page, .search-page { padding: 100px 20px; text-align: center; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error404-page__num { font-family: var(--font-display); font-size: clamp(80px,25vw,180px); color: rgba(0,184,217,.15); line-height: 1; letter-spacing: 5px; }
.error404-page__title { font-family: var(--font-display); font-size: clamp(28px,7vw,48px); margin-bottom: 16px; }
.error404-page__text { color: var(--muted); font-weight: 300; margin-bottom: 32px; max-width: 340px; }

.search-form-wrap { max-width: 440px; margin: 0 auto 48px; display: flex; gap: 10px; }
.search-form-wrap input {
  flex: 1;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 13px 16px;
  color: var(--salt);
  font-size: 14px;
  outline: none;
}
.search-form-wrap input:focus { border-color: rgba(0,184,217,.4); }

/* ═══════════════════════════════════════════════════════
   23. FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: #040407;
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .footer-inner { padding: 0 32px; } }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--salt);
}
.footer-brand__mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--wave);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-brand__name { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; }
.footer-brand__name span { color: var(--wave); }
.footer-brand__tagline { font-size: 13px; font-weight: 300; color: rgba(244,239,230,.38); font-style: italic; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .2s, border-color .2s, transform .2s;
}
.footer-social:hover { color: var(--wave); border-color: rgba(0,184,217,.3); transform: translateY(-2px); opacity: 1; }

.footer-nav__title { font-family: var(--font-ui); font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; font-weight: 300; color: rgba(244,239,230,.55); transition: color .2s; }
.footer-nav a:hover { color: var(--salt); opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: rgba(244,239,230,.25);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ═══════════════════════════════════════════════════════
   24. WAVE DECORATORS
═══════════════════════════════════════════════════════ */
.wave-sep { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-sep svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════
   25. ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0) rotate(14deg); }
  50%      { transform: translateY(-7px) rotate(14deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.anim-1 { animation: fadeUp .7s .1s both; }
.anim-2 { animation: fadeUp .7s .25s both; }
.anim-3 { animation: fadeUp .7s .4s both; }
.anim-4 { animation: fadeUp .7s .55s both; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   26. RESPONSIVE EXTRAS
═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero { min-height: 88vh; }
  .hero__badge { right: 48px; width: 90px; height: 90px; }
  .hero__badge-symbol { font-size: 24px; }
  .contact-form { padding: 48px 44px; }
}
@media (max-width: 480px) {
  .hero__btns .btn { flex: 1; justify-content: center; font-size: 11px; padding: 13px 14px; }
  .card-article--list .card-article__img { width: 90px; }
}

/* ═══════════════════════════════════════════════════════
   27. WORDPRESS CORE OVERRIDES
═══════════════════════════════════════════════════════ */
.wp-caption { max-width: 100%; margin: 16px 0; }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; font-style: italic; }
.alignleft   { float: left; margin: 0 24px 16px 0; }
.alignright  { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.wp-block-image { margin: 24px 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.logged-in .site-nav { top: 32px; }
@media (max-width: 782px) { .logged-in .site-nav { top: 46px; } }


/* ═══════════════════════════════════════════════════════
   SINGLE NAVIRE
═══════════════════════════════════════════════════════ */

/* Hero image */
.sn-hero {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 480px;
  overflow: hidden;
  background: linear-gradient(140deg,#001533,#003e80);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sn-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sn-hero__empty {
  font-size: 80px;
  opacity: .2;
}

/* Header */
.sn-header {
  background: var(--ink);
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--border);
}
.sn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wave);
  margin-bottom: 14px;
  transition: opacity .2s;
}
.sn-back:hover { opacity: .7; }
.sn-title {
  font-family: var(--font-display);
  font-size: clamp(40px,11vw,72px);
  line-height: .93;
  letter-spacing: 1px;
  color: var(--salt);
  margin-bottom: 8px;
}
.sn-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}

/* Anchors bar */
.sn-anchors {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(8,8,14,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.sn-anchors__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sn-anchors__inner::-webkit-scrollbar { display: none; }
.sn-anchor {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}
.sn-anchor:hover { color: var(--salt); opacity: 1; }
.sn-anchor.active { color: var(--wave); border-bottom-color: var(--wave); }
.sn-anchor svg { flex-shrink: 0; }

/* Sections */
.sn-section { padding: 48px 0; }
.sn-section--alt { background: var(--ink-2); }

/* Keystats */
.sn-keystats {
  display: flex;
  background: linear-gradient(135deg,#001533,#003e80);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 32px;
}
.sn-keystat {
  flex: 1;
  padding: 24px 8px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.sn-keystat:last-child { border-right: none; }
.sn-keystat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px,8vw,52px);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.sn-keystat__lbl {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Specs grid */
.sn-specs-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}
@media(min-width:480px){ .sn-specs-grid{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:768px){ .sn-specs-grid{ grid-template-columns:repeat(4,1fr); } }
@media(min-width:1024px){ .sn-specs-grid{ grid-template-columns:repeat(5,1fr); } }

.sn-spec {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.sn-spec:hover { border-color: rgba(0,184,217,.3); transform: translateY(-2px); }
.sn-spec__ico {
  display: block;
  margin: 0 auto 10px;
  color: var(--wave);
  opacity: .8;
}
.sn-spec__val {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .5px;
  color: var(--salt);
  line-height: 1.2;
  margin-bottom: 5px;
}
.sn-spec__unit {
  font-size: 13px;
  color: var(--wave);
}
.sn-spec__key {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* YouTube */
.sn-yt {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #000;
}
.sn-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery */
.sn-gallery-main {
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink-2);
  cursor: zoom-in;
  margin-bottom: 10px;
}
.sn-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.sn-gallery-main:hover img { transform: scale(1.03); }

.sn-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.sn-thumbs::-webkit-scrollbar { display: none; }
.sn-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--ink-2);
  transition: border-color .2s, transform .2s;
}
.sn-thumb:hover { transform: translateY(-2px); }
.sn-thumb.active { border-color: var(--wave); }
.sn-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
@media(min-width:640px){ .sn-thumb{ width:100px; height:70px; } }

/* Lightbox */
.sn-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sn-lightbox__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.93);
  cursor: zoom-out;
}
.sn-lightbox__img {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}
.sn-lightbox__close {
  position: absolute;
  top: 14px; right: 16px;
  z-index: 3;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.sn-lightbox__close:hover { background: rgba(255,79,42,.7); }
.sn-lightbox__prev,
.sn-lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.sn-lightbox__prev { left: 10px; }
.sn-lightbox__next { right: 10px; }
.sn-lightbox__prev:hover,
.sn-lightbox__next:hover { background: rgba(0,80,160,.7); }

/* ═══════════════════════════════════════════════════════
   ANNUAIRE NAVIRES — Filtres
═══════════════════════════════════════════════════════ */
.dir-filters {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: rgba(8,8,14,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.dir-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.dir-search svg {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}
.dir-search input {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 12px 16px 12px 42px;
  color: var(--salt);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.dir-search input:focus { border-color: rgba(0,184,217,.4); }
.dir-search input::placeholder { color: rgba(244,239,230,.3); }

.dir-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 768px) { .dir-selects { grid-template-columns: repeat(4, 1fr); } }

.dir-select { display: flex; flex-direction: column; gap: 5px; }
.dir-select label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 2px;
}
.dir-select select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 10px 32px 10px 12px;
  color: var(--salt);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2300b8d9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s;
}
.dir-select select:focus { border-color: rgba(0,184,217,.4); }

.dir-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.dir-count {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--wave);
}
.dir-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: color .2s;
}
.dir-reset:hover { color: var(--salt); }

.dir-body { padding: 32px 0 80px; }

.dir-empty {
  text-align: center;
  padding: 60px 20px;
}

/* Carte masquée par filtre */
.card-navire.is-hidden { display: none !important; }

/* ── Newsletter feedback ── */
.dab-newsletter__feedback {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 0;
  min-height: 18px;
  transition: opacity .2s;
}
.dab-newsletter__feedback.is-success { color: var(--wave); }
.dab-newsletter__feedback.is-error   { color: var(--coral); }

/* ═══════════════════════════════════════════════════════
   ARTICLE À LA UNE (homepage)
═══════════════════════════════════════════════════════ */
.home-featured { padding: 56px 0 0; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--salt);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.featured-card:hover {
  border-color: rgba(0,184,217,.3);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
  transform: translateY(-3px);
  opacity: 1;
}
.featured-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(140deg,#001533,#0050a0);
}
.featured-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.featured-card:hover .featured-card__img img { transform: scale(1.03); }
.featured-card__img-placeholder { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:56px; opacity:.3; }
.featured-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(255,79,42,.4);
}
.featured-card__body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featured-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px,7vw,44px);
  line-height: .96;
  letter-spacing: .5px;
  margin-bottom: 14px;
  color: var(--salt);
}
.featured-card__excerpt {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}
.featured-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}
.featured-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wave);
  transition: gap .2s;
}
.featured-card:hover .featured-card__cta { gap: 14px; }

@media (min-width: 860px) {
  .featured-card { grid-template-columns: 1.3fr 1fr; }
  .featured-card__img { aspect-ratio: auto; height: 100%; min-height: 340px; }
  .featured-card__body { padding: 40px 36px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX VIDÉO YOUTUBE
═══════════════════════════════════════════════════════ */
.dab-video-trigger {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.dab-vlightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dab-vlightbox.is-open { display: flex; }
.dab-vlightbox__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: zoom-out;
}
.dab-vlightbox__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}
.dab-vlightbox__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.dab-vlightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 3;
  transition: background .2s;
}
.dab-vlightbox__close:hover { background: rgba(255,79,42,.7); }
