/* ─────────────────────────────────────────────────────────
   PLONGÉE.tv — version « Guide »
   Direction : sobre, élégante, très lisible.
   Pensée pour un public 50+ — papier, lecture confortable.
   ───────────────────────────────────────────────────────── */

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

:root {
  /* Surfaces — papier crème + blanc */
  --paper:     #f4eee0;
  --paper-2:   #ebe5d4;
  --card:      #ffffff;
  --rule:      rgba(28, 35, 50, .12);
  --rule-2:    rgba(28, 35, 50, .22);

  /* Texte navy chaud, très lisible */
  --ink:       #1a1f2c;
  --ink-2:     #353c4d;
  --ink-mute:  #6b6557;
  --ink-dim:   #9a9485;

  /* Accent unique : bleu pétrole */
  --accent:        #2c5f74;
  --accent-hover:  #1f4858;
  --accent-soft:   rgba(44, 95, 116, .08);

  /* Spacing */
  --pad: 64px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  /* Type — TAILLES PLUS GRANDES pour la lecture confort */
  --serif:  'Cormorant Garamond', 'Source Serif Pro', Georgia, serif;
  --sans:   'Source Sans 3', -apple-system, sans-serif;
  --base:   17px;            /* ⇧ 17px de base au lieu de 14-15 */
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── liens : SOULIGNEMENT par défaut, plus familier pour les seniors ── */
a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--accent-hover); text-decoration-thickness: 2px; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--paper); }

/* ── focus visible — accessibilité clavier ── */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═════════════════════════════════════════════
   HEADER (haut de page, classique)
   ═════════════════════════════════════════════ */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px 18px;
  border-bottom: 1px solid var(--rule);
}
.site-header-top .date {
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: .02em;
  flex: 1;
  font-style: italic;
  font-family: var(--serif);
}
.site-header-top .actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-header-top .actions a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
}
.site-header-top .actions a:hover { color: var(--accent); }
.site-header-top .actions .sep {
  width: 1px;
  height: 18px;
  background: var(--rule-2);
}
.site-header-top .actions .subscribe {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: background .2s;
}
.site-header-top .actions .subscribe:hover { background: var(--accent); color: #fff; }

.site-logo {
  text-align: center;
  padding: 28px 64px 32px;
}
.site-logo a {
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
}
.site-logo h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -.015em;
  line-height: 1;
  font-style: italic;
}
.site-logo h1 strong { font-style: normal; font-weight: 600; letter-spacing: -.025em; }
.site-logo .sub {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  font-weight: 500;
}

/* Nav principale */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 14px 32px 18px;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 15.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
  letter-spacing: -.005em;
}
.site-nav a:hover { background: var(--paper-2); color: var(--ink); }
.site-nav a.active { color: var(--accent); font-weight: 600; }
.site-nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
  border-radius: 1px;
}

/* ═════════════════════════════════════════════
   HERO — composition centrée, calme
   ═════════════════════════════════════════════ */
.hero {
  padding: 56px 64px 72px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text .kicker {
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-text h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-text h2 em { font-style: italic; color: var(--accent); }
.hero-text .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-text .meta {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 14.5px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.hero-text .meta span { display: inline-flex; gap: 6px; align-items: center; }
.hero-text .meta b { color: var(--ink); font-weight: 600; }
.hero-text .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-dim); display: inline-block; }

.btn-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: background .2s;
}
.btn-watch:hover { background: var(--accent); color: #fff; text-decoration: none; }
.btn-watch::before {
  content: '▶';
  font-size: 11px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  padding-left: 2px;
  transition: background .2s, color .2s;
}
.btn-watch:hover::before { background: #fff; color: var(--accent); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: var(--paper-2); border-color: var(--ink); text-decoration: none; }

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px -20px rgba(28, 35, 50, .35);
}
.hero-image .caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  font-family: var(--serif);
  padding: 0 4px;
}
.hero-image .caption b { font-style: normal; color: var(--ink); font-weight: 600; font-family: var(--sans); }

/* ═════════════════════════════════════════════
   SECTIONS — claires, espacées
   ═════════════════════════════════════════════ */
