/* Verres & Controverses — feuille de style principale
   Palette et rythme définis dans design-tokens.css (repris ci-dessous, étendu). */

:root {
  --vc-navy: #0c1c2b;
  --vc-navy-deep: #07131e;
  --vc-navy-card: #173247;
  --vc-ice: #c7e6ef;
  --vc-white: #ffffff;
  --vc-yellow: #f0d65b;
  --vc-pink: #ef9fbd;
  --vc-green: #a7c986;
  --content: 1200px;
  --text: 720px;
  --radius: 18px;
  --gap: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--vc-navy);
  color: var(--vc-white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: "Asket", "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: .01em;
}

p { margin: 0 0 1em; }

.container {
  width: min(calc(100% - 48px), var(--content));
  margin: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vc-yellow);
  color: var(--vc-navy);
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--vc-yellow);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 22px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand__name {
  font-family: "Asket", "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.05;
  white-space: nowrap;
}

.primary-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 600;
}
.primary-nav__list a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: border-color .15s ease;
}
.primary-nav__list a:hover,
.primary-nav__list a:focus-visible { border-color: var(--vc-ice); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.btn {
  display: inline-block;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .95rem;
}
.btn--ghost {
  background: rgba(12,28,43,.55);
  border-color: rgba(199,230,239,.5);
  color: var(--vc-white);
}
.btn--ghost:hover { border-color: var(--vc-ice); background: rgba(12,28,43,.8); }
.btn--solid {
  background: var(--vc-yellow);
  color: var(--vc-navy);
}
.btn--solid:hover { background: #f7e488; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--vc-white);
}
.nav-toggle__bar { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; margin: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  top: -40%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  will-change: transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,19,30,.55) 0%, rgba(7,19,30,.25) 38%, rgba(7,19,30,.75) 100%);
  z-index: -1;
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-top: 170px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.hero__platforms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero__platforms a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--vc-ice);
  opacity: .9;
}
.hero__platforms img { width: 26px; height: 26px; }
.hero__platforms a:hover { opacity: 1; }

.hero__main { text-align: center; }
.hero__badge {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero__tagline {
  margin-top: 10px;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--vc-white);
}
.hero__signature {
  display: inline-block;
  margin-top: 22px;
  background: rgba(7,19,30,.65);
  border: 1px solid rgba(199,230,239,.25);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: clamp(.75rem, 1.4vw, .95rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero__cta { margin-top: 30px; }

.hero__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.hero__tags li {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--vc-ice);
  opacity: .9;
}
.hero__tags li:last-child { color: var(--vc-yellow); opacity: 1; }

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 150px; text-align: center; }
  .hero__platforms { flex-direction: row; justify-content: center; order: 3; }
  .hero__tags { flex-direction: row; justify-content: center; align-items: center; order: 4; flex-wrap: wrap; }
  .hero__tags li::after { content: "•"; margin-left: 10px; color: var(--vc-ice); opacity: .5; }
  .hero__tags li:last-child::after { content: ""; }
}

@media (max-width: 768px) {
  .site-header { padding: 16px 0; }
  .primary-nav, .header-actions .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; width: 44px; height: 44px; padding: 0; gap: 5px; }
  .hero { min-height: 640px; }
  .hero__inner { padding-top: 120px; padding-bottom: 60px; }
  .hero__badge { width: 108px; height: 108px; }
  .hero__signature { padding: 10px 18px; }
}

@media (max-width: 480px) {
  .hero__signature span { display: inline-block; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--vc-navy-deep);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform .25s ease;
}
.mobile-nav[data-open="true"] { transform: translateY(0); }
.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--vc-white);
  border-radius: 10px;
  padding: 8px 12px;
}
.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
}
.mobile-nav__list a { text-decoration: none; }

/* ---------- Section shell ---------- */
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section__eyebrow {
  color: var(--vc-ice);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  max-width: 900px;
}
.section__lead {
  margin-top: 18px;
  max-width: var(--text);
  font-size: 1.15rem;
  color: var(--vc-ice);
}
.section__divider {
  border: none;
  border-top: 2px solid rgba(199,230,239,.25);
  margin: 0;
}

