/* A7 Media — minimal cinematic showreel */

.reel {
  position: relative;
  padding: 120px 0 120px;
  background: #060606;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.reel-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,106,0.05) 0%, transparent 55%),
    linear-gradient(180deg, #080706 0%, #040403 100%);
  pointer-events: none;
}
.reel-wrap { position: relative; }

/* ----- Head ----- */
.reel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.reel-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}
.reel-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

/* ----- Stage ----- */
.reel-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 0 0 1px var(--line),
    0 40px 120px -30px rgba(0,0,0,0.8);
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 65%, rgba(0,0,0,0.4) 100%);
}

/* ----- Minimal controls ----- */
.reel-controls {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: flex;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reel-stage:hover .reel-controls,
.reel-stage:focus-within .reel-controls {
  opacity: 1;
  transform: translateY(0);
}
.reel-ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,241,236,0.12);
  color: rgba(244,241,236,0.9);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.reel-ctrl:hover,
.reel-ctrl.on {
  color: var(--gold);
  border-color: rgba(212,175,106,0.45);
  background: rgba(0,0,0,0.7);
}
.reel-ctrl svg { flex-shrink: 0; }

/* Runtime tag top-right */
.reel-runtime {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  padding: 8px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,106,0.3);
}

/* ----- Caption ----- */
.reel-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.reel-cap-l {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.reel-cap-l em {
  color: var(--gold);
  font-style: italic;
}
.reel-cap-r {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ----- Responsive ----- */
@media (max-width: 720px) {
  .reel { padding: 64px 0 64px; }
  .reel-head { margin-bottom: 32px; padding-bottom: 20px; }
  .reel-controls { bottom: 14px; left: 14px; }
  .reel-runtime { top: 14px; right: 14px; font-size: 10px; padding: 6px 10px; }
  .reel-ctrl { padding: 8px 10px; }
  .reel-ctrl span { display: none; }
  .reel-caption { flex-direction: column; align-items: flex-start; gap: 8px; }
}