.section {
  padding: 80px 64px;
  border-bottom: 1px solid var(--rule);
  max-width: 1400px;
  margin: 0 auto;
}
.section-head {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 22px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .desc {
  font-size: 16px;
  color: var(--ink-mute);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.55;
}
.section-head .all {
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 1px solid var(--accent);
}
.section-head .all:hover { color: var(--accent-hover); border-bottom-width: 2px; }

/* ═════════════════════════════════════════════
   CARDS — grandes, lisibles, 3 par ligne
   ═════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.video-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(28, 35, 50, .25);
  text-decoration: none;
}

.video-card .thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-2);
}
.video-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.video-card:hover .thumb img { transform: scale(1.04); }

.video-card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.video-card .runtime {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(28, 35, 50, .9);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .02em;
}

.video-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.video-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .desc {
  font-size: 15.5px;
  color: var(--ink-mute);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.video-card .meta .star { color: #b4623a; font-weight: 600; }
.video-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-dim); }

/* ═════════════════════════════════════════════
   FEATURED ARTICLE (magazine — 1 grand + 2 secondaires)
   ═════════════════════════════════════════════ */
.mag-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.mag-feat {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.mag-feat:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 16px 32px -12px rgba(28,35,50,.25);
  text-decoration: none;
}
.mag-feat .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.mag-feat .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.mag-feat:hover .thumb img { transform: scale(1.03); }
.mag-feat .body { padding: 32px 36px 34px; }
.mag-feat .when {
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 14px;
}
.mag-feat h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.mag-feat p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.mag-feat .read {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mag-feat:hover .read { gap: 10px; }

.mag-list { display: flex; flex-direction: column; gap: 18px; }
.mag-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: 160px 1fr;
  transition: transform .25s, border-color .2s;
}
.mag-card:hover { transform: translateY(-2px); border-color: var(--ink); text-decoration: none; }
.mag-card .thumb { overflow: hidden; }
.mag-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.mag-card .body { padding: 18px 22px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.mag-card .cat {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.mag-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.mag-card .when { font-size: 13px; color: var(--ink-mute); font-style: italic; font-family: var(--serif); }

/* ═════════════════════════════════════════════
   NEWSLETTER — calme, claire
   ═════════════════════════════════════════════ */
.newsletter {
  padding: 72px 64px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.newsletter-inner { max-width: 720px; margin: 0 auto; }
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.newsletter h2 em { font-style: italic; color: #d8b88f; }
.newsletter p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 238, 224, .75);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-family: inherit;
  font-size: 15.5px;
  padding: 12px 18px;
}
.newsletter input::placeholder { color: rgba(244,238,224,.5); }
.newsletter button {
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s;
}
.newsletter button:hover { background: #fff; }
.newsletter .small {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(244, 238, 224, .55);
  font-style: italic;
  font-family: var(--serif);
}

/* ═════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════ */
footer {
  padding: 56px 64px 36px;
  background: var(--paper-2);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.ft-brand h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}
.ft-brand p { font-size: 15px; color: var(--ink-mute); line-height: 1.6; max-width: 320px; margin-bottom: 18px; }
.ft-brand .socials { display: flex; gap: 12px; }
.ft-brand .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: background .2s, border-color .2s;
}
.ft-brand .socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.ft-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-col ul a {
  font-size: 15.5px;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .15s;
}
.ft-col ul a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.ft-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
}

/* ═════════════════════════════════════════════
   PAGE LOGIN (sobre, accessible)
   ═════════════════════════════════════════════ */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  background: var(--paper);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 40px 36px;
  box-shadow: 0 16px 40px -16px rgba(28,35,50,.18);
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 24px;
}
.auth-card .auth-logo h1 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
}
.auth-card .auth-logo h1 strong { font-style: normal; }
.auth-card h1.title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 8px;
  color: var(--ink);
}
.auth-card .auth-sub {
  text-align: center;
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.auth-field { margin-bottom: 18px; }
.auth-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  padding: 13px 14px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.auth-field input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 22px;
  font-size: 14.5px;
}
.auth-row label { color: var(--ink-2); display: flex; align-items: center; gap: 7px; cursor: pointer; }
.auth-row a { color: var(--accent); }

