/* ==========================================================================
   Videos — screening room
   A cinema programme: colour-wash backdrop, slate numbering, certificate-style
   runtime chips, and click-to-play facades so YouTube loads nothing until asked.
   Prefix: vd-
   ========================================================================== */

.vd-page { background: #030303; position: relative; overflow: clip; }
@supports not (overflow: clip) { .vd-page { overflow: hidden; } }

.vd-wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 5; }

/* ------------------------------------------------------------------ hero */

.vd-hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
/* The four posters, blurred into a colour wash behind the type. */
.vd-hero__wash { position: absolute; inset: -10%; display: grid; grid-template-columns: repeat(4, 1fr); }
.vd-hero__wash img { width: 100%; height: 100%; object-fit: cover; filter: blur(70px) saturate(1.5); opacity: .5; }
.vd-hero__vig {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 50% 45%, rgba(0,0,0,.45), rgba(0,0,0,.93) 78%),
    linear-gradient(180deg, rgba(0,0,0,.9), transparent 30%, rgba(3,3,3,1) 96%);
}
/* Fine grain, so the wash does not band on large screens. */
.vd-hero__grain {
  position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.vd-hero__kick {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; border: 1px solid rgba(255,255,255,.24);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 30px;
  text-transform: uppercase; letter-spacing: .2em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
}
.vd-hero__kick i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary); display: block;
  box-shadow: 0 0 0 0 rgba(216,35,52,.7); animation: vd-blink 2.6s infinite;
}
@keyframes vd-blink { 70% { box-shadow: 0 0 0 8px rgba(216,35,52,0); } 100% { box-shadow: 0 0 0 0 rgba(216,35,52,0); } }
@media (prefers-reduced-motion: reduce) { .vd-hero__kick i { animation: none; } }

.vd-hero h1 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 6.4rem); line-height: .92; letter-spacing: -.03em;
  max-width: 16ch;
}
.vd-hero h1 em { font-style: normal; color: var(--primary); }
.vd-hero__lead {
  margin: 32px 0 0; color: rgba(255,255,255,.68);
  font-weight: 300; font-size: 18px; line-height: 1.8; max-width: 54ch;
}

.vd-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 50px; border-top: 1px solid rgba(255,255,255,.18);
}
.vd-stats div { padding: 22px 44px 0 0; margin-right: 44px; border-right: 1px solid rgba(255,255,255,.12); }
.vd-stats div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.vd-stats b {
  display: block; color: #fff;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700;
  font-size: 2rem; line-height: 1; letter-spacing: -.02em;
}
.vd-stats b i { color: var(--primary); font-style: normal; }
.vd-stats span {
  display: block; margin-top: 10px; color: rgba(255,255,255,.42);
  text-transform: uppercase; letter-spacing: .18em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
}

/* ------------------------------------------------------------- programme */

.vd-programme { padding: 100px 0 40px; }
.vd-programme__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 26px; margin-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.vd-programme__head h2 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.05;
}
.vd-programme__head p { margin: 0; color: rgba(255,255,255,.45); font-weight: 300; font-size: 14px; max-width: 44ch; }

.vd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
.vd-film { display: flex; flex-direction: column; }

/* --------------------------------------------------------- the facade */

.vd-screen {
  position: relative; aspect-ratio: 16 / 9;
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.14);
  overflow: hidden; cursor: pointer; display: block; width: 100%;
  padding: 0; text-align: left;
}
.vd-screen img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1), filter .5s ease;
  filter: brightness(.82) saturate(.95);
}
.vd-screen:hover img { transform: scale(1.045); filter: brightness(1) saturate(1.05); }
.vd-screen:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.vd-screen__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%;
  background: rgba(216,35,52,.94);
  display: flex; align-items: center; justify-content: center;
  transition: all .45s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 12px 44px rgba(0,0,0,.5);
}
.vd-screen__play:before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  transform: scale(.85); opacity: 0;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
}
.vd-screen:hover .vd-screen__play { background: #fff; transform: translate(-50%, -50%) scale(1.08); }
.vd-screen:hover .vd-screen__play:before { transform: scale(1); opacity: 1; }
.vd-screen__play svg { width: 26px; height: 26px; margin-left: 4px; fill: #fff; transition: fill .4s ease; }
.vd-screen:hover .vd-screen__play svg { fill: var(--primary); }

/* Slate number, top left — like a film can label. */
.vd-screen__slate {
  position: absolute; top: 0; left: 0; z-index: 3;
  background: rgba(0,0,0,.8); border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #fff; padding: 12px 16px;
  font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em;
}
.vd-screen__slate i { color: rgba(255,255,255,.4); font-style: normal; }

/* Runtime chip, bottom right — like a certificate. */
.vd-screen__run {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  background: rgba(0,0,0,.82); border: 1px solid rgba(255,255,255,.24);
  color: #fff; padding: 6px 12px;
  font-family: 'Chakra Petch', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .1em;
}

.vd-screen iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ------------------------------------------------------------ the notes */

.vd-note { padding-top: 26px; }
.vd-note__meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 14px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .16em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 600;
}
.vd-note__meta span:not(:last-child):after { content: " ·"; color: var(--primary); }
.vd-note h3 {
  margin: 0 0 14px; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.2;
}
.vd-note p { margin: 0 0 20px; color: rgba(255,255,255,.58); font-weight: 300; font-size: 15px; line-height: 1.8; }
.vd-note__links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }

