/* ============================================================
   MEDIA — films, dispatches & stills from the field
   ============================================================ */

/* ---------- HERO ---------- */
.mp-hero { position: relative; background: var(--navy-deep); color: var(--parchment); overflow: hidden; }
.mp-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 78% 0%, rgba(46,86,140,.5), transparent 60%),
    linear-gradient(165deg, #15355f 0%, #0c2342 60%, #081a33 100%);
}
.mp-hero-grain {
  position: absolute; inset: 0; opacity: .4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
}
.mp-hero-inner { position: relative; z-index: 2; padding: 22px 0 clamp(44px, 6vw, 72px); }
.crumbs {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  display: flex; gap: 12px; align-items: center; margin-bottom: clamp(30px, 5vw, 56px);
  color: color-mix(in srgb, var(--parchment) 65%, transparent);
}
.crumbs a { text-decoration: none; opacity: .8; } .crumbs a:hover { opacity: 1; }
.crumbs b { color: var(--champagne); font-weight: 400; }
.mp-hero h1 { font-size: clamp(48px, 9vw, 120px); font-weight: 200; letter-spacing: -0.04em; line-height: .94; margin: 14px 0 22px; }
.mp-hero .lead { max-width: 56ch; color: color-mix(in srgb, var(--parchment) 88%, transparent); font-weight: 300; }

/* ---------- VIDEO SECTION ---------- */
.mp-films { padding: clamp(56px, 8vw, 104px) 0; background: var(--parchment); }
.mp-sec-head { margin-bottom: clamp(34px, 5vw, 52px); }
.mp-sec-head .section-title { margin-top: 12px; }

.mp-feature { margin: 0 0 24px; }
.mp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mp-card { margin: 0; }
.mp-card.wide { grid-column: 1 / -1; }

.mp-ph {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid rgba(33,48,45,.2);
  background:
    repeating-linear-gradient(45deg, rgba(33,48,45,.035) 0 11px, rgba(33,48,45,.07) 11px 22px),
    var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  transition: border-color .3s, transform .3s;
}
.mp-feature .mp-ph { aspect-ratio: 21 / 9; }
.mp-card:hover .mp-ph { border-color: var(--gold-deep); }
.mp-ph.mp-embed { background: #000; }
.mp-ph.mp-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mp-play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--champagne); color: var(--champagne);
  display: flex; align-items: center; justify-content: center; font-size: 20px; padding-left: 4px;
  transition: background .3s, color .3s;
}
.mp-card:hover .mp-play { background: var(--champagne); color: var(--navy-deep); }
.mp-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--champagne); opacity: .85;
}
.mp-card figcaption { margin-top: 16px; }
.mp-cap-title { font-size: 22px; font-weight: 500; line-height: 1.2; }
.mp-cap-sub {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .75; margin-top: 6px;
}

/* ---------- STILLS ---------- */
.mp-stills { padding: clamp(56px, 8vw, 104px) 0; background: var(--parchment-2); }
.mp-still-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mp-still {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid rgba(33,48,45,.18);
  background:
    repeating-linear-gradient(45deg, rgba(33,48,45,.03) 0 10px, rgba(33,48,45,.06) 10px 20px),
    var(--paper);
  display: flex; align-items: flex-end; padding: 16px;
}
.mp-still:nth-child(3n+1) { aspect-ratio: 4 / 5; }
.mp-still img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-still span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .7;
}
@media (max-width: 760px) { .mp-still-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- NOTE ---------- */
.mp-note {
  text-align: center; font-style: italic; color: var(--ink-soft); opacity: .8;
  margin: 40px auto 0; max-width: 60ch; font-size: 15.5px;
}

@media (max-width: 720px) {
  .mp-grid { grid-template-columns: 1fr; }
  .mp-feature .mp-ph { aspect-ratio: 16 / 9; }
}