.btn-primary {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 14px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 999px;
  transition: background .2s;
  font-family: inherit;
}
.btn-primary:hover { background: var(--accent); color: #fff; }

.auth-sep {
  text-align: center;
  margin: 22px 0;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  font-weight: 500;
}
.auth-sep::before, .auth-sep::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--rule);
}
.auth-sep::before { left: 0; }
.auth-sep::after { right: 0; }

.auth-social { display: flex; gap: 8px; margin-bottom: 24px; }
.btn-soc {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  color: var(--ink);
  padding: 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
  font-family: inherit;
}
.btn-soc:hover { background: var(--paper-2); border-color: var(--ink); }

.auth-foot { text-align: center; font-size: 14.5px; color: var(--ink-mute); }
.auth-foot a { color: var(--accent); font-weight: 600; }

/* ═════════════════════════════════════════════
   PAGE VIDEO — sobre, lecture confortable
   ═════════════════════════════════════════════ */
.player-section { background: var(--ink); padding-top: 0; }
.player {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 78vh;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.player-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.4); }
.player-overlay {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.big-play {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .2s;
  cursor: pointer;
}
.big-play:hover { transform: scale(1.05); }
.big-play svg { color: var(--ink); margin-left: 5px; }
.player-info {
  font-size: 14px;
  color: rgba(244, 238, 224, .75);
  font-style: italic;
  font-family: var(--serif);
}

.video-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
}
.vid-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--ink);
}
.vid-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.vid-meta b { color: var(--ink); font-weight: 600; }
.vid-meta .tag {
  background: var(--paper-2);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
.hero-rating { color: #b4623a; font-weight: 700; }

.vid-actions { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.action-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: var(--card);
  border: 1px solid var(--rule-2);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 999px;
  font-family: inherit;
  transition: background .2s, border-color .2s;
}
.action-btn:hover { background: var(--paper-2); border-color: var(--ink); }
.action-btn.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.action-btn.primary:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.vid-desc {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 28px 32px;
  border-radius: var(--r-md);
  margin-bottom: 28px;
}
.vid-desc h3 {
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.vid-desc p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }

.vid-credits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
}
.vid-credit {
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.vid-credit:nth-child(2n) { border-right: none; }
.vid-credit:nth-last-child(-n+2) { border-bottom: none; }
.vid-credit .lbl {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 4px;
}
.vid-credit .val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.related-side h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.related-list { display: flex; flex-direction: column; gap: 4px; }
.related-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: var(--r-sm);
  align-items: start;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s;
}
.related-item:hover { background: var(--paper-2); text-decoration: none; }
.related-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: var(--paper-2);
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb .runtime {
  position: absolute;
  bottom: 4px; right: 4px;
  background: rgba(28,35,50,.85);
  color: var(--paper);
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.related-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-sub { font-size: 12.5px; color: var(--ink-mute); font-style: italic; font-family: var(--serif); }

/* ═════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .site-header-top, .site-logo, .hero, .section, .newsletter, footer { padding-left: 32px; padding-right: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image img { aspect-ratio: 16/10; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .mag-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .video-container { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 640px) {
  .site-header-top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
  }
  .site-header-top .date { font-size: 12px; flex: 1 1 100%; text-align: center; order: 2; }
  .site-header-top .actions { justify-content: center; gap: 10px; order: 1; flex: 1 1 100%; }
  .site-header-top .actions a { font-size: 13px; }
  .site-header-top .actions .subscribe { padding: 7px 16px; font-size: 13px; }

  .site-logo { padding: 14px 18px 16px; }
  .site-logo h1 { font-size: 32px; }
  .site-logo .sub { font-size: 10px; letter-spacing: .25em; margin-top: 8px; }

  .site-nav {
    padding: 6px 12px 10px;
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { padding: 8px 12px; font-size: 14px; flex-shrink: 0; }

  /* Hero : stack image avant texte */
  .hero { padding: 24px 18px 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 18px; }
  .hero-image { order: -1; }
  .hero-image img { aspect-ratio: 16/10; }
  .hero-image .caption { font-size: 11.5px; flex-direction: column; gap: 4px; align-items: flex-start; }
  .hero-text .kicker { font-size: 11px; letter-spacing: .2em; margin-bottom: 12px; }
  .hero-text h2 { font-size: 36px; margin-bottom: 14px; }
  .hero-text .lede { font-size: 16px; margin-bottom: 18px; }
  .hero-text .meta { gap: 10px; font-size: 13px; padding: 10px 0; margin-bottom: 18px; }
  .btn-watch { padding: 12px 22px; font-size: 14.5px; }
  .btn-secondary { padding: 12px 18px; font-size: 14px; }

  /* Sections */
  .section { padding: 36px 18px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; padding-bottom: 16px; }
  .section-head h2 { font-size: 26px; }
  .section-head .desc { font-size: 14px; }

  /* Cards 1 col */
  .cards-grid { grid-template-columns: 1fr; gap: 22px; }
  .video-card h3 { font-size: 20px; }
  .video-card .desc { font-size: 14.5px; }
  .video-card .body { padding: 18px 20px 22px; }

  /* Magazine */
  .mag-grid { gap: 14px; }
  .mag-feat .body { padding: 22px 22px 24px; }
  .mag-feat h3 { font-size: 22px; }
  .mag-feat p { font-size: 14.5px; }
  .mag-card { grid-template-columns: 90px 1fr; }
  .mag-card h4 { font-size: 15px; }

  /* Newsletter */
  .newsletter { padding: 36px 18px; }
  .newsletter form { flex-direction: column; gap: 8px; padding: 0; background: transparent; border: none; max-width: 100%; }
  .newsletter input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: 12px 18px; }
  .newsletter button { padding: 12px 24px; }

  /* Footer */
  footer { grid-template-columns: 1fr; padding: 32px 18px 22px; gap: 22px; }
  .ft-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }

  /* Login + video */
  .auth-card { padding: 28px 24px; }
  .auth-card h1.title { font-size: 24px; }
  .video-container { padding: 24px 18px; gap: 24px; }
  .vid-title { font-size: 26px; }
  .vid-meta { font-size: 13px; gap: 10px; }
  .vid-credits { grid-template-columns: 1fr; }
  .vid-credit { border-right: none !important; }
  .related-item { grid-template-columns: 100px 1fr; }
}