.vd-yt {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 5px;
  transition: color .35s ease, border-color .35s ease;
}
.vd-yt svg { width: 22px; height: 16px; flex: none; }
.vd-yt svg .yt-body { fill: var(--primary); transition: fill .35s ease; }
.vd-yt svg .yt-tri { fill: #fff; }
.vd-yt:hover { color: var(--primary); border-bottom-color: var(--primary); }
.vd-yt:hover svg .yt-body { fill: #fff; }

.vd-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.vd-tag {
  border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.5);
  padding: 6px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .1em;
  font-family: 'Chakra Petch', sans-serif; font-size: 10px; font-weight: 500;
}

/* --------------------------------------------------------- channel strip */

.vd-channel { padding: 100px 0 110px; }
.vd-channel__in {
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(120deg, rgba(216,35,52,.14), #060606 58%);
  padding: 54px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.vd-channel__id { display: flex; align-items: center; gap: 22px; }
.vd-channel__mark {
  width: 66px; height: 66px; flex: none;
  border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
}
.vd-channel__mark svg { width: 32px; height: 23px; }
.vd-channel__mark .yt-body { fill: var(--primary); }
.vd-channel__mark .yt-tri { fill: #fff; }
.vd-channel h2 {
  margin: 0; color: #fff; text-transform: uppercase;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600; font-size: 1.6rem; line-height: 1.1;
}
.vd-channel p { margin: 8px 0 0; color: rgba(255,255,255,.55); font-weight: 300; font-size: 15px; }
.vd-channel__acts { display: flex; gap: 14px; flex-wrap: wrap; }
.vd-channel__acts a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 16px 30px;
  border: 2px solid var(--primary); background: var(--primary); color: #fff;
  text-transform: uppercase; letter-spacing: .12em;
  font-family: 'Chakra Petch', sans-serif; font-size: 13px; font-weight: 600;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.vd-channel__acts a:hover { background: transparent; transform: translateY(-2px); }
.vd-channel__acts a.is-line { border-color: rgba(255,255,255,.3); background: transparent; }
.vd-channel__acts a.is-line:hover { border-color: #fff; background: #fff; color: #000; }

.vd-privacy {
  margin-top: 26px; color: rgba(255,255,255,.3);
  font-weight: 300; font-size: 12.5px; line-height: 1.75; max-width: 74ch;
}
.vd-privacy a { color: rgba(255,255,255,.55); text-transform: none; font-family: inherit; font-size: inherit; display: inline; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 991px) {
  .vd-hero { padding: 160px 0 70px; }
  .vd-grid { grid-template-columns: 1fr; gap: 48px; }
  .vd-programme { padding: 80px 0 20px; }
  .vd-channel { padding: 70px 0 80px; }
  .vd-channel__in { padding: 38px 30px; }
  .vd-stats div { padding-right: 28px; margin-right: 28px; }
}

@media (max-width: 560px) {
  .vd-hero__wash { grid-template-columns: repeat(2, 1fr); }
  .vd-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .vd-stats div { border-right: 0; margin-right: 0; padding-right: 0; }
  .vd-screen__play { width: 62px; height: 62px; }
  .vd-screen__play svg { width: 20px; height: 20px; }
  .vd-note h3 { font-size: 19px; }
  .vd-channel__acts a { width: 100%; }
  .vd-channel__id { gap: 16px; }
}