/* ---------- Shorts ---------- */
.shorts-intro { margin-bottom: 36px; }
.shorts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}
.short {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--vc-navy-card), #0f2635);
  border: 1px solid rgba(199,230,239,.35);
}
.short__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.short__trigger:hover .short__play { transform: translate(-50%,-50%) scale(1.08); background: var(--vc-yellow); color: var(--vc-navy); }
.short__trigger:hover .short__bg { transform: scale(1.03); }
.short[data-playing="true"] .short__trigger { display: none; }
.short__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.short__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(7,19,30,.45);
  border: 1px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vc-white);
  backdrop-filter: blur(2px);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.short__player {
  position: absolute;
  inset: 0;
  display: none;
}
.short[data-playing="true"] .short__player { display: block; }
.short__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.short__stop {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7,19,30,.75);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--vc-white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .shorts {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .short { min-width: 46vw; flex-shrink: 0; scroll-snap-align: start; }
}
@media (max-width: 768px) {
  .short { min-width: 78vw; }
}

/* ---------- Podcast ---------- */
.podcast {
  background: var(--vc-navy);
}
.podcast__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.podcast__copy p { max-width: var(--text); }
.podcast__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.podcast__visual {
  position: relative;
  aspect-ratio: 1600 / 963;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(199,230,239,.25);
}
.podcast__visual-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.podcast__visual-trigger img { width: 100%; height: 100%; object-fit: cover; display: block; }
.podcast__visual-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(7,19,30,.5);
  border: 1px solid rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--vc-white);
  backdrop-filter: blur(2px);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.podcast__visual-trigger:hover .podcast__visual-play { transform: translate(-50%,-50%) scale(1.08); background: var(--vc-yellow); color: var(--vc-navy); }
.podcast__pillars {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--vc-navy);
}
.podcast__pillars li {
  background: var(--vc-ice);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
}
.podcast__panel {
  background: var(--vc-navy-card);
  border: 1px solid rgba(199,230,239,.25);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.podcast__listen-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.podcast__yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--vc-white);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199,230,239,.08);
  border: 1px solid rgba(199,230,239,.2);
}
.podcast__yt-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.podcast__yt-btn:hover { background: rgba(199,230,239,.18); }
.podcast__listen-label {
  color: var(--vc-ice);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  opacity: .8;
}
.podcast__soon-platforms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.podcast__soon-platforms li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(199,230,239,.06);
  border: 1px dashed rgba(199,230,239,.3);
  color: var(--vc-ice);
  opacity: .8;
}
.podcast__soon-platforms svg { width: 16px; height: 16px; flex-shrink: 0; }

.podcast__soon {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--vc-ice);
  font-size: .92rem;
  opacity: .85;
}

@media (max-width: 1024px) {
  .podcast__grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
}
.about__copy p { max-width: var(--text); }
.about__names {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.about__names li { font-weight: 700; font-size: 1.05rem; }
.about__names span {
  display: block;
  font-weight: 400;
  font-size: .85rem;
  color: var(--vc-ice);
  text-transform: uppercase;
  margin-top: 2px;
}
.about__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 10px;
  color: var(--vc-ice);
  border-radius: 6px;
  transition: color .15s ease;
}
.about__linkedin:hover { color: var(--vc-white); }
.about__linkedin svg { width: 100%; height: 100%; }
.about__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(199,230,239,.25);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__memory {
  background: var(--vc-navy-card);
  border-left: 4px solid var(--vc-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 28px;
  align-self: start;
}
.about__memory p { color: var(--vc-ice); margin: 0; }
.about__memory strong { color: var(--vc-white); }

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ---------- Coulisses (flux photo) ---------- */
.coulisses__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.coulisses__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(199,230,239,.25);
  padding: 0;
  cursor: pointer;
  background: var(--vc-navy-card);
}
.coulisses__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.coulisses__item:hover img { transform: scale(1.06); }

@media (max-width: 1024px) {
  .coulisses__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 30vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 32px -24px 0;
    padding: 0 24px 8px;
  }
  .coulisses__item { scroll-snap-align: start; }
}
@media (max-width: 768px) {
  .coulisses__grid { grid-auto-columns: 42vw; }
}
@media (max-width: 480px) {
  .coulisses__grid { gap: 8px; }
}