/* ═════════════════════════════════════════════
   THEMES
   ═════════════════════════════════════════════ */

/* B · Sombre */
html.theme-b {
  --paper:        #1a1f2c;
  --paper-2:      #232938;
  --card:         #2a3140;
  --rule:         rgba(244, 238, 224, .12);
  --rule-2:       rgba(244, 238, 224, .22);
  --ink:          #f4eee0;
  --ink-2:        #d6cdb6;
  --ink-mute:     #95918a;
  --ink-dim:      #6b6557;
  --accent:       #4cc9f0;
  --accent-hover: #80d8ed;
  --accent-soft:  rgba(76, 201, 240, .12);
}
html.theme-b body { color-scheme: dark; }
html.theme-b .video-card .badge { background: var(--card); color: var(--ink); }
html.theme-b .video-card .runtime { background: rgba(244, 238, 224, .9); color: var(--paper); }
html.theme-b .newsletter { background: #0d1119; }
html.theme-b .newsletter h2 em { color: var(--accent); }

/* C · Sépia */
html.theme-c {
  --paper:        #f0e6d2;
  --paper-2:      #e3d6b9;
  --card:         #faf3e3;
  --rule:         rgba(58, 42, 26, .14);
  --rule-2:       rgba(58, 42, 26, .26);
  --ink:          #3a2a1a;
  --ink-2:        #5a4632;
  --ink-mute:     #8b7355;
  --ink-dim:      #b8a888;
  --accent:       #8b5a3c;
  --accent-hover: #6e4530;
  --accent-soft:  rgba(139, 90, 60, .10);
}