/* ---------- Lightbox photo ---------- */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4,10,16,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.photo-lightbox[data-open="true"] { display: flex; }
.photo-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  display: block;
}
.photo-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7,19,30,.75);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--vc-white);
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 4px;
  cursor: pointer;
}
.photo-lightbox__nav:hover { background: var(--vc-yellow); color: var(--vc-navy); }
.photo-lightbox__nav--prev { left: 16px; }
.photo-lightbox__nav--next { right: 16px; }
.photo-lightbox__count {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
  color: var(--vc-ice);
  font-size: .95rem;
}
@media (max-width: 768px) {
  .photo-lightbox__nav { width: 40px; height: 40px; }
  .photo-lightbox__nav--prev { left: 8px; }
  .photo-lightbox__nav--next { right: 8px; }
}
.photo-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7,19,30,.75);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--vc-white);
  font-size: 1.1rem;
  cursor: pointer;
}

/* ---------- Bandeau statistiques ---------- */
.stats {
  padding: 72px 0 64px;
  background:
    radial-gradient(60% 120% at 15% 0%, rgba(199,230,239,.12), transparent 60%),
    radial-gradient(50% 120% at 90% 100%, rgba(240,214,91,.09), transparent 60%),
    linear-gradient(180deg, var(--vc-navy) 0%, var(--vc-navy-deep) 100%);
  border-top: 1px solid rgba(199,230,239,.12);
}
.stats__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-bottom: 32px;
}
.stats__title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
}
.stats__updated {
  margin: 0;
  color: var(--vc-ice);
  font-size: .9rem;
  opacity: .75;
}
.stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--gap);
}
.stats__tile {
  --accent: var(--vc-ice);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(23,50,71,.9), rgba(12,28,43,.9));
  border: 1px solid rgba(199,230,239,.18);
  overflow: hidden;
}
.stats__tile[hidden] { display: none; }
.stats__tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}
.stats__tile::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .08;
}
.stats__tile--red { --accent: #ff4b4b; }
.stats__tile--pink { --accent: var(--vc-pink); }
.stats__tile--yellow { --accent: var(--vc-yellow); }
.stats__tile--ice { --accent: var(--vc-ice); }
.stats__tile--green { --accent: var(--vc-green); }
.stats__tile--violet { --accent: #b9a3ff; }
.stats__tile--total { --accent: var(--vc-white); }
.stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 12px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}
.stats__icon svg { width: 22px; height: 22px; }
.stats__value {
  font-family: "Asket", "Barlow Condensed", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  color: var(--vc-white);
}
.stats__label {
  color: var(--vc-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .95rem;
}
.stats__source {
  color: var(--vc-ice);
  font-size: .8rem;
  opacity: .7;
}

@media (max-width: 768px) {
  .stats { padding: 56px 0 48px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__tile:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--vc-navy-deep);
  padding: 64px 0 32px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.site-footer__top img { width: 64px; height: 64px; border-radius: 50%; }
.site-footer__brand { font-weight: 800; font-size: 1.6rem; text-transform: uppercase; }
.site-footer__contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.site-footer__contact a { text-decoration: none; color: var(--vc-ice); font-size: 1.05rem; }
.site-footer__contact a:hover { color: var(--vc-white); }
.site-footer__social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--vc-ice);
  border: 1px solid rgba(199,230,239,.3);
  transition: color .15s ease, border-color .15s ease;
}
.site-footer__social a:hover { color: var(--vc-white); border-color: rgba(255,255,255,.6); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(199,230,239,.15);
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(199,230,239,.7);
}
.site-footer__legal { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.site-footer__legal a { text-decoration: none; color: inherit; }
.site-footer__legal a:hover { color: var(--vc-white); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(4,10,16,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[data-open="true"] { display: flex; }
.lightbox__frame {
  position: relative;
  width: min(92vw, 480px);
}
.lightbox__frame video {
  width: 100%;
  max-height: 86vh;
  border-radius: 14px;
  background: #000;
  display: block;
}
.lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--vc-white);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 1rem;
  cursor: pointer;
}

/* ---------- Episodes placeholder page ---------- */
.episodes-hero {
  padding: 180px 0 90px;
  text-align: center;
}
.episodes-hero p { max-width: var(--text); margin: 18px auto 0; color: var(--vc-ice); }
